diff --git a/hyperledger_fabric/latest/Makefile b/hyperledger_fabric/latest/Makefile index 5b7a7ead..854c8022 100644 --- a/hyperledger_fabric/latest/Makefile +++ b/hyperledger_fabric/latest/Makefile @@ -1,4 +1,6 @@ -# Makefile to bootup the network, and do operations (channel, chaincode) +# Makefile to bootup the network, and do testing with channel, chaincode +# Run `make test` will pass all testing cases, and delete the network +# Run `make ready` will create a network, pass testing cases, and stand there for manual test, e.g., make test_channel_list # support advanced bash grammar @@ -70,11 +72,13 @@ ready: # create/join channel, install/instantiate cc make logs_save @echo "Now the fabric network is ready to play" - @echo "run 'make cli' to enter into the fabric-cli container." - @echo "run 'make stop' when done." + @echo "* run 'make cli' to enter into the fabric-cli container." + @echo "* run 'make stop' when done." -channel_test: test_channel_create test_channel_join +# channel related operations +channel_test: test_channel_create test_channel_join test_channel_list test_channel_getinfo +# chaincode related operations cc_test: test_cc_install test_cc_instantiate test_cc_invoke_query restart: stop start @@ -92,6 +96,14 @@ chaincode_dev: restart chaincode_init test_cc_peer0 stop ################## Channel testing operations ################ +test_channel_list: # List the channel that peer joined + @echo "List the joined channels" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_list.sh" + +test_channel_getinfo: # Get info of a channel + @echo "Get info of the app channel" + @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_getinfo.sh" + test_channel_create: # Init the channel @echo "Create channel on the fabric network" @docker exec -it fabric-cli bash -c "cd /tmp; bash scripts/test_channel_create.sh" @@ -174,7 +186,7 @@ clean: # clean up containers @-docker ps -a | awk '{ print $$1,$$2 }' | grep "hyperledger/fabric" | awk '{ print $$1 }' | xargs -r -I {} docker rm -f {} @-docker ps -a | awk '$$2 ~ /dev-peer/ { print $$1 }' | xargs -r -I {} docker rm -f {} @-docker images | awk '$$1 ~ /dev-peer/ { print $$3 }' | xargs -r -I {} docker rmi -f {} - echo "May need to clean the solo/channel-artifacts and crypto-config path" + echo "May manually clean the solo|kafka/channel-artifacts and crypto-config path" env_clean: # clean up environment @echo "Clean all images and containers" diff --git a/hyperledger_fabric/latest/scripts/func.sh b/hyperledger_fabric/latest/scripts/func.sh index bea1af12..52c17723 100644 --- a/hyperledger_fabric/latest/scripts/func.sh +++ b/hyperledger_fabric/latest/scripts/func.sh @@ -192,6 +192,47 @@ getShasum () { shasum ${1} | awk '{print $1}' } +# List the channel that the peer joined +# E.g., for peer 0 at org 1, will do +# channelList 1 0 +channelList () { + local org=$1 + local peer=$2 + echo "=== List the channels that org${org}/peer${peer} joined === " + + setEnvs $org $peer + + peer channel list >&log.txt + rc=$? + [ $rc -ne 0 ] && cat log.txt + if [ $rc -ne 0 ]; then + echo "=== Failed to list the channels that org${org}/peer${peer} joined === " + else + echo "=== Done to list the channels that org${org}/peer${peer} joined === " + fi +} + +# Get the info of specific channel, including {height, currentBlockHash, previousBlockHash}. +# E.g., for peer 0 at org 1, get info of business channel will do +# channelGetInfo businesschannel 1 0 +channelGetInfo () { + local channel=$1 + local org=$2 + local peer=$3 + echo "=== Get channel info of ${channel} with id of org${org}/peer${peer} === " + + setEnvs $org $peer + + peer channel getinfo -c ${channel} >&log.txt + rc=$? + [ $rc -ne 0 ] && cat log.txt + if [ $rc -ne 0 ]; then + echo "=== Fail to get channel info of ${channel} with id of org${org}/peer${peer} === " + else + echo "=== Done to get channel info of ${channel} with id of org${org}/peer${peer} === " + fi +} + # Fetch all blocks for a channel # Usage: channelFetchAll channel org peer channelFetchAll () { diff --git a/hyperledger_fabric/latest/scripts/test_channel_getinfo.sh b/hyperledger_fabric/latest/scripts/test_channel_getinfo.sh new file mode 100644 index 00000000..d1b92255 --- /dev/null +++ b/hyperledger_fabric/latest/scripts/test_channel_getinfo.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Importing useful functions for cc testing +if [ -f ./func.sh ]; then + source ./func.sh +elif [ -f scripts/func.sh ]; then + source scripts/func.sh +fi + +## Join all the peers to the channel +echo_b "=== Getting info of channel ${APP_CHANNEL}... ===" + +for org in "${ORGS[@]}" +do + for peer in "${PEERS[@]}" + do + channelGetInfo ${APP_CHANNEL} $org $peer + done +done + +echo_g "=== Get info of channel ${APP_CHANNEL} Complete ===" + +echo diff --git a/hyperledger_fabric/latest/scripts/test_channel_list.sh b/hyperledger_fabric/latest/scripts/test_channel_list.sh new file mode 100644 index 00000000..a7197351 --- /dev/null +++ b/hyperledger_fabric/latest/scripts/test_channel_list.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Importing useful functions for cc testing +if [ -f ./func.sh ]; then + source ./func.sh +elif [ -f scripts/func.sh ]; then + source scripts/func.sh +fi + +## Create channel +echo_b "=== Listing joined channels... ===" + +for org in "${ORGS[@]}" +do + for peer in "${PEERS[@]}" + do + channelList $org $peer + done +done + +echo_g "=== Done listign joined channels ===" + +echo diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block index 2ea2c55a..019f26e8 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_0.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block index ce4792a5..fd4c7990 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_1.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block index 5623b95f..3c4d005e 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_2.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block index c6f662a4..007dbd79 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_3.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block index d34bad35..79469c38 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_4.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block index 56472ea2..4872d8e9 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_5.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block index aa575fd4..ce4f533e 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_6.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_7.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_7.block index 874dc987..41f04fa6 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_7.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_7.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block index 874dc987..41f04fa6 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block and b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json index 99c42587..dffb8864 100644 --- a/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json +++ b/hyperledger_fabric/latest/solo/channel-artifacts/businesschannel_config.block.json @@ -696,13 +696,13 @@ }, "signatures": [ { - "signature": "MEUCIQDC28rtC7rFUl7vETlvWrSV11qdaxhKrMdsGPceiH/oHQIgXVm5sy3JHxWkypsE1ZynxZk6KWxi0/MFYW3oY3lXuoE=", + "signature": "MEQCIHtKSzjTkoRqq9OnILD6y9c5DlYLFTQRPunhhjYOGm+3AiBLrF9zOgMWgS0BoaemfZSlVInRv7B04piqPUmLnTctCA==", "signature_header": { "creator": { "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUtESTVTVy9ES2s4aXVkMkZuNVRybTB3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd3TVRNd01EYzBNREkzV2hjTk1qZ3dNVEk0TURjME1ESTMKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkFROW5hOFVzQ3IzcDhBSndwV2lndndkWnJ4STRqU3EKRWg5dk5tREJvbWx2cDI1TmY5UjJQaUtISmptTmx3b3U2MWJSTlp1cmVvMVlnbmpDVk9BaTlhMmpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUs3NkNIRVBLWHdMCm52VzU2eHhBc3hWeGhlaXdkdDIxV2tNQ2NOQ2pHenU4TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUhnZG5CTHcKajQxNkJHbStqRGVkcThtYXRWY3lkM29uRWl0NzdzNnVnQW1YQWlBdHJrTS9LZXQydGozbjYydkUxRG0vbVZNQgo1WTgwUUxlRXZZa29NTU1iY0E9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "4a9g783yS8wLKREAu0T4ULrsLB/0NeK9" + "nonce": "s51qpN9kHU/C5PX73Gk7HdvvyNGt82sP" } } ] @@ -711,7 +711,7 @@ "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2018-05-31T05:21:38.000Z", + "timestamp": "2018-06-12T02:14:20.000Z", "tx_id": "", "type": 2, "version": 0 @@ -721,18 +721,18 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNHVENDQWNDZ0F3SUJBZ0lSQUtESTVTVy9ES2s4aXVkMkZuNVRybTB3Q2dZSUtvWkl6ajBFQXdJd2N6RUwKTUFrR0ExVUVCaE1DVlZNeEV6QVJCZ05WQkFnVENrTmhiR2xtYjNKdWFXRXhGakFVQmdOVkJBY1REVk5oYmlCRwpjbUZ1WTJselkyOHhHVEFYQmdOVkJBb1RFRzl5WnpJdVpYaGhiWEJzWlM1amIyMHhIREFhQmdOVkJBTVRFMk5oCkxtOXlaekl1WlhoaGJYQnNaUzVqYjIwd0hoY05NVGd3TVRNd01EYzBNREkzV2hjTk1qZ3dNVEk0TURjME1ESTMKV2pCYk1Rc3dDUVlEVlFRR0V3SlZVekVUTUJFR0ExVUVDQk1LUTJGc2FXWnZjbTVwWVRFV01CUUdBMVVFQnhNTgpVMkZ1SUVaeVlXNWphWE5qYnpFZk1CMEdBMVVFQXd3V1FXUnRhVzVBYjNKbk1pNWxlR0Z0Y0d4bExtTnZiVEJaCk1CTUdCeXFHU000OUFnRUdDQ3FHU000OUF3RUhBMElBQkFROW5hOFVzQ3IzcDhBSndwV2lndndkWnJ4STRqU3EKRWg5dk5tREJvbWx2cDI1TmY5UjJQaUtISmptTmx3b3U2MWJSTlp1cmVvMVlnbmpDVk9BaTlhMmpUVEJMTUE0RwpBMVVkRHdFQi93UUVBd0lIZ0RBTUJnTlZIUk1CQWY4RUFqQUFNQ3NHQTFVZEl3UWtNQ0tBSUs3NkNIRVBLWHdMCm52VzU2eHhBc3hWeGhlaXdkdDIxV2tNQ2NOQ2pHenU4TUFvR0NDcUdTTTQ5QkFNQ0EwY0FNRVFDSUhnZG5CTHcKajQxNkJHbStqRGVkcThtYXRWY3lkM29uRWl0NzdzNnVnQW1YQWlBdHJrTS9LZXQydGozbjYydkUxRG0vbVZNQgo1WTgwUUxlRXZZa29NTU1iY0E9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "Org2MSP" }, - "nonce": "+pfcTg5yMvktMXYWEcXTmXkaKm6QlNPL" + "nonce": "93Kwqhlt/QQTYQvJu4yYssZrBnFW8e7V" } } }, - "signature": "MEQCIGtTGk1P9nXukC5Pe5SDzbTH3HE3+9SRNQ4NoCRFnD/UAiBCGGtagMyLWBUX5ISmy6uRFW9ZruwMzcg4fc5/xQlwWA==" + "signature": "MEQCIGiRYbEW6RgfiqPZxYLwCcmNKNxQwnAE1Oee4+3WQgs5AiAL41iACs5N8Qi6sHBsN2Ccgbfcg5kSSbuFj5kgJCHRbw==" } }, "header": { "channel_header": { "channel_id": "businesschannel", "epoch": "0", - "timestamp": "2018-05-31T05:21:38.000Z", + "timestamp": "2018-06-12T02:14:20.000Z", "tx_id": "", "type": 1, "version": 0 @@ -742,23 +742,23 @@ "id_bytes": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRV2VBcENjTjFKMzZNQ2NuMStCb1BXREFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTRNREV6TURBM05EQXlOMW9YRFRJNE1ERXlPREEzTkRBeU4xb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUWluaVozRmQwZGNSMFNoWm9xNk1TOGd5THJablhFa2t4UERWM2lrS0dwNjdkU1AwUU8KRms2Z0NVMW9Kc2tqbFp4d1prWTYyNUF6Q1AwNEYzRHA5N1dsbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDJNcm9nYkwrSE9HVFJWTFg2Q3duaGRyZEVMdDRvCnpQOUFlMDN2dUdPNERUQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQUVyTlJSV0dZNUNMWW5GNVhHaWNlN2lLT1IKcXRaYkFTbnd0eGZ4SjFhbGZnSWdLVWg0enpLM0VDZTY2R2hyVlZQTGZwRFF6K1lLNkZ3NURhMEd5dit0MkpJPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==", "mspid": "OrdererMSP" }, - "nonce": "iY/F+dxZOrg9Yxue69Bn666ZgbZHoO/4" + "nonce": "IIk9lqom/gDVr03gcr3T4kleSURuD8nj" } } }, - "signature": "MEUCIQDE4EF/LZM8ARmUAWzsZhxaWkvQJiW6lFNW1kaT/t1fogIgHs3kyK6YAlcQ96rTduT1jhlNUeAwSrcyrEPW8soHpaA=" + "signature": "MEUCIQDruLP4esd6hgo2Ci1U5bXW60RuyGlbR/G9F0YvsxsVcwIgKgzLUuhSfTKo2hb4daPbDdmdshBu/c9Wnkl0pGjKfPQ=" } ] }, "header": { - "data_hash": "9bqGlksLnXAk7jwVIPKtKGiu25A6KkCV/GFqZop8Q90=", + "data_hash": "Om/2/2vkczZgs/n0AUiXRejsCW/Wz+x3+uGkswCUAL0=", "number": "2", - "previous_hash": "CxV08lyZKJUB14qCLoyAUb7/krG1WBKlfBeaKrVWgy8=" + "previous_hash": "cVpR6aKv7O8tkJ3xShRITwwjqenyrGIOzppeMf+MBss=" }, "metadata": { "metadata": [ - "EvgGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRV2VBcENjTjFKMzZNQ2NuMStCb1BXREFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTRNREV6TURBM05EQXlOMW9YRFRJNE1ERXlPREEzTkRBeU4xb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUWluaVozRmQwZGNSMFNoWm9xNk1TOGd5THJablhFa2t4UERWM2lrS0dwNjdkU1AwUU8KRms2Z0NVMW9Kc2tqbFp4d1prWTYyNUF6Q1AwNEYzRHA5N1dsbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDJNcm9nYkwrSE9HVFJWTFg2Q3duaGRyZEVMdDRvCnpQOUFlMDN2dUdPNERUQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQUVyTlJSV0dZNUNMWW5GNVhHaWNlN2lLT1IKcXRaYkFTbnd0eGZ4SjFhbGZnSWdLVWg0enpLM0VDZTY2R2hyVlZQTGZwRFF6K1lLNkZ3NURhMEd5dit0MkpJPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYL7R08m7OZlpnXEW8IV2YvHr8Y3b2tjh1EkYwRAIgagJsHhvpfNAR+m8K6wGctcxN71VgRWco0nUBRmMPJFgCIDxNPeKqgupkNBB3pj+fQb5pqaAlP/F/oRJC4TbsO7VZ", - "CgIIAhL4BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDQ3pDQ0FiS2dBd0lCQWdJUVdlQXBDY04xSjM2TUNjbjErQm9QV0RBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEU0TURFek1EQTNOREF5TjFvWERUSTRNREV5T0RBM05EQXlOMW93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVFpbmlaM0ZkMGRjUjBTaFpvcTZNUzhneUxyWm5YRWtreFBEVjNpa0tHcDY3ZFNQMFFPCkZrNmdDVTFvSnNramxaeHdaa1k2MjVBekNQMDRGM0RwOTdXbG8wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0QyTXJvZ2JMK0hPR1RSVkxYNkN3bmhkcmRFTHQ0bwp6UDlBZTAzdnVHTzREVEFLQmdncWhrak9QUVFEQWdOSEFEQkVBaUFFck5SUldHWTVDTFluRjVYR2ljZTdpS09SCnF0WmJBU253dHhmeEoxYWxmZ0lnS1VoNHp6SzNFQ2U2NkdoclZWUExmcERReitZSzZGdzVEYTBHeXYrdDJKST0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGLKfR3hQ8hIOCpsLgE9ulQXc0MNSGhih7xJGMEQCIEdEQY5EKCng0tSSGcoBJTXLDvW5SsFkK2FcakrzDPYAAiBMMzVdXQ8NYEahtrSywBv8+guCaoFTQTJrAwJXFY0NSw==", + "EvkGCq0GCpAGCgpPcmRlcmVyTVNQEoEGLS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUNDekNDQWJLZ0F3SUJBZ0lRV2VBcENjTjFKMzZNQ2NuMStCb1BXREFLQmdncWhrak9QUVFEQWpCcE1Rc3cKQ1FZRFZRUUdFd0pWVXpFVE1CRUdBMVVFQ0JNS1EyRnNhV1p2Y201cFlURVdNQlFHQTFVRUJ4TU5VMkZ1SUVaeQpZVzVqYVhOamJ6RVVNQklHQTFVRUNoTUxaWGhoYlhCc1pTNWpiMjB4RnpBVkJnTlZCQU1URG1OaExtVjRZVzF3CmJHVXVZMjl0TUI0WERURTRNREV6TURBM05EQXlOMW9YRFRJNE1ERXlPREEzTkRBeU4xb3dXREVMTUFrR0ExVUUKQmhNQ1ZWTXhFekFSQmdOVkJBZ1RDa05oYkdsbWIzSnVhV0V4RmpBVUJnTlZCQWNURFZOaGJpQkdjbUZ1WTJsegpZMjh4SERBYUJnTlZCQU1URTI5eVpHVnlaWEl1WlhoaGJYQnNaUzVqYjIwd1dUQVRCZ2NxaGtqT1BRSUJCZ2dxCmhrak9QUU1CQndOQ0FBUWluaVozRmQwZGNSMFNoWm9xNk1TOGd5THJablhFa2t4UERWM2lrS0dwNjdkU1AwUU8KRms2Z0NVMW9Kc2tqbFp4d1prWTYyNUF6Q1AwNEYzRHA5N1dsbzAwd1N6QU9CZ05WSFE4QkFmOEVCQU1DQjRBdwpEQVlEVlIwVEFRSC9CQUl3QURBckJnTlZIU01FSkRBaWdDRDJNcm9nYkwrSE9HVFJWTFg2Q3duaGRyZEVMdDRvCnpQOUFlMDN2dUdPNERUQUtCZ2dxaGtqT1BRUURBZ05IQURCRUFpQUVyTlJSV0dZNUNMWW5GNVhHaWNlN2lLT1IKcXRaYkFTbnd0eGZ4SjFhbGZnSWdLVWg0enpLM0VDZTY2R2hyVlZQTGZwRFF6K1lLNkZ3NURhMEd5dit0MkpJPQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tChIYLi6Np0Sxc4mVS05v5/5OHcDuAaOCKT0gEkcwRQIhAOQU0ei9xQCcxIvVz+cCw8PJZ+JDD13oIhg+pNXNVc9iAiA0fUpBnlmdUV8px5DrsUy/dy/aA4bH7lWIVDYlX3Pfdg==", + "CgIIAhL5BgqtBgqQBgoKT3JkZXJlck1TUBKBBi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQpNSUlDQ3pDQ0FiS2dBd0lCQWdJUVdlQXBDY04xSjM2TUNjbjErQm9QV0RBS0JnZ3Foa2pPUFFRREFqQnBNUXN3CkNRWURWUVFHRXdKVlV6RVRNQkVHQTFVRUNCTUtRMkZzYVdadmNtNXBZVEVXTUJRR0ExVUVCeE1OVTJGdUlFWnkKWVc1amFYTmpiekVVTUJJR0ExVUVDaE1MWlhoaGJYQnNaUzVqYjIweEZ6QVZCZ05WQkFNVERtTmhMbVY0WVcxdwpiR1V1WTI5dE1CNFhEVEU0TURFek1EQTNOREF5TjFvWERUSTRNREV5T0RBM05EQXlOMW93V0RFTE1Ba0dBMVVFCkJoTUNWVk14RXpBUkJnTlZCQWdUQ2tOaGJHbG1iM0p1YVdFeEZqQVVCZ05WQkFjVERWTmhiaUJHY21GdVkybHoKWTI4eEhEQWFCZ05WQkFNVEUyOXlaR1Z5WlhJdVpYaGhiWEJzWlM1amIyMHdXVEFUQmdjcWhrak9QUUlCQmdncQpoa2pPUFFNQkJ3TkNBQVFpbmlaM0ZkMGRjUjBTaFpvcTZNUzhneUxyWm5YRWtreFBEVjNpa0tHcDY3ZFNQMFFPCkZrNmdDVTFvSnNramxaeHdaa1k2MjVBekNQMDRGM0RwOTdXbG8wMHdTekFPQmdOVkhROEJBZjhFQkFNQ0I0QXcKREFZRFZSMFRBUUgvQkFJd0FEQXJCZ05WSFNNRUpEQWlnQ0QyTXJvZ2JMK0hPR1RSVkxYNkN3bmhkcmRFTHQ0bwp6UDlBZTAzdnVHTzREVEFLQmdncWhrak9QUVFEQWdOSEFEQkVBaUFFck5SUldHWTVDTFluRjVYR2ljZTdpS09SCnF0WmJBU253dHhmeEoxYWxmZ0lnS1VoNHp6SzNFQ2U2NkdoclZWUExmcERReitZSzZGdzVEYTBHeXYrdDJKST0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQoSGAtd40Avwwg02jgfO4dJhRsvffJlDNXaFhJHMEUCIQDt83w7IOlrWSEd48BCFW3WeYFAJSq24dUxvIki4keeZAIgUNzwPh252jTKCsbcIMCbcciDuSQ1dtJTsWbWhJhxf6o=", "", "" ] diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb index ad75ada0..e3ce7586 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb and b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta.pb differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb index 0456bb07..64665aef 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb and b/hyperledger_fabric/latest/solo/channel-artifacts/config_delta_env.pb differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block index 3726fa35..dd77ae33 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block and b/hyperledger_fabric/latest/solo/channel-artifacts/orderer.genesis.updated.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb b/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb index e04bb9f5..410f0d31 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb and b/hyperledger_fabric/latest/solo/channel-artifacts/original_config.pb differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block index 37a4c963..f00cc30e 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block and b/hyperledger_fabric/latest/solo/channel-artifacts/testchainid_1.block differ diff --git a/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb b/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb index 239421a4..62bce1ce 100644 Binary files a/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb and b/hyperledger_fabric/latest/solo/channel-artifacts/updated_config.pb differ diff --git a/hyperledger_fabric/latest/solo/logs/dev_all.log b/hyperledger_fabric/latest/solo/logs/dev_all.log index 13415004..6eea9bf9 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_all.log +++ b/hyperledger_fabric/latest/solo/logs/dev_all.log @@ -1,420 +1,206 @@ -Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.org1.example.com, orderer.example.com, peer1.org2.example.com -peer0.org2.example.com | [001 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP -peer0.org2.example.com | [002 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -peer0.org2.example.com | [003 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW -peer0.org2.example.com | [004 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW -peer0.org2.example.com | [005 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore -peer0.org2.example.com | [006 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input -peer0.org2.example.com | [007 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string -peer0.org2.example.com | [008 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -peer0.org2.example.com | [009 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 -peer0.org2.example.com | [00a 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 -peer0.org2.example.com | [00b 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 -peer0.org2.example.com | [00c 05-31 05:21:31.68 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[Default:SW SW:map[FileKeyStore:map[KeyStore:] Hash:SHA2 Security:256]]] -peer0.org2.example.com | [00d 05-31 05:21:31.69 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done -peer0.org2.example.com | [00e 05-31 05:21:31.69 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] -peer0.org2.example.com | [00f 05-31 05:21:31.69 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts -peer0.org2.example.com | [010 05-31 05:21:31.69 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer0.org2.example.com-cert.pem -peer0.org2.example.com | [011 05-31 05:21:31.69 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts -peer0.org2.example.com | [012 05-31 05:21:31.70 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org2.example.com-cert.pem -peer0.org2.example.com | [013 05-31 05:21:31.70 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts -peer0.org2.example.com | [014 05-31 05:21:31.71 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org2.example.com-cert.pem -peer0.org2.example.com | [015 05-31 05:21:31.71 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts -peer0.org2.example.com | [016 05-31 05:21:31.71 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] -peer0.org2.example.com | [017 05-31 05:21:31.71 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts -peer0.org2.example.com | [018 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org2.example.com-cert.pem -peer0.org2.example.com | [019 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts -peer0.org2.example.com | [01a 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] -peer0.org2.example.com | [01b 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls -peer0.org2.example.com | [01c 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] -peer0.org2.example.com | [01d 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] -peer0.org2.example.com | [01e 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org2.example.com | [01f 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [020 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP -peer0.org2.example.com | [021 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer0.org2.example.com | [022 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -peer0.org2.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org2.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer0.org2.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -peer0.org2.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer0.org2.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -peer0.org2.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -peer0.org2.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -peer0.org2.example.com | CSJWn+U1 -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [023 05-31 05:21:31.72 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -peer0.org2.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -peer0.org2.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -peer0.org2.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -peer0.org2.example.com | 5Y80QLeEvYkoMMMbcA== -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [024 05-31 05:21:31.74 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -peer0.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj -peer0.org2.example.com | SPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD -peer0.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue -peer0.org2.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l -peer0.org2.example.com | XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S -peer0.org2.example.com | Qh80aTnAegSTSqmA1w== -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [025 05-31 05:21:31.74 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [9ba4b3ec88c21e2e2bd2fcc3db2e64e34bd0c3510dacc15b030e106d43870d35] at [/etc/hyperledger/fabric/msp/keystore/9ba4b3ec88c21e2e2bd2fcc3db2e64e34bd0c3510dacc15b030e106d43870d35_sk]... -peer0.org2.example.com | [026 05-31 05:21:31.74 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer0.org2.example.com | MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw -peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -peer0.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -peer0.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj -peer0.org2.example.com | SPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD -peer0.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue -peer0.org2.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l -peer0.org2.example.com | XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S -peer0.org2.example.com | Qh80aTnAegSTSqmA1w== -peer0.org2.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [027 05-31 05:21:31.74 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:27 +0000 UTC -peer0.org2.example.com | [028 05-31 05:21:31.74 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer0.org2.example.com | [029 05-31 05:21:31.75 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 | [02a 05-31 05:21:31.75 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 | [02b 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer0.org2.example.com | [02c 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' -peer0.org2.example.com | [02d 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer0.org2.example.com | [02e 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer0.org2.example.com | [02f 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer0.org2.example.com | [030 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies' logger enabled for log level 'WARNING' -peer0.org2.example.com | [031 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' -peer0.org2.example.com | [032 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'grpc' logger enabled for log level 'ERROR' -peer0.org2.example.com | [033 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer0.org2.example.com | [034 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/sa' logger enabled for log level 'WARNING' -peer0.org2.example.com | [035 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer0.org2.example.com | Version: 1.2.0 -peer0.org2.example.com | Go version: go1.10.2 -peer0.org2.example.com | OS/Arch: linux/amd64 -peer0.org2.example.com | Experimental features: true -peer0.org2.example.com | Chaincode: -peer0.org2.example.com | Base Image Version: 0.4.8 -peer0.org2.example.com | Base Docker Namespace: hyperledger -peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric -peer0.org2.example.com | Docker Namespace: hyperledger -peer0.org2.example.com | -peer0.org2.example.com | [036 05-31 05:21:31.75 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 | [037 05-31 05:21:31.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer0.org2.example.com | [038 05-31 05:21:31.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/] -peer0.org2.example.com | [039 05-31 05:21:31.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 -peer0.org2.example.com | [03a 05-31 05:21:31.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 -peer0.org2.example.com | [03b 05-31 05:21:31.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org2.example.com | [03c 05-31 05:21:31.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org2.example.com | [03d 05-31 05:21:31.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org2.example.com | [03e 05-31 05:21:31.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer0.org2.example.com | [03f 05-31 05:21:31.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer0.org2.example.com | [040 05-31 05:21:31.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer0.org2.example.com | [041 05-31 05:21:31.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org2.example.com | [042 05-31 05:21:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org2.example.com | [043 05-31 05:21:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org2.example.com | [044 05-31 05:21:31.78 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org2.example.com | [045 05-31 05:21:31.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 | [046 05-31 05:21:31.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.org2.example.com | [047 05-31 05:21:31.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 | [048 05-31 05:21:31.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 | [049 05-31 05:21:31.79 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/bookkeeper/] -peer0.org2.example.com | [04a 05-31 05:21:31.79 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/bookkeeper/] does not exist -peer0.org2.example.com | [04b 05-31 05:21:31.79 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/bookkeeper/] exists -peer0.org2.example.com | [04c 05-31 05:21:31.80 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory -peer0.org2.example.com | [04d 05-31 05:21:31.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] -peer0.org2.example.com | [04e 05-31 05:21:31.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist -peer0.org2.example.com | [04f 05-31 05:21:31.80 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists -peer0.org2.example.com | [050 05-31 05:21:31.80 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 | [051 05-31 05:21:31.80 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 | [052 05-31 05:21:31.80 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 | [053 05-31 05:21:31.80 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 | [054 05-31 05:21:31.80 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.5:7051 -peer0.org2.example.com | [055 05-31 05:21:31.80 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org2.example.com:7051 -peer0.org2.example.com | [056 05-31 05:21:31.80 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.5:7051 -peer0.org2.example.com | [057 05-31 05:21:31.80 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org2.example.com:7051 -peer0.org2.example.com | [058 05-31 05:21:31.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org2.example.com | [059 05-31 05:21:31.81 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 | [05a 05-31 05:21:31.81 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 | [05b 05-31 05:21:31.81 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 | [05c 05-31 05:21:31.81 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 | [05d 05-31 05:21:31.81 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -peer0.org2.example.com | [05e 05-31 05:21:31.81 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org2.example.com | [05f 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com -peer0.org2.example.com | [060 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 -peer0.org2.example.com | [061 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 -peer0.org2.example.com | [062 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org2.example.com | [063 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 -peer0.org2.example.com | [064 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org2.example.com | [065 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 -peer0.org2.example.com | [066 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer0.org2.example.com | [067 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org2.example.com | [068 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -peer0.org2.example.com | [069 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer0.org2.example.com | [06a 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -peer0.org2.example.com | [06b 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers -peer0.org2.example.com | [06c 05-31 05:21:31.82 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc -peer0.org2.example.com | [06d 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -peer0.org2.example.com | [06e 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement -peer0.org2.example.com | [06f 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer0.org2.example.com | [070 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to -peer0.org2.example.com | [071 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators -peer0.org2.example.com | [072 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc -peer0.org2.example.com | [073 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -peer0.org2.example.com | [074 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation -peer0.org2.example.com | [075 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer0.org2.example.com | [076 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to -peer0.org2.example.com | [077 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] -peer0.org2.example.com | [078 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] -peer0.org2.example.com | [079 05-31 05:21:31.83 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]] decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]] validators:map[vscc:map[name:DefaultValidation library:]]]] -peer0.org2.example.com | [07a 05-31 05:21:31.84 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 [] [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] peer0.org2.example.com:7051 } -peer0.org2.example.com | [07b 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [07c 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=cae83bcf-a55a-477b-b99d-948a37093d75,syscc=true,proposal=0x0,canname=cscc:1.2.0) -peer0.org2.example.com | [07d 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched -peer0.org2.example.com | [07e 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [07f 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer0.org2.example.com | [080 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 -peer0.org2.example.com | [081 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org2.example.com | [082 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=cscc:1.2.0 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [083 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock -peer0.org2.example.com | [084 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock -peer0.org2.example.com | [085 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started -peer0.org2.example.com | [086 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 -peer0.org2.example.com | [087 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) -peer0.org2.example.com | [089 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 -peer0.org2.example.com | [08b 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [08a 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org2.example.com | [08c 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 -peer0.org2.example.com | [08d 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [08e 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 -peer0.org2.example.com | [088 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org2.example.com | [08f 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [090 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [091 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org2.example.com | [092 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 -peer0.org2.example.com | [093 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED -peer0.org2.example.com | [094 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" -peer0.org2.example.com | [095 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" -peer0.org2.example.com | [096 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer0.org2.example.com | [097 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [098 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer0.org2.example.com | [099 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [09a 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" -peer0.org2.example.com | [09b 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer0.org2.example.com | [09c 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer0.org2.example.com | [09d 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [09e 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cae83bcf]Received message INIT from peer -peer0.org2.example.com | [09f 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cae83bcf] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0a0 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [cae83bcf] Received INIT, initializing chaincode -peer0.org2.example.com | [0a1 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [0a2 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cae83bcf] Init get response status: 200 -peer0.org2.example.com | [0a3 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cae83bcf] Init succeeded. Sending COMPLETED -peer0.org2.example.com | [0a4 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [cae83bcf] send state message COMPLETED -peer0.org2.example.com | [0a5 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [cae83bcf] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [0a6 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [cae83bcf] notifying Txid:cae83bcf-a55a-477b-b99d-948a37093d75, channelID: -peer0.org2.example.com | [0a7 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [0a8 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [0a9 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=b9172eed-121e-4871-bd33-f24d802df23f,syscc=true,proposal=0x0,canname=lscc:1.2.0) -peer0.org2.example.com | [0aa 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched -peer0.org2.example.com | [0ab 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer0.org2.example.com | [0ac 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 -peer0.org2.example.com | [0ad 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org2.example.com | [0ae 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=lscc:1.2.0 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [0af 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock -peer0.org2.example.com | [0b0 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock -peer0.org2.example.com | [0b1 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 -peer0.org2.example.com | [0b2 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) -peer0.org2.example.com | [0b3 05-31 05:21:31.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 -peer0.org2.example.com | [0b4 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [0b5 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 -peer0.org2.example.com | [0b6 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [0b7 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 -peer0.org2.example.com | [0b8 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [0b9 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [0ba 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org2.example.com | [0bb 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 -peer0.org2.example.com | [0bc 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED -peer0.org2.example.com | [0bd 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" -peer0.org2.example.com | [0bf 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" -peer0.org2.example.com | [0be 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer0.org2.example.com | [0c0 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0c1 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer0.org2.example.com | [0c2 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" -peer0.org2.example.com | [0c3 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0c4 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer0.org2.example.com | [0c5 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org2.example.com | [0c6 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [0c7 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9172eed]Received message INIT from peer -peer0.org2.example.com | [0c8 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b9172eed] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0c9 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b9172eed] Received INIT, initializing chaincode -peer0.org2.example.com | [0ca 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9172eed] Init get response status: 200 -peer0.org2.example.com | [0cb 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b9172eed] Init succeeded. Sending COMPLETED -peer0.org2.example.com | [0cc 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b9172eed] send state message COMPLETED -peer0.org2.example.com | [0cd 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b9172eed] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [0ce 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b9172eed] notifying Txid:b9172eed-121e-4871-bd33-f24d802df23f, channelID: -peer0.org2.example.com | [0cf 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [0d0 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [0d1 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=f2c74279-3bc6-4fce-93d8-be46a2aafe40,syscc=true,proposal=0x0,canname=qscc:1.2.0) -peer0.org2.example.com | [0d2 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched -peer0.org2.example.com | [0d3 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer0.org2.example.com | [0d4 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 -peer0.org2.example.com | [0d5 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org2.example.com | [0d6 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=qscc:1.2.0 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [0d7 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock -peer0.org2.example.com | [0d8 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock -peer0.org2.example.com | [0d9 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 -peer0.org2.example.com | [0da 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) -peer0.org2.example.com | [0db 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 -peer0.org2.example.com | [0dd 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org2.example.com | [0dc 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 -peer0.org2.example.com | [0de 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] -peer0.org2.example.com | [0df 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 -peer0.org2.example.com | [0e0 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org2.example.com | [0e1 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer0.org2.example.com | [0e2 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org2.example.com | [0e3 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 -peer0.org2.example.com | [0e4 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED -peer0.org2.example.com | [0e5 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" -peer0.org2.example.com | [0e6 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" -peer0.org2.example.com | [0e7 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer0.org2.example.com | [0e8 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org2.example.com | [0ea 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer0.org2.example.com | [0eb 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer0.org2.example.com | [0e9 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" -peer0.org2.example.com | [0ec 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer0.org2.example.com | [0ed 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer0.org2.example.com | [0ee 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [0ef 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2c74279]Received message INIT from peer -peer0.org2.example.com | [0f0 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f2c74279] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [0f1 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f2c74279] Received INIT, initializing chaincode -peer0.org2.example.com | [0f2 05-31 05:21:31.85 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [0f3 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2c74279] Init get response status: 200 -peer0.org2.example.com | [0f4 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f2c74279] Init succeeded. Sending COMPLETED -peer0.org2.example.com | [0f5 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [f2c74279] send state message COMPLETED -peer0.org2.example.com | [0f6 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f2c74279] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [0f7 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f2c74279] notifying Txid:f2c74279-3bc6-4fce-93d8-be46a2aafe40, channelID: -peer0.org2.example.com | [0f8 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [0f9 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org2.example.com | [0fa 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes -peer0.org2.example.com | [0fb 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] -peer0.org2.example.com | [0fc 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer0.org2.example.com | [0fd 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated -peer0.org2.example.com | [0fe 05-31 05:21:31.86 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 | [0ff 05-31 05:21:31.86 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org2.example.com" ], network ID=[dev], address=[peer0.org2.example.com:7051] -peer0.org2.example.com | [100 05-31 05:21:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:37764 -peer0.org2.example.com | [101 05-31 05:21:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:37764 -peer0.org2.example.com | [102 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:37764 -peer0.org2.example.com | [103 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:37764 -peer0.org2.example.com | [104 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org2.example.com | [105 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:37764 disconnected -peer0.org2.example.com | [106 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [107 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:37768 -peer0.org2.example.com | [108 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:37768 -peer0.org2.example.com | [109 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:37768 -peer0.org2.example.com | [10a 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:37768 -peer0.org2.example.com | [10b 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:13113314447645898176 tag:EMPTY mem_req: > > , Envelope: 1086 bytes, Signature: 0 bytes -peer0.org2.example.com | [10c 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10d 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:13113314447645898176 tag:EMPTY mem_req: > > , Envelope: 1086 bytes, Signature: 0 bytes -peer0.org2.example.com | [10e 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [10f 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]}, deadMembers={[]} -peer0.org2.example.com | [110 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [111 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer0.org2.example.com | [112 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [113 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [114 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [115 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 13113314447645898176, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2159 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [117 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 13113314447645898176, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2159 bytes, Signature: 0 bytes -peer0.org2.example.com | [118 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [116 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer0.org2.example.com | [119 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [11a 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [11b 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [11c 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11d 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1075 bytes, Signature: 0 bytes -peer0.org2.example.com | [11e 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11f 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1075 bytes, Signature: 0 bytes -peer0.org2.example.com | [120 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [121 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [122 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [123 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [124 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [125 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [126 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [127 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [001 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP -peer0.org1.example.com | [002 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -peer0.org1.example.com | [003 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW -peer0.org1.example.com | [004 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW -peer0.org1.example.com | [005 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -peer0.org1.example.com | [006 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 -peer0.org1.example.com | [007 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 -peer0.org1.example.com | [008 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 -peer0.org1.example.com | [009 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore -peer0.org1.example.com | [00a 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input -peer0.org1.example.com | [00b 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string -peer0.org1.example.com | [00c 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[Default:SW SW:map[Security:256 FileKeyStore:map[KeyStore:] Hash:SHA2]]] -peer0.org1.example.com | [00d 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done -peer0.org1.example.com | [00e 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] -peer0.org1.example.com | [00f 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts -peer0.org1.example.com | [010 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer0.org1.example.com-cert.pem -peer0.org1.example.com | [011 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts -peer0.org1.example.com | [012 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org1.example.com-cert.pem -peer0.org1.example.com | [013 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts -peer0.org1.example.com | [014 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org1.example.com-cert.pem -peer0.org1.example.com | [015 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts -peer0.org1.example.com | [016 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] -peer0.org1.example.com | [017 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts -peer0.org1.example.com | [018 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org1.example.com-cert.pem -peer0.org1.example.com | [019 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts -peer0.org1.example.com | [01a 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] -peer0.org1.example.com | [01b 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls -peer0.org1.example.com | [01c 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] -peer0.org1.example.com | [01d 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] -peer0.org1.example.com | [01e 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer0.org1.example.com | [01f 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance -peer0.org1.example.com | [020 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP -peer0.org1.example.com | [021 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer0.org1.example.com | [022 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +Attaching to fabric-cli, peer1.org1.example.com, peer0.org1.example.com, peer0.org2.example.com, peer1.org2.example.com, orderer.example.com +peer1.org1.example.com | [001 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP +peer1.org1.example.com | [002 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +peer1.org1.example.com | [003 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW +peer1.org1.example.com | [004 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW +peer1.org1.example.com | [005 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 +peer1.org1.example.com | [006 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 +peer1.org1.example.com | [007 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore +peer1.org1.example.com | [008 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input +peer1.org1.example.com | [009 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string +peer1.org1.example.com | [00a 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +peer1.org1.example.com | [00b 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 +peer1.org1.example.com | [00c 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[SW:map[Security:256 FileKeyStore:map[KeyStore:] Hash:SHA2] Default:SW]] +peer1.org1.example.com | [00d 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done +peer1.org1.example.com | [00e 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] +peer1.org1.example.com | [00f 06-12 02:14:13.05 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts +peer1.org1.example.com | [010 06-12 02:14:13.06 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer1.org1.example.com-cert.pem +peer1.org1.example.com | [011 06-12 02:14:13.06 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts +peer1.org1.example.com | [012 06-12 02:14:13.07 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org1.example.com-cert.pem +peer1.org1.example.com | [013 06-12 02:14:13.07 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts +peer1.org1.example.com | [014 06-12 02:14:13.08 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org1.example.com-cert.pem +peer1.org1.example.com | [015 06-12 02:14:13.08 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts +peer1.org1.example.com | [016 06-12 02:14:13.08 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] +peer1.org1.example.com | [017 06-12 02:14:13.08 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts +peer1.org1.example.com | [018 06-12 02:14:13.08 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org1.example.com-cert.pem +peer1.org1.example.com | [019 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts +peer1.org1.example.com | [01a 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] +peer1.org1.example.com | [01b 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls +peer1.org1.example.com | [01c 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] +peer1.org1.example.com | [01d 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] +peer1.org1.example.com | [01e 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [01f 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [020 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP +peer1.org1.example.com | [021 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org1.example.com | [022 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer1.org1.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org1.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org1.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +peer1.org1.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +peer1.org1.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +peer1.org1.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +peer1.org1.example.com | QKuzs3j8kg== +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [023 06-12 02:14:13.09 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +peer1.org1.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer1.org1.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +peer1.org1.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +peer1.org1.example.com | 3BDFnYuSFYhOCexVkA== +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [024 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2 +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc +peer1.org1.example.com | 2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r +peer1.org1.example.com | 94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL +peer1.org1.example.com | pKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x +peer1.org1.example.com | Fi/K4VUkcrt2/JHLe2M= +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [025 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [367349760309e74703af79bafae0c377c191b3da406495c918a86bfd7680c801] at [/etc/hyperledger/fabric/msp/keystore/367349760309e74703af79bafae0c377c191b3da406495c918a86bfd7680c801_sk]... +peer1.org1.example.com | [026 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2 +peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ +peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc +peer1.org1.example.com | 2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G +peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r +peer1.org1.example.com | 94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL +peer1.org1.example.com | pKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x +peer1.org1.example.com | Fi/K4VUkcrt2/JHLe2M= +peer1.org1.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [027 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:26 +0000 UTC +peer1.org1.example.com | [028 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org1.example.com | [029 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp' logger enabled for log level 'WARNING' +peer1.org1.example.com | [02a 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'msp/identity' logger enabled for log level 'WARNING' +peer1.org1.example.com | [02b 06-12 02:14:13.12 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 | [02c 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' +peer1.org1.example.com | [02d 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +peer1.org1.example.com | [02e 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' +peer1.org1.example.com | [02f 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' +peer1.org1.example.com | [030 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' +peer1.org1.example.com | [031 06-12 02:14:13.12 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 | [032 06-12 02:14:13.12 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 | [033 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +peer1.org1.example.com | [034 06-12 02:14:13.12 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 | [035 06-12 02:14:13.12 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer1.org1.example.com | Version: 1.2.0 +peer1.org1.example.com | Go version: go1.10.2 +peer1.org1.example.com | OS/Arch: linux/amd64 +peer1.org1.example.com | Experimental features: true +peer1.org1.example.com | Chaincode: +peer1.org1.example.com | Base Image Version: 0.4.8 +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 | [036 06-12 02:14:13.12 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 | [037 06-12 02:14:13.12 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 | [038 06-12 02:14:13.12 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 | [039 06-12 02:14:13.12 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 | [03a 06-12 02:14:13.12 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 | [03b 06-12 02:14:13.14 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org1.example.com | [03c 06-12 02:14:13.14 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org1.example.com | [03d 06-12 02:14:13.14 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer1.org1.example.com | [03e 06-12 02:14:13.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +peer1.org1.example.com | [03f 06-12 02:14:13.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +peer1.org1.example.com | [040 06-12 02:14:13.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer1.org1.example.com | [041 06-12 02:14:13.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org1.example.com | [042 06-12 02:14:13.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer1.org1.example.com | [043 06-12 02:14:13.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer1.org1.example.com | [044 06-12 02:14:13.15 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer1.org1.example.com | [045 06-12 02:14:13.16 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 | [046 06-12 02:14:13.16 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 | [047 06-12 02:14:13.16 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 | [048 06-12 02:14:13.16 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 | [049 06-12 02:14:13.17 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/bookkeeper/] +peer1.org1.example.com | [04a 06-12 02:14:13.17 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/bookkeeper/] does not exist +peer1.org1.example.com | [04b 06-12 02:14:13.17 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/bookkeeper/] exists +peer1.org1.example.com | [04c 06-12 02:14:13.18 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory +peer1.org1.example.com | [04d 06-12 02:14:13.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] +peer1.org1.example.com | [04e 06-12 02:14:13.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist +peer1.org1.example.com | [04f 06-12 02:14:13.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists +peer1.org1.example.com | [050 06-12 02:14:13.19 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 | [051 06-12 02:14:13.19 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 | [052 06-12 02:14:13.19 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 | [053 06-12 02:14:13.19 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 | [054 06-12 02:14:13.19 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 +peer1.org1.example.com | [055 06-12 02:14:13.19 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org1.example.com:7051 +peer1.org1.example.com | [056 06-12 02:14:13.19 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 +peer1.org1.example.com | [057 06-12 02:14:13.19 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org1.example.com:7051 +peer1.org1.example.com | [058 06-12 02:14:13.19 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org1.example.com | [059 06-12 02:14:13.20 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 | [05a 06-12 02:14:13.20 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +peer1.org1.example.com | [05b 06-12 02:14:13.20 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 | [05c 06-12 02:14:13.20 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 | [05d 06-12 02:14:13.20 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +peer1.org1.example.com | [05e 06-12 02:14:13.20 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org1.example.com | [05f 06-12 02:14:13.20 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com +peer1.org1.example.com | [060 06-12 02:14:13.20 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org1.example.com:7052 +peer1.org1.example.com | [061 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 +peer1.org1.example.com | [062 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org1.example.com | [063 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 +peer1.org1.example.com | [064 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org1.example.com | [065 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 +peer1.org1.example.com | [066 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer1.org1.example.com | [067 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org1.example.com | [068 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +peer1.org1.example.com | [069 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] +peer0.org1.example.com | [001 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP +peer0.org1.example.com | [002 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +peer0.org1.example.com | [003 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW +peer0.org1.example.com | [004 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW +peer0.org1.example.com | [005 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore +peer0.org1.example.com | [006 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input +peer0.org1.example.com | [007 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string +peer0.org1.example.com | [008 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +peer0.org1.example.com | [009 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 +peer0.org1.example.com | [00a 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 +peer0.org1.example.com | [00b 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 +peer0.org1.example.com | [00c 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[Default:SW SW:map[FileKeyStore:map[KeyStore:] Hash:SHA2 Security:256]]] +peer0.org1.example.com | [00d 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done +peer0.org1.example.com | [00e 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] +peer0.org1.example.com | [00f 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts +peer0.org1.example.com | [010 06-12 02:14:11.90 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer0.org1.example.com-cert.pem +peer0.org1.example.com | [011 06-12 02:14:11.90 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts +peer0.org1.example.com | [012 06-12 02:14:11.91 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org1.example.com-cert.pem +peer0.org1.example.com | [013 06-12 02:14:11.91 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts +peer0.org1.example.com | [014 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org1.example.com-cert.pem +peer0.org1.example.com | [015 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts +peer0.org1.example.com | [016 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] +peer0.org1.example.com | [017 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts +peer0.org1.example.com | [018 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org1.example.com-cert.pem +peer0.org1.example.com | [019 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts +peer0.org1.example.com | [01a 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] +peer0.org1.example.com | [01b 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls +peer0.org1.example.com | [01c 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] +peer0.org1.example.com | [01d 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] +peer0.org1.example.com | [01e 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [01f 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [020 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP +peer0.org1.example.com | [021 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org1.example.com | [022 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- peer0.org1.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -425,11 +211,127 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o peer0.org1.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh peer0.org1.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG peer0.org1.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +peer1.org1.example.com | [06a 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] +peer1.org1.example.com | [06b 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +peer1.org1.example.com | [06c 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +peer1.org1.example.com | [06d 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers +peer1.org1.example.com | [06e 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc +peer1.org1.example.com | [06f 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +peer1.org1.example.com | [070 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement +peer1.org1.example.com | [071 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer1.org1.example.com | [072 06-12 02:14:13.21 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to +peer1.org1.example.com | [073 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators +peer1.org1.example.com | [074 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc +peer1.org1.example.com | [075 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +peer1.org1.example.com | [076 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation +peer1.org1.example.com | [077 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer1.org1.example.com | [078 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to +peer1.org1.example.com | [079 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]] validators:map[vscc:map[name:DefaultValidation library:]] authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]]]] +peer1.org1.example.com | [07a 06-12 02:14:13.22 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 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] peer1.org1.example.com:7051 } +peer1.org1.example.com | [07b 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=b4148bf3-bc80-457c-ac31-56e7a8d2f43e,syscc=true,proposal=0x0,canname=cscc:1.2.0) +peer1.org1.example.com | [07c 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [07d 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched +peer1.org1.example.com | [07e 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [07f 06-12 02:14:13.22 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [080 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 +peer1.org1.example.com | [081 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org1.example.com | [082 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=cscc:1.2.0 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [083 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock +peer1.org1.example.com | [084 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock +peer1.org1.example.com | [085 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 +peer1.org1.example.com | [086 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) +peer1.org1.example.com | [088 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 +peer1.org1.example.com | [089 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [08b 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 +peer1.org1.example.com | [08c 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org1.example.com | [08d 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [08e 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 +peer1.org1.example.com | [08f 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [087 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started +peer1.org1.example.com | [08a 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer1.org1.example.com | [090 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +peer1.org1.example.com | [091 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [092 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org1.example.com | [093 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 +peer1.org1.example.com | [094 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED +peer1.org1.example.com | [095 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" +peer1.org1.example.com | [096 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" +peer1.org1.example.com | [097 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer1.org1.example.com | [098 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [099 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer1.org1.example.com | [09a 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [09b 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" +peer1.org1.example.com | [09c 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org1.example.com | [09d 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org1.example.com | [09e 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [09f 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4148bf3]Received message INIT from peer +peer1.org1.example.com | [0a0 06-12 02:14:13.23 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b4148bf3] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0a1 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b4148bf3] Received INIT, initializing chaincode +peer1.org1.example.com | [0a2 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [0a3 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4148bf3] Init get response status: 200 +peer1.org1.example.com | [0a4 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4148bf3] Init succeeded. Sending COMPLETED +peer1.org1.example.com | [0a5 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b4148bf3] send state message COMPLETED +peer1.org1.example.com | [0a6 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b4148bf3] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [0a7 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b4148bf3] notifying Txid:b4148bf3-bc80-457c-ac31-56e7a8d2f43e, channelID: +peer1.org1.example.com | [0a8 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [0a9 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [0aa 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=87554282-ef3b-4bd3-ac54-1d25d64d2881,syscc=true,proposal=0x0,canname=lscc:1.2.0) +peer1.org1.example.com | [0ab 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched +peer1.org1.example.com | [0ac 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [0ad 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 +peer1.org1.example.com | [0ae 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org1.example.com | [0af 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=lscc:1.2.0 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [0b0 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock +peer1.org1.example.com | [0b1 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock +peer1.org1.example.com | [0b2 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 +peer1.org1.example.com | [0b3 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) +peer1.org1.example.com | [0b4 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 +peer1.org1.example.com | [0b5 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false peer0.org1.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph peer0.org1.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp peer0.org1.example.com | QKuzs3j8kg== peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [023 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [0b6 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 +peer1.org1.example.com | [0b7 06-12 02:14:13.24 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [0b8 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 +peer1.org1.example.com | [0b9 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0ba 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [0bb 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org1.example.com | [0bc 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 +peer1.org1.example.com | [0bd 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED +peer1.org1.example.com | [0be 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" +peer1.org1.example.com | [0bf 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" +peer1.org1.example.com | [0c0 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer1.org1.example.com | [0c1 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [0c2 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer1.org1.example.com | [0c3 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0c4 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" +peer1.org1.example.com | [0c5 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org1.example.com | [0c6 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org1.example.com | [0c7 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [0c8 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87554282]Received message INIT from peer +peer1.org1.example.com | [0c9 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [87554282] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0ca 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [87554282] Received INIT, initializing chaincode +peer1.org1.example.com | [0cb 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87554282] Init get response status: 200 +peer1.org1.example.com | [0cd 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [87554282] Init succeeded. Sending COMPLETED +peer1.org1.example.com | [0cc 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:7051 +peer0.org1.example.com | [023 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -443,7 +345,7 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o peer0.org1.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH peer0.org1.example.com | 3BDFnYuSFYhOCexVkA== peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [024 05-31 05:21:31.43 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [024 06-12 02:14:11.94 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -457,30 +359,13 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o peer0.org1.example.com | za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX peer0.org1.example.com | fv5YS9/ysd8jy4a+pg== peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [025 05-31 05:21:31.43 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [dc5f598d6cce6d7f5fe7f95121eb5d56c7192b4947743f3bcfcf4a8bc236db18] at [/etc/hyperledger/fabric/msp/keystore/dc5f598d6cce6d7f5fe7f95121eb5d56c7192b4947743f3bcfcf4a8bc236db18_sk]... -peer0.org1.example.com | [026 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [025 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [dc5f598d6cce6d7f5fe7f95121eb5d56c7192b4947743f3bcfcf4a8bc236db18] at [/etc/hyperledger/fabric/msp/keystore/dc5f598d6cce6d7f5fe7f95121eb5d56c7192b4947743f3bcfcf4a8bc236db18_sk]... +peer0.org1.example.com | [026 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- peer0.org1.example.com | MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw peer0.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy peer0.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu peer0.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa peer0.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer0.org2.example.com | [128 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [129 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [12a 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\207C\304\002 !u\205\021*\364b\231\361\375\"%`\331C\242\352]<|'\277\264\244v\241\314k\277r\253=" secret_envelope: > -peer0.org2.example.com | [12b 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer0.org2.example.com | [12c 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12d 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49012 -peer0.org2.example.com | [12e 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4223656e0 -peer0.org2.example.com | [12f 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [130 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [131 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org2.example.com | [132 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [133 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [134 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422311c70, header 0xc422365b00 -peer0.org2.example.com | [135 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org2.example.com | [136 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][ed574398] processing txid: ed5743981cc7c29c281719a06f71453e874901400e9f5cb5656f3e2e765e0bbc -peer0.org2.example.com | [137 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][ed574398] Entry chaincode: name:"cscc" -peer0.org2.example.com | [138 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][ed5743981cc7c29c281719a06f71453e874901400e9f5cb5656f3e2e765e0bbc] Entry chaincode: name:"cscc" version: 1.2.0 peer0.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw peer0.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ peer0.org1.example.com | J62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD @@ -489,41 +374,21 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o peer0.org1.example.com | za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX peer0.org1.example.com | fv5YS9/ysd8jy4a+pg== peer0.org1.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [027 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:26 +0000 UTC -peer0.org1.example.com | [028 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer0.org1.example.com | [029 05-31 05:21:31.44 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 | [02a 05-31 05:21:31.44 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 | [02b 05-31 05:21:31.44 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 | [02c 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer0.org1.example.com | [02d 05-31 05:21:31.44 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 | [02e 05-31 05:21:31.44 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 | [02f 05-31 05:21:31.44 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 | [030 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' -peer0.org2.example.com | [139 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=ed5743981cc7c29c281719a06f71453e874901400e9f5cb5656f3e2e765e0bbc,syscc=true,proposal=0xc422311c70,canname=cscc:1.2.0) -peer0.org2.example.com | [13a 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer0.org2.example.com | [13b 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [13c 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ed574398]Received message TRANSACTION from peer -peer0.org2.example.com | [13d 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ed574398] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [13e 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [ed574398] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org2.example.com | [13f 05-31 05:21:35.28 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org2.example.com | [140 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org2.example.com | [141 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org2.example.com | [142 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer0.org2.example.com | [143 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer0.org2.example.com | [144 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer0.org2.example.com | [145 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org2.example.com | [146 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer0.org2.example.com | [147 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer0.org2.example.com | [148 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer0.org2.example.com | [149 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org2.example.com | [14a 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org2.example.com | [14b 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4223f9620)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org2.example.com | [14c 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org1.example.com | [031 05-31 05:21:31.44 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 | [032 05-31 05:21:31.44 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 | [033 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer0.org1.example.com | [034 05-31 05:21:31.44 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 | [035 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org1.example.com | [027 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:26 +0000 UTC +peer0.org1.example.com | [028 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [029 06-12 02:14:11.95 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 | [02a 06-12 02:14:11.95 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 | [02b 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +peer0.org1.example.com | [02c 06-12 02:14:11.95 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 | [02d 06-12 02:14:11.95 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 | [02e 06-12 02:14:11.95 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 | [02f 06-12 02:14:11.95 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 | [030 06-12 02:14:11.95 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 | [031 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' +peer0.org1.example.com | [032 06-12 02:14:11.95 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 | [033 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' +peer0.org1.example.com | [034 06-12 02:14:11.95 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 | [035 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: peer0.org1.example.com | Version: 1.2.0 peer0.org1.example.com | Go version: go1.10.2 peer0.org1.example.com | OS/Arch: linux/amd64 @@ -534,86 +399,157 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o 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 | [036 05-31 05:21:31.44 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 | [037 05-31 05:21:31.44 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 | [038 05-31 05:21:31.44 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 | [039 05-31 05:21:31.44 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 | [03a 05-31 05:21:31.44 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 | [03b 05-31 05:21:31.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org1.example.com | [03c 05-31 05:21:31.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer0.org1.example.com | [03d 05-31 05:21:31.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer0.org1.example.com | [03e 05-31 05:21:31.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer0.org1.example.com | [03f 05-31 05:21:31.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer0.org1.example.com | [040 05-31 05:21:31.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer0.org1.example.com | [041 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer0.org1.example.com | [042 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer0.org1.example.com | [043 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer0.org1.example.com | [044 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer0.org1.example.com | [045 05-31 05:21:31.50 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 | [046 05-31 05:21:31.50 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 | [047 05-31 05:21:31.50 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 | [048 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer0.org1.example.com | [049 05-31 05:21:31.52 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/bookkeeper/] -peer0.org1.example.com | [04a 05-31 05:21:31.52 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/bookkeeper/] does not exist -peer0.org1.example.com | [04b 05-31 05:21:31.52 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/bookkeeper/] exists -peer0.org1.example.com | [04c 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory -peer0.org1.example.com | [04d 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] -peer0.org1.example.com | [04e 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist -peer0.org1.example.com | [04f 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists -peer0.org1.example.com | [050 05-31 05:21:31.56 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 | [051 05-31 05:21:31.56 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 | [052 05-31 05:21:31.56 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 | [053 05-31 05:21:31.56 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 | [054 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 -peer0.org1.example.com | [055 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 -peer0.org1.example.com | [056 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 -peer0.org1.example.com | [057 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 -peer0.org1.example.com | [058 05-31 05:21:31.57 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer0.org1.example.com | [059 05-31 05:21:31.58 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 | [05a 05-31 05:21:31.58 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 | [05b 05-31 05:21:31.58 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 | [05c 05-31 05:21:31.58 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 | [05d 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -peer0.org1.example.com | [05e 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer0.org1.example.com | [05f 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -peer0.org1.example.com | [060 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -peer0.org1.example.com | [061 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 -peer0.org1.example.com | [062 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer0.org1.example.com | [063 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 -peer0.org1.example.com | [064 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer0.org1.example.com | [065 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 -peer0.org1.example.com | [066 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer0.org1.example.com | [067 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer0.org1.example.com | [068 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -peer0.org1.example.com | [069 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer0.org1.example.com | [06a 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -peer0.org1.example.com | [06b 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers -peer0.org1.example.com | [06c 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc -peer0.org1.example.com | [06d 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -peer0.org1.example.com | [06e 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement -peer0.org1.example.com | [06f 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer0.org1.example.com | [070 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to -peer0.org1.example.com | [071 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators -peer0.org1.example.com | [072 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc -peer0.org1.example.com | [073 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -peer0.org1.example.com | [074 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation -peer0.org1.example.com | [075 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer0.org1.example.com | [076 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to -peer0.org1.example.com | [077 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] -peer0.org1.example.com | [078 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] -peer0.org1.example.com | [079 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]] validators:map[vscc:map[name:DefaultValidation library:]] authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]]]] -peer0.org1.example.com | [07a 05-31 05:21:31.61 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 [] [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] peer0.org1.example.com:7051 } -peer0.org1.example.com | [07b 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [07c 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=bac9e52b-fdda-4850-b356-7a81267fa193,syscc=true,proposal=0x0,canname=cscc:1.2.0) -peer0.org1.example.com | [07d 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched -peer0.org1.example.com | [07e 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [07f 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 -peer0.org1.example.com | [081 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [082 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -peer0.org1.example.com | [083 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -peer0.org1.example.com | [084 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer0.org1.example.com | [080 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [085 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +peer0.org1.example.com | [036 06-12 02:14:11.95 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 | [037 06-12 02:14:11.95 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 | [038 06-12 02:14:11.95 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 | [039 06-12 02:14:11.96 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 | [03a 06-12 02:14:11.96 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 | [03b 06-12 02:14:11.97 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org1.example.com | [03c 06-12 02:14:11.97 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer0.org1.example.com | [03d 06-12 02:14:11.97 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org1.example.com | [03e 06-12 02:14:11.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +peer0.org1.example.com | [03f 06-12 02:14:11.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +peer0.org1.example.com | [040 06-12 02:14:11.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer0.org1.example.com | [041 06-12 02:14:11.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org1.example.com | [042 06-12 02:14:11.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org1.example.com | [043 06-12 02:14:11.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer0.org1.example.com | [044 06-12 02:14:11.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org1.example.com | [045 06-12 02:14:12.00 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 | [046 06-12 02:14:12.00 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 | [047 06-12 02:14:12.00 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 | [048 06-12 02:14:12.00 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 | [0cf 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer1.org1.example.com | [0d0 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer1.org1.example.com | [0d1 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:14642057695148649786 tag:EMPTY mem_req:}!5\367|\246\324|\372]$\231\325\362" > > > , Envelope: 1090 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [0d2 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:14642057695148649786 tag:EMPTY mem_req:}!5\367|\246\324|\372]$\231\325\362" > > > , Envelope: 1090 bytes, Signature: 0 bytes +peer1.org1.example.com | [0d3 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [0ce 06-12 02:14:13.25 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [87554282] send state message COMPLETED +peer1.org1.example.com | [0d4 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [87554282] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [0d5 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [87554282] notifying Txid:87554282-ef3b-4bd3-ac54-1d25d64d2881, channelID: +peer1.org1.example.com | [0d6 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [0d7 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [0d8 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=94a77377-2492-4eb0-8c67-ba6215acd7b3,syscc=true,proposal=0x0,canname=qscc:1.2.0) +peer1.org1.example.com | [0d9 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched +peer1.org1.example.com | [0da 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [0dc 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:7051 +peer1.org1.example.com | [0db 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 +peer1.org1.example.com | [0dd 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org1.example.com | [0de 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=qscc:1.2.0 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [0df 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock +peer1.org1.example.com | [0e0 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock +peer1.org1.example.com | [0e1 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 +peer1.org1.example.com | [0e2 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) +peer1.org1.example.com | [0e3 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 +peer1.org1.example.com | [0e4 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [0e5 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 +peer1.org1.example.com | [0e6 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] +peer1.org1.example.com | [0e7 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 +peer1.org1.example.com | [0e8 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org1.example.com | [0e9 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [0ea 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org1.example.com | [0eb 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 +peer1.org1.example.com | [0ec 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED +peer1.org1.example.com | [0ed 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" +peer1.org1.example.com | [0ee 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" +peer1.org1.example.com | [0ef 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer1.org1.example.com | [0f0 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org1.example.com | [0f1 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer1.org1.example.com | [0f2 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer1.org1.example.com | [0f3 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" +peer1.org1.example.com | [0f4 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org1.example.com | [0f5 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer1.org1.example.com | [0f6 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [0f7 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94a77377]Received message INIT from peer +peer1.org1.example.com | [0f8 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [94a77377] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [0f9 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [94a77377] Received INIT, initializing chaincode +peer1.org1.example.com | [0fa 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [0fb 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94a77377] Init get response status: 200 +peer1.org1.example.com | [0fc 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [94a77377] Init succeeded. Sending COMPLETED +peer0.org1.example.com | [049 06-12 02:14:12.01 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/bookkeeper/] +peer0.org1.example.com | [04a 06-12 02:14:12.01 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/bookkeeper/] does not exist +peer0.org1.example.com | [04b 06-12 02:14:12.01 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/bookkeeper/] exists +peer0.org1.example.com | [04c 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory +peer0.org1.example.com | [04d 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] +peer0.org1.example.com | [04e 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist +peer0.org1.example.com | [04f 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists +peer0.org1.example.com | [050 06-12 02:14:12.02 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 | [051 06-12 02:14:12.02 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 | [052 06-12 02:14:12.02 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 | [053 06-12 02:14:12.02 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 | [054 06-12 02:14:12.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 +peer0.org1.example.com | [055 06-12 02:14:12.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 +peer0.org1.example.com | [056 06-12 02:14:12.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 +peer0.org1.example.com | [057 06-12 02:14:12.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 +peer0.org1.example.com | [058 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org1.example.com | [059 06-12 02:14:12.06 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 | [05a 06-12 02:14:12.06 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 | [05b 06-12 02:14:12.06 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 | [05c 06-12 02:14:12.06 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 | [05d 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +peer0.org1.example.com | [05e 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org1.example.com | [05f 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +peer0.org1.example.com | [060 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +peer0.org1.example.com | [061 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 +peer0.org1.example.com | [062 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org1.example.com | [063 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 +peer0.org1.example.com | [064 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org1.example.com | [065 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 +peer0.org1.example.com | [066 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer0.org1.example.com | [067 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org1.example.com | [068 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +peer0.org1.example.com | [069 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] +peer1.org1.example.com | [0fd 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [94a77377] send state message COMPLETED +peer1.org1.example.com | [0fe 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [94a77377] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [0ff 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [94a77377] notifying Txid:94a77377-2492-4eb0-8c67-ba6215acd7b3, channelID: +peer1.org1.example.com | [100 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [101 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org1.example.com | [102 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes +peer1.org1.example.com | [103 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] +peer1.org1.example.com | [104 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer1.org1.example.com | [105 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer1.org1.example.com | [106 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer1.org1.example.com | [107 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [108 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 14642057695148649786, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2163 bytes, Signature: 0 bytes +peer1.org1.example.com | [109 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 14642057695148649786, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2163 bytes, Signature: 0 bytes +peer1.org1.example.com | [10a 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10b 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 14642057695148649786, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2163 bytes, Signature: 0 bytes +peer1.org1.example.com | [10c 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [10d 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [10e 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [10f 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [06a 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] +peer0.org1.example.com | [06b 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +peer0.org1.example.com | [06c 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +peer0.org1.example.com | [06d 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers +peer0.org1.example.com | [06e 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc +peer0.org1.example.com | [06f 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +peer0.org1.example.com | [070 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement +peer0.org1.example.com | [071 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org1.example.com | [072 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to +peer0.org1.example.com | [073 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators +peer0.org1.example.com | [074 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc +peer0.org1.example.com | [075 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org1.example.com | [076 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to +peer0.org1.example.com | [077 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +peer0.org1.example.com | [078 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation +peer0.org1.example.com | [079 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]] decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]] validators:map[vscc:map[library: name:DefaultValidation]]]] +peer0.org1.example.com | [07a 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] peer0.org1.example.com:7051 } +peer0.org1.example.com | [07b 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [07c 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=9b22d204-6345-4312-8bb3-3d4f787fef61,syscc=true,proposal=0x0,canname=cscc:1.2.0) +peer0.org1.example.com | [07d 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched +peer0.org1.example.com | [07e 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [07f 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 +peer0.org1.example.com | [081 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [080 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [082 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: 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} @@ -622,47 +558,72 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [086 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock -peer0.org1.example.com | [087 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock -peer0.org1.example.com | [088 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 -peer0.org1.example.com | [089 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) -peer0.org1.example.com | [08b 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 -peer0.org1.example.com | [08c 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [08d 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 -peer0.org1.example.com | [08e 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [08a 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 -peer0.org1.example.com | [08f 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [090 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [091 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org1.example.com | [092 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 -peer0.org1.example.com | [093 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED -peer0.org1.example.com | [094 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" -peer0.org1.example.com | [095 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" -peer0.org1.example.com | [096 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer0.org1.example.com | [097 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [098 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer0.org1.example.com | [099 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [09a 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" -peer0.org1.example.com | [09b 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer0.org1.example.com | [09c 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer0.org1.example.com | [09d 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [09e 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac9e52b]Received message INIT from peer -peer0.org1.example.com | [09f 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac9e52b] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [0a0 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bac9e52b] Received INIT, initializing chaincode -peer0.org1.example.com | [0a1 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [0a2 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac9e52b] Init get response status: 200 -peer0.org1.example.com | [0a3 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac9e52b] Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0a4 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [bac9e52b] send state message COMPLETED -peer0.org1.example.com | [0a5 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bac9e52b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0a6 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [bac9e52b] notifying Txid:bac9e52b-fdda-4850-b356-7a81267fa193, channelID: -peer0.org1.example.com | [0a7 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [0a8 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [0a9 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=b3005759-3be8-4081-bf72-5919d6f15118,syscc=true,proposal=0x0,canname=lscc:1.2.0) -peer0.org1.example.com | [0aa 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched -peer0.org1.example.com | [0ab 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [0ac 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 -peer0.org1.example.com | [0ad 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [0ae 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +peer0.org1.example.com | [083 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock +peer0.org1.example.com | [084 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock +peer1.org1.example.com | [110 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]}, deadMembers={[]} +peer1.org1.example.com | [111 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [112 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer1.org1.example.com | [113 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [114 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [115 06-12 02:14:13.30 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer1.org1.example.com | [116 06-12 02:14:13.30 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated +peer1.org1.example.com | [117 06-12 02:14:13.30 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 | [118 06-12 02:14:13.30 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 | [119 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [11a 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [11b 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [11c 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [11d 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11e 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\004\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\335C\333\343\226}\031y\264\247\254Fu2da\2107\30766\206D\324\221\367+\307\220\020\214v\002 4m\263\0334y\316d\233\021\210u\264\t\014\273\243g\010\025\n\001\323\014\205\365=\215\217T\303\251" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +peer0.org1.example.com | [085 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 +peer0.org1.example.com | [086 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) +peer0.org1.example.com | [087 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +peer0.org1.example.com | [088 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org1.example.com | [089 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 +peer0.org1.example.com | [08a 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [08b 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org1.example.com | [08c 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 +peer0.org1.example.com | [08d 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [08e 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 +peer0.org1.example.com | [08f 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [090 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [091 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer0.org1.example.com | [092 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 +peer0.org1.example.com | [093 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED +peer0.org1.example.com | [094 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" +peer0.org1.example.com | [095 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" +peer0.org1.example.com | [096 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer0.org1.example.com | [097 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [098 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer0.org1.example.com | [099 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [09a 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" +peer0.org1.example.com | [09b 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer0.org1.example.com | [09c 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer0.org1.example.com | [09d 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [09e 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b22d204]Received message INIT from peer +peer0.org1.example.com | [09f 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b22d204] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [0a0 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [9b22d204] Received INIT, initializing chaincode +peer0.org1.example.com | [0a1 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org1.example.com | [0a2 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b22d204] Init get response status: 200 +peer0.org1.example.com | [0a3 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b22d204] Init succeeded. Sending COMPLETED +peer0.org1.example.com | [0a4 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [9b22d204] send state message COMPLETED +peer0.org1.example.com | [0a5 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [9b22d204] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0a6 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [9b22d204] notifying Txid:9b22d204-6345-4312-8bb3-3d4f787fef61, channelID: +peer0.org1.example.com | [0a7 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [0a8 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org1.example.com | [0a9 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=b4516f62-6406-4371-bcc0-18ebca862eb2,syscc=true,proposal=0x0,canname=lscc:1.2.0) +peer0.org1.example.com | [0aa 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched +peer0.org1.example.com | [0ab 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [0ac 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 +peer1.org1.example.com | [11f 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\004\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\335C\333\343\226}\031y\264\247\254Fu2da\2107\30766\206D\324\221\367+\307\220\020\214v\002 4m\263\0334y\316d\233\021\210u\264\t\014\273\243g\010\025\n\001\323\014\205\365=\215\217T\303\251" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +peer1.org1.example.com | [120 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [121 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\004\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\335C\333\343\226}\031y\264\247\254Fu2da\2107\30766\206D\324\221\367+\307\220\020\214v\002 4m\263\0334y\316d\233\021\210u\264\t\014\273\243g\010\025\n\001\323\014\205\365=\215\217T\303\251" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +peer1.org1.example.com | [122 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [123 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [124 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer1.org1.example.com | [125 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [0ad 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [0ae 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: 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} @@ -671,46 +632,46 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [0af 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock -peer0.org1.example.com | [0b0 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock -peer0.org1.example.com | [0b1 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 -peer0.org1.example.com | [0b2 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) -peer0.org1.example.com | [0b3 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 -peer0.org1.example.com | [0b4 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 -peer0.org1.example.com | [0b5 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [0b6 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [0b7 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 -peer0.org1.example.com | [0b8 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [0b9 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [0ba 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org1.example.com | [0bb 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 -peer0.org1.example.com | [0bc 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED -peer0.org1.example.com | [0bd 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" -peer0.org1.example.com | [0be 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" -peer0.org1.example.com | [0bf 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer0.org1.example.com | [0c0 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0c1 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer0.org1.example.com | [0c2 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [0c3 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" -peer0.org1.example.com | [0c4 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer0.org1.example.com | [0c5 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [0c6 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [0c7 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3005759]Received message INIT from peer -peer0.org1.example.com | [0c8 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3005759] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [0c9 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b3005759] Received INIT, initializing chaincode -peer0.org1.example.com | [0ca 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3005759] Init get response status: 200 -peer0.org1.example.com | [0cb 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3005759] Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0cc 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b3005759] send state message COMPLETED -peer0.org1.example.com | [0cd 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b3005759] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0ce 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b3005759] notifying Txid:b3005759-3be8-4081-bf72-5919d6f15118, channelID: -peer0.org1.example.com | [0cf 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [0d0 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [0d1 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=4dd8aaca-8756-46b5-9f80-0e8dfccee94d,syscc=true,proposal=0x0,canname=qscc:1.2.0) -peer0.org1.example.com | [0d2 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched -peer0.org1.example.com | [0d3 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [0d4 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 -peer0.org1.example.com | [0d5 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [0d6 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +peer0.org1.example.com | [0af 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock +peer0.org1.example.com | [0b0 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock +peer0.org1.example.com | [0b1 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 +peer0.org1.example.com | [0b2 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) +peer0.org1.example.com | [0b4 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 +peer0.org1.example.com | [0b3 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 +peer0.org1.example.com | [0b6 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [0b5 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [0b7 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 +peer0.org1.example.com | [0b8 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [0b9 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [0ba 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer0.org1.example.com | [0bb 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 +peer0.org1.example.com | [0bc 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED +peer0.org1.example.com | [0bd 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" +peer0.org1.example.com | [0be 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer0.org1.example.com | [0bf 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" +peer0.org1.example.com | [0c0 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [0c1 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer0.org1.example.com | [0c3 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [0c2 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" +peer0.org1.example.com | [0c4 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer0.org1.example.com | [0c5 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [0c6 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [0c7 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4516f62]Received message INIT from peer +peer0.org1.example.com | [0c8 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b4516f62] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [0c9 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b4516f62] Received INIT, initializing chaincode +peer0.org1.example.com | [0ca 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4516f62] Init get response status: 200 +peer0.org1.example.com | [0cb 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4516f62] Init succeeded. Sending COMPLETED +peer0.org1.example.com | [0cc 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b4516f62] send state message COMPLETED +peer0.org1.example.com | [0cd 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b4516f62] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0ce 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b4516f62] notifying Txid:b4516f62-6406-4371-bcc0-18ebca862eb2, channelID: +peer0.org1.example.com | [0cf 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [0d0 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org1.example.com | [0d1 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=8532ea0b-309c-4884-b19e-a88e563c5a3e,syscc=true,proposal=0x0,canname=qscc:1.2.0) +peer0.org1.example.com | [0d2 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched +peer0.org1.example.com | [0d3 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [0d4 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 +peer0.org1.example.com | [0d5 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [0d6 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: 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} @@ -719,6427 +680,8620 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [0d7 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock -peer0.org1.example.com | [0d8 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock -peer0.org1.example.com | [0d9 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 -peer1.org1.example.com | [001 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP -peer1.org1.example.com | [002 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW -peer1.org1.example.com | [003 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -peer1.org1.example.com | [004 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 -peer1.org1.example.com | [005 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 -peer1.org1.example.com | [006 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 -peer1.org1.example.com | [007 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore -peer1.org1.example.com | [008 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input -peer1.org1.example.com | [009 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string -peer1.org1.example.com | [00a 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -peer1.org1.example.com | [00b 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW -peer1.org1.example.com | [00c 05-31 05:21:31.30 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[SW:map[Hash:SHA2 Security:256 FileKeyStore:map[KeyStore:]] Default:SW]] -peer1.org1.example.com | [00d 05-31 05:21:31.31 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done -peer1.org1.example.com | [00e 05-31 05:21:31.31 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] -peer1.org1.example.com | [00f 05-31 05:21:31.31 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts -peer1.org1.example.com | [010 05-31 05:21:31.31 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer1.org1.example.com-cert.pem -peer1.org1.example.com | [011 05-31 05:21:31.32 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts -peer1.org1.example.com | [012 05-31 05:21:31.32 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org1.example.com-cert.pem -peer1.org1.example.com | [013 05-31 05:21:31.33 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts -peer1.org1.example.com | [014 05-31 05:21:31.33 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org1.example.com-cert.pem -peer1.org1.example.com | [015 05-31 05:21:31.34 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts -peer1.org1.example.com | [016 05-31 05:21:31.34 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] -peer1.org1.example.com | [017 05-31 05:21:31.34 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts -peer1.org1.example.com | [018 05-31 05:21:31.34 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org1.example.com-cert.pem -peer1.org1.example.com | [019 05-31 05:21:31.34 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts -peer1.org1.example.com | [01a 05-31 05:21:31.34 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] -peer1.org1.example.com | [01b 05-31 05:21:31.34 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls -peer1.org1.example.com | [01c 05-31 05:21:31.34 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] -peer1.org1.example.com | [01d 05-31 05:21:31.35 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] -peer1.org1.example.com | [01e 05-31 05:21:31.35 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [01f 05-31 05:21:31.35 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [020 05-31 05:21:31.35 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP -peer1.org1.example.com | [021 05-31 05:21:31.35 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -peer1.org1.example.com | [022 05-31 05:21:31.35 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -peer1.org1.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org1.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org1.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -peer1.org1.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org1.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -peer1.org1.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -peer1.org1.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -peer1.org1.example.com | QKuzs3j8kg== -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [023 05-31 05:21:31.35 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -peer1.org1.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org1.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -peer1.org1.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org1.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -peer1.org1.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -peer1.org1.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -peer1.org1.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -peer1.org1.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -peer1.org1.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -peer1.org1.example.com | 3BDFnYuSFYhOCexVkA== -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [024 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc -peer1.org1.example.com | 2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r -peer1.org1.example.com | 94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL -peer1.org1.example.com | pKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x -peer1.org1.example.com | Fi/K4VUkcrt2/JHLe2M= -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [025 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [367349760309e74703af79bafae0c377c191b3da406495c918a86bfd7680c801] at [/etc/hyperledger/fabric/msp/keystore/367349760309e74703af79bafae0c377c191b3da406495c918a86bfd7680c801_sk]... -peer1.org1.example.com | [026 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | MIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL -peer1.org1.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org1.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2 -peer1.org1.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org1.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -peer1.org1.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc -peer1.org1.example.com | 2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G -peer0.org1.example.com | [0da 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) -peer0.org1.example.com | [0db 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 -peer0.org1.example.com | [0dc 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [0dd 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 -peer0.org1.example.com | [0de 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -peer0.org1.example.com | [0df 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 -peer0.org1.example.com | [0e0 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer0.org1.example.com | [0e1 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [0e2 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org1.example.com | [0e3 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 -peer0.org1.example.com | [0e4 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED -peer0.org1.example.com | [0e5 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" -peer0.org1.example.com | [0e6 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" -peer0.org1.example.com | [0e7 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer0.org1.example.com | [0e8 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer0.org1.example.com | [0e9 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer0.org1.example.com | [0ea 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer0.org1.example.com | [0eb 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" -peer0.org1.example.com | [0ec 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer0.org1.example.com | [0ed 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer0.org1.example.com | [0ee 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [0ef 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4dd8aaca]Received message INIT from peer -peer0.org1.example.com | [0f0 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4dd8aaca] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [0f1 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [4dd8aaca] Received INIT, initializing chaincode -peer0.org1.example.com | [0f2 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org1.example.com | [0f3 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4dd8aaca] Init get response status: 200 -peer0.org1.example.com | [0f4 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4dd8aaca] Init succeeded. Sending COMPLETED -peer0.org1.example.com | [0f5 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [4dd8aaca] send state message COMPLETED -peer0.org1.example.com | [0f6 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [4dd8aaca] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [0f7 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [4dd8aaca] notifying Txid:4dd8aaca-8756-46b5-9f80-0e8dfccee94d, channelID: -peer0.org1.example.com | [0f8 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [0f9 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org1.example.com | [0fa 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes -peer1.org1.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r -peer1.org1.example.com | 94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL -peer1.org1.example.com | pKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x -peer1.org1.example.com | Fi/K4VUkcrt2/JHLe2M= -peer1.org1.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [027 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:26 +0000 UTC -peer1.org1.example.com | [028 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [029 05-31 05:21:31.37 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 | [02a 05-31 05:21:31.38 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 | [02b 05-31 05:21:31.38 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 | [02c 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/state' logger enabled for log level 'WARNING' -peer1.org1.example.com | [02d 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer1.org1.example.com | [02e 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'ledgermgmt' logger enabled for log level 'INFO' -peer1.org1.example.com | [02f 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'cauthdsl' logger enabled for log level 'WARNING' -peer1.org1.example.com | [030 05-31 05:21:31.38 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 | [031 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' -peer1.org1.example.com | [032 05-31 05:21:31.38 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 | [033 05-31 05:21:31.38 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 | [034 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'peer/gossip/mcs' logger enabled for log level 'WARNING' -peer1.org1.example.com | [035 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org1.example.com | Version: 1.2.0 -peer1.org1.example.com | Go version: go1.10.2 -peer1.org1.example.com | OS/Arch: linux/amd64 -peer1.org1.example.com | Experimental features: true -peer1.org1.example.com | Chaincode: -peer1.org1.example.com | Base Image Version: 0.4.8 -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 | [036 05-31 05:21:31.38 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 | [037 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org1.example.com | [038 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org1.example.com | [039 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org1.example.com | [03a 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer1.org1.example.com | [03b 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer1.org1.example.com | [03c 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org1.example.com | [03d 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org1.example.com | [03e 05-31 05:21:31.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer1.org1.example.com | [03f 05-31 05:21:31.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer0.org1.example.com | [0fb 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] -peer0.org1.example.com | [0fc 05-31 05:21:31.66 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer0.org1.example.com | [0fd 05-31 05:21:31.66 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated -peer0.org1.example.com | [0fe 05-31 05:21:31.66 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] -peer0.org1.example.com | [0ff 05-31 05:21:31.66 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.org1.example.com | [100 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:33174 -peer0.org1.example.com | [101 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33174 -peer0.org1.example.com | [102 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33174 -peer0.org1.example.com | [103 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33174 -peer0.org1.example.com | [104 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:33176 -peer0.org1.example.com | [105 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33176 -peer0.org1.example.com | [106 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33176 -peer0.org1.example.com | [107 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33176 -peer0.org1.example.com | [108 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33174 disconnected -peer0.org1.example.com | [109 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org1.example.com | [10a 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33176 disconnected -peer0.org1.example.com | [10b 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing -peer0.org1.example.com | [10c 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer1.org1.example.com | [040 05-31 05:21:31.41 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer1.org1.example.com | [041 05-31 05:21:31.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org1.example.com | [042 05-31 05:21:31.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org1.example.com | [043 05-31 05:21:31.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org1.example.com | [044 05-31 05:21:31.42 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer1.org1.example.com | [045 05-31 05:21:31.42 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 | [046 05-31 05:21:31.42 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 | [047 05-31 05:21:31.42 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 | [048 05-31 05:21:31.43 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -peer1.org1.example.com | [049 05-31 05:21:31.43 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/bookkeeper/] -peer1.org1.example.com | [04a 05-31 05:21:31.43 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/bookkeeper/] does not exist -peer1.org1.example.com | [04b 05-31 05:21:31.43 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/bookkeeper/] exists -peer1.org1.example.com | [04c 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory -peer1.org1.example.com | [04d 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] -peer1.org1.example.com | [04e 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist -peer1.org1.example.com | [04f 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists -peer1.org1.example.com | [050 05-31 05:21:31.45 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 | [051 05-31 05:21:31.45 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 | [052 05-31 05:21:31.45 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 | [053 05-31 05:21:31.45 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 | [054 05-31 05:21:31.45 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 -peer1.org1.example.com | [055 05-31 05:21:31.45 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org1.example.com:7051 -peer1.org1.example.com | [056 05-31 05:21:31.45 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 -peer1.org1.example.com | [057 05-31 05:21:31.45 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org1.example.com:7051 -peer1.org1.example.com | [058 05-31 05:21:31.47 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org1.example.com | [059 05-31 05:21:31.47 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 | [05a 05-31 05:21:31.47 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -peer1.org1.example.com | [05b 05-31 05:21:31.48 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 | [05c 05-31 05:21:31.48 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 | [10d 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55302 -peer0.org1.example.com | [10e 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42231e030 -peer0.org1.example.com | [10f 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [110 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [111 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [112 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [113 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [114 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4222b3810, header 0xc42231e450 -peer0.org1.example.com | [115 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer0.org1.example.com | [116 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][c9de6a52] processing txid: c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a -peer0.org1.example.com | [117 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][c9de6a52] Entry chaincode: name:"cscc" -peer0.org1.example.com | [118 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a] Entry chaincode: name:"cscc" version: 1.2.0 -peer0.org1.example.com | [119 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a,syscc=true,proposal=0xc4222b3810,canname=cscc:1.2.0) -peer0.org1.example.com | [11a 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer0.org1.example.com | [11b 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [11c 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c9de6a52]Received message TRANSACTION from peer -peer0.org1.example.com | [11d 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c9de6a52] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [11e 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c9de6a52] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [11f 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer0.org1.example.com | [120 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer0.org1.example.com | [121 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer0.org1.example.com | [122 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer0.org1.example.com | [123 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer0.org1.example.com | [124 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer0.org1.example.com | [125 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer0.org1.example.com | [126 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer0.org1.example.com | [127 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -orderer.example.com | 2018-05-31 05:21:29.946 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 -orderer.example.com | [002 05-31 05:21:29.94 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -orderer.example.com | [003 05-31 05:21:29.94 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] -orderer.example.com | [004 05-31 05:21:29.94 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -orderer.example.com | [005 05-31 05:21:29.95 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -orderer.example.com | [006 05-31 05:21:29.95 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -orderer.example.com | [007 05-31 05:21:29.95 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -orderer.example.com | [008 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -orderer.example.com | [009 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -orderer.example.com | [00a 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -orderer.example.com | [00b 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -orderer.example.com | [00c 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -orderer.example.com | [00d 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -orderer.example.com | [00e 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -orderer.example.com | [00f 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -orderer.example.com | [010 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -orderer.example.com | [011 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -orderer.example.com | [012 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -orderer.example.com | [013 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [014 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [015 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP -orderer.example.com | [016 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [017 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [018 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -peer1.org1.example.com | [05d 05-31 05:21:31.48 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -peer1.org1.example.com | [05e 05-31 05:21:31.48 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org1.example.com | [05f 05-31 05:21:31.48 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org1.example.com -peer1.org1.example.com | [060 05-31 05:21:31.48 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org1.example.com:7052 -peer1.org1.example.com | [061 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 -peer1.org1.example.com | [062 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org1.example.com | [063 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 -peer1.org1.example.com | [064 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org1.example.com | [065 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 -peer1.org1.example.com | [066 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer1.org1.example.com | [067 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org1.example.com | [068 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -peer1.org1.example.com | [069 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers -peer1.org1.example.com | [06a 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc -peer1.org1.example.com | [06b 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -peer1.org1.example.com | [06c 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement -peer1.org1.example.com | [06d 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer1.org1.example.com | [06e 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to -peer1.org1.example.com | [06f 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators -peer1.org1.example.com | [070 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc -peer1.org1.example.com | [071 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -peer1.org1.example.com | [072 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation -peer1.org1.example.com | [073 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer1.org1.example.com | [074 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to -peer1.org1.example.com | [075 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] -peer1.org1.example.com | [076 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] -peer1.org1.example.com | [077 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer1.org1.example.com | [078 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -peer1.org1.example.com | [079 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[validators:map[vscc:map[name:DefaultValidation library:]] authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]] decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]]]] -peer1.org1.example.com | [07a 05-31 05:21:31.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [07b 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [07c 05-31 05:21:31.51 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 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] peer1.org1.example.com:7051 } -peer1.org1.example.com | [07d 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org1.example.com:7051 started -peer1.org1.example.com | [07e 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org1.example.com | [07f 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer1.org1.example.com | [080 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer1.org1.example.com | [081 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=b644acaa-80c7-45fc-902b-64bd3ab5c7b9,syscc=true,proposal=0x0,canname=cscc:1.2.0) -peer1.org1.example.com | [082 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched -peer1.org1.example.com | [083 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer1.org1.example.com | [084 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 -peer1.org1.example.com | [085 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [086 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=cscc:1.2.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [087 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock -peer1.org1.example.com | [088 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock -peer1.org1.example.com | [089 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 -peer1.org1.example.com | [08a 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) -peer1.org1.example.com | [08b 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 -peer1.org1.example.com | [08c 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [08d 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 -peer1.org1.example.com | [08e 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [08f 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 -peer1.org1.example.com | [090 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [091 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [092 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer1.org1.example.com | [093 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 -peer1.org1.example.com | [094 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED -peer1.org1.example.com | [095 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" -peer1.org1.example.com | [096 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" -peer1.org1.example.com | [097 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer1.org1.example.com | [098 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [099 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer1.org1.example.com | [09a 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [09b 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" -peer1.org1.example.com | [09c 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer1.org1.example.com | [09d 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer1.org1.example.com | [09e 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [09f 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b644acaa]Received message INIT from peer -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [019 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO -orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o -orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR -orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [01a 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [7bec1120ee31ee2bc25b444ca5a6d1833f6affe546544a3258020a4a5f324947] at [/var/hyperledger/orderer/msp/keystore/7bec1120ee31ee2bc25b444ca5a6d1833f6affe546544a3258020a4a5f324947_sk]... -orderer.example.com | [01b 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO -orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o -orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR -orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [01c 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:27 +0000 UTC -orderer.example.com | [01d 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [01e 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.prettyPrintStruct -> INFO Orderer config values: -orderer.example.com | General.LedgerType = "file" -orderer.example.com | General.ListenAddress = "0.0.0.0" -orderer.example.com | General.ListenPort = 7050 -orderer.example.com | General.TLS.Enabled = true -orderer.example.com | General.TLS.PrivateKey = "/var/hyperledger/orderer/tls/server.key" -orderer.example.com | General.TLS.Certificate = "/var/hyperledger/orderer/tls/server.crt" -orderer.example.com | General.TLS.RootCAs = [/var/hyperledger/orderer/tls/ca.crt] -orderer.example.com | General.TLS.ClientAuthRequired = false -orderer.example.com | General.TLS.ClientRootCAs = [] -orderer.example.com | General.Keepalive.ServerMinInterval = 1m0s -orderer.example.com | General.Keepalive.ServerInterval = 2h0m0s -orderer.example.com | General.Keepalive.ServerTimeout = 20s -orderer.example.com | General.GenesisMethod = "file" -orderer.example.com | General.GenesisProfile = "SampleInsecureSolo" -orderer.example.com | General.SystemChannel = "test-system-channel-name" -orderer.example.com | General.GenesisFile = "/var/hyperledger/orderer/orderer.genesis.block" -orderer.example.com | General.Profile.Enabled = false -orderer.example.com | General.Profile.Address = "0.0.0.0:6060" -orderer.example.com | General.LogLevel = "DEBUG" -orderer.example.com | General.LogFormat = "%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}" -orderer.example.com | General.LocalMSPDir = "/var/hyperledger/orderer/msp" -orderer.example.com | General.LocalMSPID = "OrdererMSP" -orderer.example.com | General.BCCSP.ProviderName = "SW" -orderer.example.com | General.BCCSP.SwOpts.SecLevel = 256 -orderer.example.com | General.BCCSP.SwOpts.HashFamily = "SHA2" -orderer.example.com | General.BCCSP.SwOpts.Ephemeral = false -peer0.org1.example.com | [128 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer0.org1.example.com | [129 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer0.org1.example.com | [12a 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer0.org1.example.com | [12b 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42236c980)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer0.org1.example.com | [12c 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer0.org1.example.com | [12d 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer0.org1.example.com | [12e 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false -peer0.org1.example.com | [12f 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer0.org1.example.com | [130 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -peer0.org1.example.com | [131 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -peer0.org1.example.com | [132 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [133 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -peer0.org1.example.com | [134 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [135 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org1.example.com | [136 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org1.example.com | [137 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org1.example.com | [138 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [139 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org1.example.com | [13a 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [0a0 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b644acaa] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0a1 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b644acaa] Received INIT, initializing chaincode -peer1.org1.example.com | [0a2 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [0a3 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b644acaa] Init get response status: 200 -peer1.org1.example.com | [0a4 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b644acaa] Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0a5 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b644acaa] send state message COMPLETED -peer1.org1.example.com | [0a6 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b644acaa] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0a7 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b644acaa] notifying Txid:b644acaa-80c7-45fc-902b-64bd3ab5c7b9, channelID: -peer1.org1.example.com | [0a8 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [0a9 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [0aa 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=c158dd14-0fdd-468d-b2b0-0d312fb6124d,syscc=true,proposal=0x0,canname=lscc:1.2.0) -peer1.org1.example.com | [0ab 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched -peer1.org1.example.com | [0ac 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer1.org1.example.com | [0ad 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 -peer1.org1.example.com | [0ae 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [0af 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=lscc:1.2.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [0b0 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock -peer1.org1.example.com | [0b1 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock -peer1.org1.example.com | [0b2 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 -peer1.org1.example.com | [0b3 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) -peer1.org1.example.com | [0b4 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 -peer1.org1.example.com | [0b5 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [0b6 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 -peer1.org1.example.com | [0b7 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org1.example.com:7052] -peer1.org1.example.com | [0b8 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 -peer1.org1.example.com | [0b9 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0ba 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [0bb 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer1.org1.example.com | [0bc 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 -peer1.org1.example.com | [0bd 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED -peer1.org1.example.com | [0be 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer1.org1.example.com | [0bf 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org1.example.com | [0c0 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" -peer1.org1.example.com | [0c1 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" -peer1.org1.example.com | [0c2 05-31 05:21:31.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" -peer1.org1.example.com | [0c3 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer1.org1.example.com | [0c4 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [0c5 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer1.org1.example.com | [0c6 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org1.example.com | [0c7 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [0c8 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c158dd14]Received message INIT from peer -peer1.org1.example.com | [0c9 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c158dd14] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0ca 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c158dd14] Received INIT, initializing chaincode -peer1.org1.example.com | [0cb 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c158dd14] Init get response status: 200 -peer1.org1.example.com | [0cc 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c158dd14] Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0cd 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [c158dd14] send state message COMPLETED -peer1.org1.example.com | [0ce 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c158dd14] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0cf 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c158dd14] notifying Txid:c158dd14-0fdd-468d-b2b0-0d312fb6124d, channelID: -peer1.org1.example.com | [0d0 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [0d1 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [0d2 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=7c1bec5f-08c3-404b-9533-ccbdb1eea1b1,syscc=true,proposal=0x0,canname=qscc:1.2.0) -peer1.org1.example.com | [0d3 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched -peer1.org1.example.com | [0d4 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer1.org1.example.com | [0d5 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 -peer1.org1.example.com | [0d6 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [0d7 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -orderer.example.com | General.BCCSP.SwOpts.FileKeystore.KeyStorePath = "/var/hyperledger/orderer/msp/keystore" -orderer.example.com | General.BCCSP.SwOpts.DummyKeystore = -orderer.example.com | General.BCCSP.PluginOpts = -orderer.example.com | General.Authentication.TimeWindow = 15m0s -orderer.example.com | FileLedger.Location = "/var/hyperledger/production/orderer" -orderer.example.com | FileLedger.Prefix = "hyperledger-fabric-ordererledger" -orderer.example.com | RAMLedger.HistorySize = 1000 -orderer.example.com | Kafka.Retry.ShortInterval = 5s -orderer.example.com | Kafka.Retry.ShortTotal = 10m0s -orderer.example.com | Kafka.Retry.LongInterval = 5m0s -orderer.example.com | Kafka.Retry.LongTotal = 12h0m0s -orderer.example.com | Kafka.Retry.NetworkTimeouts.DialTimeout = 10s -orderer.example.com | Kafka.Retry.NetworkTimeouts.ReadTimeout = 10s -orderer.example.com | Kafka.Retry.NetworkTimeouts.WriteTimeout = 10s -orderer.example.com | Kafka.Retry.Metadata.RetryMax = 3 -orderer.example.com | Kafka.Retry.Metadata.RetryBackoff = 250ms -orderer.example.com | Kafka.Retry.Producer.RetryMax = 3 -orderer.example.com | Kafka.Retry.Producer.RetryBackoff = 100ms -orderer.example.com | Kafka.Retry.Consumer.RetryBackoff = 2s -orderer.example.com | Kafka.Verbose = false -orderer.example.com | Kafka.Version = 0.10.2.0 -orderer.example.com | Kafka.TLS.Enabled = false -orderer.example.com | Kafka.TLS.PrivateKey = "" -orderer.example.com | Kafka.TLS.Certificate = "" -orderer.example.com | Kafka.TLS.RootCAs = [] -orderer.example.com | Kafka.TLS.ClientAuthRequired = false -orderer.example.com | Kafka.TLS.ClientRootCAs = [] -orderer.example.com | Debug.BroadcastTraceDir = "" -orderer.example.com | Debug.DeliverTraceDir = "" -orderer.example.com | [01f 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled -orderer.example.com | [020 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -orderer.example.com | [021 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -orderer.example.com | [022 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -orderer.example.com | [023 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists -orderer.example.com | [024 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid -orderer.example.com | [025 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -orderer.example.com | [026 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -orderer.example.com | [027 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -orderer.example.com | [028 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -orderer.example.com | [029 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -orderer.example.com | [02a 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -orderer.example.com | [02b 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -orderer.example.com | [02c 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -orderer.example.com | [02d 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -orderer.example.com | [02e 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4200c6ca0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -orderer.example.com | [02f 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -orderer.example.com | [030 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x6b, 0xf9, 0x6f, 0xeb, 0x50, 0x68, 0x74, 0xd3, 0x2d, 0xcc, 0x8c, 0xac, 0xe, 0xd9, 0x99, 0xaf, 0x5f, 0x3e, 0xe5, 0x52, 0xe1, 0x2d, 0xad, 0x7e, 0x1b, 0x4b, 0x7b, 0xbe, 0x91, 0xa7, 0x39, 0x32} txOffsets= -orderer.example.com | txId=ce5eb80b7bb6cf50c571390070e9a63e015cf7076fa9dfa469debf1ce0812fd0 locPointer=offset=38, bytesLength=9111 -orderer.example.com | ] -orderer.example.com | [031 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9154], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | [032 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -orderer.example.com | [033 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [034 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes -orderer.example.com | [035 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [036 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [037 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -orderer.example.com | [038 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [039 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes -orderer.example.com | [03a 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [03b 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -peer0.org2.example.com | [14d 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer0.org2.example.com | [14e 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false -peer0.org2.example.com | [14f 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer0.org2.example.com | [150 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -peer0.org2.example.com | [151 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -peer0.org2.example.com | [152 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [153 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -peer0.org2.example.com | [154 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [155 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [156 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [157 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org2.example.com | [158 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [159 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [15a 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -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 | CORE_CHAINCODE_ID_NAME=qscc:1.2.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [0d8 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock -peer1.org1.example.com | [0d9 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock -peer1.org1.example.com | [0da 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 -peer1.org1.example.com | [0db 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) -peer1.org1.example.com | [0dc 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 -peer1.org1.example.com | [0dd 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [0de 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 -peer1.org1.example.com | [0df 05-31 05:21:31.53 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 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 -peer1.org1.example.com | [0e1 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org1.example.com | [0e2 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [0e3 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer1.org1.example.com | [0e4 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 -peer1.org1.example.com | [0e5 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED -peer1.org1.example.com | [0e6 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" -peer1.org1.example.com | [0e7 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" -peer1.org1.example.com | [0e8 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer1.org1.example.com | [0e9 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -orderer.example.com | [03c 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [03d 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [03e 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [03f 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [040 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [041 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [042 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [043 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [044 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [045 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [046 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [047 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [048 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [049 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [04a 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [04b 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [04c 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [04d 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [04e 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [04f 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [050 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [13b 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [0ea 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer1.org1.example.com | [0eb 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer1.org1.example.com | [0ec 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" -peer1.org1.example.com | [0ed 05-31 05:21:31.53 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer1.org1.example.com | [0ee 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer1.org1.example.com | [0ef 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [0f0 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c1bec5f]Received message INIT from peer -peer1.org1.example.com | [0f1 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c1bec5f] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [0f2 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [7c1bec5f] Received INIT, initializing chaincode -peer1.org1.example.com | [0f3 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [0f4 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c1bec5f] Init get response status: 200 -peer1.org1.example.com | [0f5 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c1bec5f] Init succeeded. Sending COMPLETED -peer1.org1.example.com | [0f6 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [7c1bec5f] send state message COMPLETED -peer1.org1.example.com | [0f7 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [7c1bec5f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [0f8 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [7c1bec5f] notifying Txid:7c1bec5f-08c3-404b-9533-ccbdb1eea1b1, channelID: -peer1.org1.example.com | [0f9 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [0fa 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org1.example.com | [0fb 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes -peer1.org1.example.com | [0fc 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] -peer1.org1.example.com | [0fd 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer1.org1.example.com | [0fe 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated -peer1.org1.example.com | [0ff 05-31 05:21:31.55 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 | [100 05-31 05:21:31.55 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 | [101 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer1.org1.example.com | [102 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org1.example.com | [103 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org1.example.com | [104 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:10991477598238104586 tag:EMPTY mem_req:\270R\345;\301\030\275\311\272l\201\326fv\354\nh\335%t\267?\002 z\211\030\272r\361\375\235\365_\372\014.j\021e\241f\000\371\n\307\017\276z\250 T\343\262\\\r" > > > , Envelope: 1089 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [105 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:10991477598238104586 tag:EMPTY mem_req:\270R\345;\301\030\275\311\272l\201\326fv\354\nh\335%t\267?\002 z\211\030\272r\361\375\235\365_\372\014.j\021e\241f\000\371\n\307\017\276z\250 T\343\262\\\r" > > > , Envelope: 1089 bytes, Signature: 0 bytes -peer1.org1.example.com | [106 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [107 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:7051 -peer1.org1.example.com | [108 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org1.example.com | [109 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org1.example.com | [10a 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer1.org1.example.com | [10b 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [10d 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) -peer1.org1.example.com | [10c 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer0.org1.example.com:7051, PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] isn't responsive: EOF -peer1.org1.example.com | [10e 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55290 -peer1.org1.example.com | [10f 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4223343c0 -peer1.org1.example.com | [110 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [111 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [112 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [051 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [052 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos -orderer.example.com | [053 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -orderer.example.com | [054 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [055 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [056 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [057 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [058 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [059 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [05a 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [05b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [05c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [05d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [05e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [05f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [060 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [061 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [062 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [063 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [064 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [065 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [066 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [067 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [068 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [069 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [06a 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [06b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [06c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [06d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [06e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [06f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP -orderer.example.com | [070 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP -orderer.example.com | [071 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP -orderer.example.com | [072 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP -orderer.example.com | [073 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP -orderer.example.com | [074 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP -orderer.example.com | [075 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -orderer.example.com | [076 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers -orderer.example.com | [077 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [078 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers -orderer.example.com | [079 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [07a 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [07b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [07c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [07d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [07e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [07f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [080 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [081 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [082 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [083 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [084 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [085 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [086 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [087 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [088 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [089 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [08a 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [08b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums -orderer.example.com | [08c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium -orderer.example.com | [08d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP -orderer.example.com | [08e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -peer1.org1.example.com | [113 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [114 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [115 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4223444b0, header 0xc4223347e0 -peer1.org1.example.com | [116 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org1.example.com | [117 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][855e77b1] processing txid: 855e77b197e172d1281fad708a7604c5fbace6e089de4506a591d4e033af87bf -peer1.org1.example.com | [118 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][855e77b1] Entry chaincode: name:"cscc" -peer1.org1.example.com | [119 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][855e77b197e172d1281fad708a7604c5fbace6e089de4506a591d4e033af87bf] Entry chaincode: name:"cscc" version: 1.2.0 -peer1.org1.example.com | [11a 05-31 05:21:35.04 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=855e77b197e172d1281fad708a7604c5fbace6e089de4506a591d4e033af87bf,syscc=true,proposal=0xc4223444b0,canname=cscc:1.2.0) -peer1.org1.example.com | [11b 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer1.org1.example.com | [11c 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [11d 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [855e77b1]Received message TRANSACTION from peer -peer1.org1.example.com | [11e 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [855e77b1] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [11f 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [855e77b1] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org1.example.com | [120 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org1.example.com | [121 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org1.example.com | [122 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org1.example.com | [123 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer1.org1.example.com | [124 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer1.org1.example.com | [125 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer1.org1.example.com | [126 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer1.org1.example.com | [127 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org1.example.com | [128 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org1.example.com | [129 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer1.org1.example.com | [12a 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer1.org1.example.com | [12b 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer1.org1.example.com | [12c 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc422383a20)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org1.example.com | [12d 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -orderer.example.com | [08f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -orderer.example.com | [090 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -orderer.example.com | [091 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -orderer.example.com | [092 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP -orderer.example.com | [093 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -orderer.example.com | [094 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -orderer.example.com | [095 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -orderer.example.com | [096 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -orderer.example.com | [097 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -orderer.example.com | [098 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -orderer.example.com | [099 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [09a 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [09b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [09c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [09d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [09e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [09f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [0a0 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [0a1 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [0a2 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [0a3 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [0a4 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -orderer.example.com | [0a5 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [0a6 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [0a7 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -orderer.example.com | [0a8 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [0a9 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [0aa 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [0ab 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/capabilities] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -orderer.example.com | [0ac 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/capabilities] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -orderer.example.com | [0ad 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -orderer.example.com | [0ae 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [0af 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes -orderer.example.com | [0b0 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [0b1 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [0b2 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) -orderer.example.com | [0b3 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources -orderer.example.com | [0b4 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -orderer.example.com | [0b5 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -orderer.example.com | [0b6 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [0b7 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes -orderer.example.com | [0b8 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [0b9 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [0ba 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 6bf96feb506874d32dcc8cac0ed999af5f3ee552e12dad7e1b4b7bbe91a73932 and orderer type solo -orderer.example.com | [0bb 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: -orderer.example.com | Version: 1.2.0 -orderer.example.com | Go version: go1.10.2 -orderer.example.com | OS/Arch: linux/amd64 -orderer.example.com | Experimental features: true -orderer.example.com | [0bc 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -orderer.example.com | [0bd 05-31 05:21:34.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [0be 05-31 05:21:34.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41270 -orderer.example.com | [0bf 05-31 05:21:34.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41270 -orderer.example.com | [0c0 05-31 05:21:34.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [0c1 05-31 05:21:34.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41272 -orderer.example.com | [0c2 05-31 05:21:34.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:41272 -orderer.example.com | [0c3 05-31 05:21:34.15 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel -orderer.example.com | [0c4 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid -orderer.example.com | [0c5 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [12e 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer1.org1.example.com | [12f 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false -peer1.org1.example.com | [130 05-31 05:21:35.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer1.org1.example.com | [131 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -peer1.org1.example.com | [132 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -peer1.org1.example.com | [133 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [134 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -peer1.org1.example.com | [135 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [136 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org1.example.com | [137 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org1.example.com | [138 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [139 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [13a 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [13b 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [13c 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [13d 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [13e 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [13f 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -peer1.org1.example.com | [140 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [141 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [142 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [143 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -peer1.org1.example.com | [144 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] -peer1.org1.example.com | [145 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xc2, 0x1e, 0x64, 0xf2, 0xd9, 0x85, 0xf0, 0xf7, 0x6d, 0x68, 0x53, 0xa1, 0x96, 0x61, 0x4a, 0xbd, 0xd0, 0xa2, 0x78, 0x7b, 0x4d, 0xb0, 0x42, 0x49, 0x2a, 0xcc, 0x56, 0x48, 0xa7, 0x2, 0x5, 0x73} txOffsets= -peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer1.org1.example.com | ] -peer1.org1.example.com | [146 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -peer1.org1.example.com | [147 05-31 05:21:35.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [148 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org1.example.com | [149 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] -peer1.org1.example.com | [14a 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] -peer1.org1.example.com | [14b 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer1.org1.example.com | [14c 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer1.org1.example.com | [14e 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [14f 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] -peer1.org1.example.com | [150 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} -peer1.org1.example.com | [151 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] -peer1.org1.example.com | [152 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage -peer1.org1.example.com | [153 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished -peer1.org1.example.com | [14d 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] -peer1.org1.example.com | [154 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [155 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org1.example.com | [156 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -orderer.example.com | [0c6 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [0c7 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [0c8 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [0c9 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [0ca 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [0cb 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [0cc 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [0cd 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [0ce 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [0cf 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [0d0 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [0d1 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [0d2 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [0d3 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [0d4 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [0d5 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [0d6 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [0d7 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [0d8 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -peer0.org1.example.com | [13c 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [13d 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [13e 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -peer0.org1.example.com | [13f 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [140 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [141 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [142 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -peer0.org1.example.com | [143 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] -peer0.org1.example.com | [144 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xc2, 0x1e, 0x64, 0xf2, 0xd9, 0x85, 0xf0, 0xf7, 0x6d, 0x68, 0x53, 0xa1, 0x96, 0x61, 0x4a, 0xbd, 0xd0, 0xa2, 0x78, 0x7b, 0x4d, 0xb0, 0x42, 0x49, 0x2a, 0xcc, 0x56, 0x48, 0xa7, 0x2, 0x5, 0x73} txOffsets= -peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=12077 +peer0.org1.example.com | [0d7 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock +peer1.org2.example.com | [001 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP +peer1.org2.example.com | [002 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +peer1.org2.example.com | [003 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW +peer1.org2.example.com | [004 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW +peer1.org2.example.com | [005 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore +peer1.org2.example.com | [006 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input +peer1.org2.example.com | [007 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string +peer1.org2.example.com | [008 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +peer1.org2.example.com | [009 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 +peer1.org2.example.com | [00a 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 +peer1.org2.example.com | [00b 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 +peer1.org2.example.com | [00c 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[Default:SW SW:map[FileKeyStore:map[KeyStore:] Hash:SHA2 Security:256]]] +peer1.org2.example.com | [00d 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done +peer1.org2.example.com | [00e 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] +peer1.org2.example.com | [00f 06-12 02:14:11.60 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts +peer1.org2.example.com | [010 06-12 02:14:11.61 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer1.org2.example.com-cert.pem +peer1.org2.example.com | [011 06-12 02:14:11.61 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts +peer1.org2.example.com | [012 06-12 02:14:11.62 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org2.example.com-cert.pem +peer1.org2.example.com | [013 06-12 02:14:11.62 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts +peer1.org2.example.com | [014 06-12 02:14:11.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org2.example.com-cert.pem +peer1.org2.example.com | [015 06-12 02:14:11.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts +peer1.org2.example.com | [016 06-12 02:14:11.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] +peer1.org2.example.com | [017 06-12 02:14:11.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts +peer1.org2.example.com | [018 06-12 02:14:11.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org2.example.com-cert.pem +peer1.org2.example.com | [019 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts +peer1.org2.example.com | [01a 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] +peer1.org2.example.com | [01b 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls +peer1.org2.example.com | [01c 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] +peer1.org2.example.com | [01d 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] +peer1.org2.example.com | [01e 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [01f 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [020 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP +peer1.org2.example.com | [021 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org1.example.com | [126 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [127 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [128 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [12a 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [12b 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2153 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [12c 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\004\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\335C\333\343\226}\031y\264\247\254Fu2da\2107\30766\206D\324\221\367+\307\220\020\214v\002 4m\263\0334y\316d\233\021\210u\264\t\014\273\243g\010\025\n\001\323\014\205\365=\215\217T\303\251" secret_envelope: > alive:\013O7|=\300\305\000~\177\375\342/\n\240\225\210\352\237\230\323\030\265\261JN\202\371\331" secret_envelope: > +peer1.org1.example.com | [12d 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2153 bytes, Signature: 0 bytes +peer1.org1.example.com | [12e 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [129 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [12f 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:45884 +peer1.org1.example.com | [130 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420256a50 +peer1.org1.example.com | [131 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [132 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [133 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org1.example.com | [134 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [135 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [136 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42042ac30, header 0xc420256f90 +peer1.org1.example.com | [137 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org1.example.com | [0d8 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock +peer0.org1.example.com | [0d9 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 +peer0.org1.example.com | [0da 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) +peer0.org1.example.com | [0db 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 +peer0.org1.example.com | [0dc 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [0dd 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 +peer0.org1.example.com | [0de 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +peer0.org1.example.com | [0df 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 +peer0.org1.example.com | [0e0 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org1.example.com | [0e1 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [0e2 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer0.org1.example.com | [0e3 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 +peer0.org1.example.com | [0e4 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED +peer0.org1.example.com | [0e5 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" +peer0.org1.example.com | [0e6 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" +peer0.org1.example.com | [0e7 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer0.org1.example.com | [0e8 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org1.example.com | [0e9 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer0.org1.example.com | [0ea 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer0.org1.example.com | [0eb 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" +peer0.org1.example.com | [0ec 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer0.org1.example.com | [0ed 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer0.org1.example.com | [0ee 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [0ef 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8532ea0b]Received message INIT from peer +peer0.org1.example.com | [0f0 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8532ea0b] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [0f1 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8532ea0b] Received INIT, initializing chaincode +peer0.org1.example.com | [0f2 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org1.example.com | [0f3 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8532ea0b] Init get response status: 200 +peer1.org2.example.com | [022 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer1.org2.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org2.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +peer1.org2.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +peer1.org2.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +peer1.org2.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +peer1.org2.example.com | CSJWn+U1 +peer1.org2.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [023 06-12 02:14:11.64 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +peer1.org2.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +peer1.org2.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +peer1.org2.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +peer1.org2.example.com | 5Y80QLeEvYkoMMMbcA== +peer1.org2.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [024 06-12 02:14:11.68 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer1.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +peer1.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF +peer1.org2.example.com | 4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD +peer1.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue +peer1.org2.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs +peer1.org2.example.com | Sg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY +peer1.org2.example.com | 2EdFEzWgoRUHqwi9 +peer1.org2.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [025 06-12 02:14:11.68 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [8523e71b24b91ec00799f1748e51b43b308d959e49ecdcfc1c7c6b58478a284c] at [/etc/hyperledger/fabric/msp/keystore/8523e71b24b91ec00799f1748e51b43b308d959e49ecdcfc1c7c6b58478a284c_sk]... +peer1.org2.example.com | [026 06-12 02:14:11.69 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | MIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer1.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw +peer1.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF +peer1.org2.example.com | 4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD +peer1.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue +peer1.org2.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs +peer1.org2.example.com | Sg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY +peer1.org2.example.com | 2EdFEzWgoRUHqwi9 +peer1.org2.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [027 06-12 02:14:11.69 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:27 +0000 UTC +peer1.org2.example.com | [028 06-12 02:14:11.69 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [029 06-12 02:14:11.69 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 | [02a 06-12 02:14:11.69 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 | [02b 06-12 02:14:11.69 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +peer1.org2.example.com | [02c 06-12 02:14:11.69 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 | [02d 06-12 02:14:11.69 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 | [02e 06-12 02:14:11.69 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 | [02f 06-12 02:14:11.69 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 | [030 06-12 02:14:11.69 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' +peer1.org2.example.com | [031 06-12 02:14:11.69 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 | [0f4 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8532ea0b] Init succeeded. Sending COMPLETED +peer0.org1.example.com | [0f5 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8532ea0b] send state message COMPLETED +peer0.org1.example.com | [0f6 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8532ea0b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [0f7 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8532ea0b] notifying Txid:8532ea0b-309c-4884-b19e-a88e563c5a3e, channelID: +peer0.org1.example.com | [0f8 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [0f9 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org1.example.com | [0fa 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes +peer0.org1.example.com | [0fb 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] +peer0.org1.example.com | [0fc 06-12 02:14:12.11 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer0.org1.example.com | [0fd 06-12 02:14:12.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated +peer0.org1.example.com | [0fe 06-12 02:14:12.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +peer0.org1.example.com | [0ff 06-12 02:14:12.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +peer0.org1.example.com | [100 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:35340 +peer0.org1.example.com | [101 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35340 +peer0.org1.example.com | [102 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35340 +peer0.org1.example.com | [103 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35340 +peer0.org1.example.com | [104 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org1.example.com | [105 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35340 disconnected +peer0.org1.example.com | [106 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [107 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:35342 +peer1.org2.example.com | [032 06-12 02:14:11.69 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 | [033 06-12 02:14:11.69 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 | [034 06-12 02:14:11.69 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 | [035 06-12 02:14:11.69 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer1.org2.example.com | Version: 1.2.0 +peer1.org2.example.com | Go version: go1.10.2 +peer1.org2.example.com | OS/Arch: linux/amd64 +peer1.org2.example.com | Experimental features: true +peer1.org2.example.com | Chaincode: +peer1.org2.example.com | Base Image Version: 0.4.8 +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 | [036 06-12 02:14:11.69 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 | [037 06-12 02:14:11.69 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 | [038 06-12 02:14:11.69 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 | [039 06-12 02:14:11.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 Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer1.org2.example.com | [03a 06-12 02:14:11.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.org2.example.com | [03b 06-12 02:14:11.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer1.org2.example.com | [03c 06-12 02:14:11.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org2.example.com | [03d 06-12 02:14:11.72 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer1.org2.example.com | [03e 06-12 02:14:11.73 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +peer1.org2.example.com | [03f 06-12 02:14:11.73 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +peer1.org2.example.com | [040 06-12 02:14:11.73 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer1.org2.example.com | [041 06-12 02:14:11.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer1.org2.example.com | [042 06-12 02:14:11.73 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer1.org2.example.com | [043 06-12 02:14:11.73 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer1.org2.example.com | [044 06-12 02:14:11.73 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer1.org2.example.com | [045 06-12 02:14:11.74 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 | [046 06-12 02:14:11.74 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/historyLeveldb/] +peer1.org2.example.com | [047 06-12 02:14:11.74 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] does not exist +peer1.org2.example.com | [048 06-12 02:14:11.74 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists +peer1.org2.example.com | [049 06-12 02:14:11.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/bookkeeper/] +peer1.org2.example.com | [04a 06-12 02:14:11.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/bookkeeper/] does not exist +peer1.org2.example.com | [04b 06-12 02:14:11.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/bookkeeper/] exists +peer1.org2.example.com | [04c 06-12 02:14:11.77 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory +peer1.org2.example.com | [04d 06-12 02:14:11.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] +peer1.org2.example.com | [04e 06-12 02:14:11.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist +peer1.org2.example.com | [04f 06-12 02:14:11.77 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists +peer1.org2.example.com | [050 06-12 02:14:11.78 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 | [051 06-12 02:14:11.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU Recovering under construction ledger +peer1.org2.example.com | [052 06-12 02:14:11.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.recoverUnderConstructionLedger -> DEBU No under construction ledger found. Quitting recovery +peer1.org2.example.com | [053 06-12 02:14:11.78 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 | [054 06-12 02:14:11.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.3:7051 +peer1.org2.example.com | [055 06-12 02:14:11.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org2.example.com:7051 +peer1.org2.example.com | [056 06-12 02:14:11.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.3:7051 +peer1.org2.example.com | [057 06-12 02:14:11.78 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org2.example.com:7051 +peer1.org2.example.com | [058 06-12 02:14:11.79 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer1.org2.example.com | [059 06-12 02:14:11.79 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 | [05a 06-12 02:14:11.79 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 | [05b 06-12 02:14:11.79 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 | [05c 06-12 02:14:11.79 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 | [05d 06-12 02:14:11.79 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +peer0.org1.example.com | [108 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35342 +peer0.org1.example.com | [109 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35342 +peer0.org1.example.com | [10a 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35342 +peer0.org1.example.com | [10b 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:14642057695148649786 tag:EMPTY mem_req:}!5\367|\246\324|\372]$\231\325\362" > > > , Envelope: 1090 bytes, Signature: 0 bytes +peer0.org1.example.com | [10c 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [10d 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:14642057695148649786 tag:EMPTY mem_req:}!5\367|\246\324|\372]$\231\325\362" > > > , Envelope: 1090 bytes, Signature: 0 bytes +peer0.org1.example.com | [10e 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [10f 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]}, deadMembers={[]} +peer0.org1.example.com | [110 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [111 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer0.org1.example.com | [112 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [113 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [114 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [115 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 14642057695148649786, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2163 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [116 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:}!5\367|\246\324|\372]$\231\325\362" > > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\003\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\212\256UZq\001\274f\256\345\035\371\354$\357\366\223\"\033\3011\026&\376\243\353p\370\225\271\341\010\002 R\243$\314\353\246U\2320;\020\006\234\032\354\320\031Nr~\004>\305\201\370\210?\235}\014\236\250" secret_envelope: > +peer0.org1.example.com | [117 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 14642057695148649786, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2163 bytes, Signature: 0 bytes +peer0.org1.example.com | [118 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [119 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [11a 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [11b 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [11c 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [11d 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\004\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\335C\333\343\226}\031y\264\247\254Fu2da\2107\30766\206D\324\221\367+\307\220\020\214v\002 4m\263\0334y\316d\233\021\210u\264\t\014\273\243g\010\025\n\001\323\014\205\365=\215\217T\303\251" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [11e 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\004\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\335C\333\343\226}\031y\264\247\254Fu2da\2107\30766\206D\324\221\367+\307\220\020\214v\002 4m\263\0334y\316d\233\021\210u\264\t\014\273\243g\010\025\n\001\323\014\205\365=\215\217T\303\251" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +peer0.org1.example.com | [11f 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [120 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org1.example.com | [121 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org1.example.com | [122 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [123 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2153 bytes, Signature: 0 bytes +peer0.org1.example.com | [124 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [125 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2153 bytes, Signature: 0 bytes +peer0.org1.example.com | [126 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [127 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [128 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [129 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [138 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][4956c2e7] processing txid: 4956c2e7fcb4ec891e45b023d563d9d054b8c1f1395a23ab15dea02c4a0862d1 +peer1.org1.example.com | [139 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][4956c2e7] Entry chaincode: name:"cscc" +peer1.org1.example.com | [13a 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][4956c2e7fcb4ec891e45b023d563d9d054b8c1f1395a23ab15dea02c4a0862d1] Entry chaincode: name:"cscc" version: 1.2.0 +peer1.org1.example.com | [13b 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=4956c2e7fcb4ec891e45b023d563d9d054b8c1f1395a23ab15dea02c4a0862d1,syscc=true,proposal=0xc42042ac30,canname=cscc:1.2.0) +peer1.org1.example.com | [13c 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org1.example.com | [13d 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [13e 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4956c2e7]Received message TRANSACTION from peer +peer1.org1.example.com | [13f 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4956c2e7] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [140 06-12 02:14:16.31 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [4956c2e7] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [141 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer1.org1.example.com | [142 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer1.org1.example.com | [143 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer1.org1.example.com | [144 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +peer1.org1.example.com | [145 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +peer1.org1.example.com | [146 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +peer1.org1.example.com | [147 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer1.org1.example.com | [148 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer1.org1.example.com | [149 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org1.example.com | [14a 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | [14b 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [14c 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org1.example.com | [14d 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc420421020)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer1.org1.example.com | [14e 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer1.org1.example.com | [14f 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenStore -> DEBU Pvtdata store opened. Initial state: isEmpty [true], lastCommittedBlock [0], batchPending [false] +peer1.org1.example.com | [150 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +peer1.org1.example.com | [151 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false +peer1.org1.example.com | [152 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer1.org1.example.com | [153 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +peer0.org1.example.com | [12a 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [12b 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [12c 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [12d 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [12e 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [12f 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [130 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [131 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44168 +peer0.org1.example.com | [132 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42238fb90 +peer0.org1.example.com | [133 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [134 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [135 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [136 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [137 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [138 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42239eff0, header 0xc42238ffb0 +peer0.org1.example.com | [139 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org1.example.com | [13a 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][1a04dc88] processing txid: 1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c +peer0.org1.example.com | [13b 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1a04dc88] Entry chaincode: name:"cscc" +peer0.org1.example.com | [13c 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c] Entry chaincode: name:"cscc" version: 1.2.0 +peer0.org1.example.com | [13d 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c,syscc=true,proposal=0xc42239eff0,canname=cscc:1.2.0) +peer0.org1.example.com | [13e 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer0.org1.example.com | [13f 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [140 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a04dc88]Received message TRANSACTION from peer +peer0.org1.example.com | [141 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a04dc88] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [142 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1a04dc88] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [143 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org1.example.com | [144 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org1.example.com | [145 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org1.example.com | [146 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +peer0.org1.example.com | [147 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +peer0.org1.example.com | [148 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +peer0.org1.example.com | [149 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer0.org1.example.com | [14a 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer0.org1.example.com | [14b 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer0.org1.example.com | [14c 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer0.org1.example.com | [14d 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer0.org1.example.com | [14e 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer0.org1.example.com | [14f 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc422407d20)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | 2018-06-12 02:14:10.774 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 +orderer.example.com | [002 06-12 02:14:10.77 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +orderer.example.com | [003 06-12 02:14:10.77 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] +orderer.example.com | [004 06-12 02:14:10.77 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +orderer.example.com | [005 06-12 02:14:10.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +orderer.example.com | [006 06-12 02:14:10.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +orderer.example.com | [007 06-12 02:14:10.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +orderer.example.com | [008 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +orderer.example.com | [009 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +orderer.example.com | [00a 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +orderer.example.com | [00b 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +orderer.example.com | [00c 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +orderer.example.com | [00d 06-12 02:14:10.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +orderer.example.com | [00e 06-12 02:14:10.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +orderer.example.com | [00f 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +orderer.example.com | [010 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +orderer.example.com | [011 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +orderer.example.com | [012 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +orderer.example.com | [013 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [014 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [015 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP +orderer.example.com | [016 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [017 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +peer1.org1.example.com | [154 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +peer1.org1.example.com | [155 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [156 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +peer1.org1.example.com | [157 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org1.example.com | [158 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org1.example.com | [159 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org1.example.com | [15a 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org1.example.com | [15b 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [15c 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org1.example.com | [15d 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [018 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [019 06-12 02:14:10.84 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO +orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o +orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR +orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [01a 06-12 02:14:10.85 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [7bec1120ee31ee2bc25b444ca5a6d1833f6affe546544a3258020a4a5f324947] at [/var/hyperledger/orderer/msp/keystore/7bec1120ee31ee2bc25b444ca5a6d1833f6affe546544a3258020a4a5f324947_sk]... +orderer.example.com | [01b 06-12 02:14:10.86 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [150 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +peer0.org1.example.com | [151 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenStore -> DEBU Pvtdata store opened. Initial state: isEmpty [true], lastCommittedBlock [0], batchPending [false] +peer0.org1.example.com | [152 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +peer0.org1.example.com | [153 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false +peer1.org1.example.com | [15e 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO +orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o +orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR +orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [01c 06-12 02:14:10.86 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:27 +0000 UTC +orderer.example.com | [01d 06-12 02:14:10.86 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [01e 06-12 02:14:10.86 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.prettyPrintStruct -> INFO Orderer config values: +orderer.example.com | General.LedgerType = "file" +orderer.example.com | General.ListenAddress = "0.0.0.0" +orderer.example.com | General.ListenPort = 7050 +orderer.example.com | General.TLS.Enabled = true +orderer.example.com | General.TLS.PrivateKey = "/var/hyperledger/orderer/tls/server.key" +orderer.example.com | General.TLS.Certificate = "/var/hyperledger/orderer/tls/server.crt" +orderer.example.com | General.TLS.RootCAs = [/var/hyperledger/orderer/tls/ca.crt] +orderer.example.com | General.TLS.ClientAuthRequired = false +orderer.example.com | General.TLS.ClientRootCAs = [] +orderer.example.com | General.Keepalive.ServerMinInterval = 1m0s +orderer.example.com | General.Keepalive.ServerInterval = 2h0m0s +orderer.example.com | General.Keepalive.ServerTimeout = 20s +orderer.example.com | General.GenesisMethod = "file" +orderer.example.com | General.GenesisProfile = "SampleInsecureSolo" +orderer.example.com | General.SystemChannel = "test-system-channel-name" +orderer.example.com | General.GenesisFile = "/var/hyperledger/orderer/orderer.genesis.block" +orderer.example.com | General.Profile.Enabled = false +orderer.example.com | General.Profile.Address = "0.0.0.0:6060" +orderer.example.com | General.LogLevel = "DEBUG" +orderer.example.com | General.LogFormat = "%{color}[%{id:03x} %{time:01-02 15:04:05.00 MST}] [%{longpkg}] %{callpath} -> %{level:.4s}%{color:reset} %{message}" +orderer.example.com | General.LocalMSPDir = "/var/hyperledger/orderer/msp" +orderer.example.com | General.LocalMSPID = "OrdererMSP" +orderer.example.com | General.BCCSP.ProviderName = "SW" +orderer.example.com | General.BCCSP.SwOpts.SecLevel = 256 +orderer.example.com | General.BCCSP.SwOpts.HashFamily = "SHA2" +orderer.example.com | General.BCCSP.SwOpts.Ephemeral = false +orderer.example.com | General.BCCSP.SwOpts.FileKeystore.KeyStorePath = "/var/hyperledger/orderer/msp/keystore" +orderer.example.com | General.BCCSP.SwOpts.DummyKeystore = +peer0.org1.example.com | [154 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer0.org1.example.com | [155 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +peer0.org1.example.com | [156 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +peer0.org1.example.com | [157 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [158 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +peer0.org1.example.com | [159 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [15a 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [15b 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org1.example.com | [15c 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org1.example.com | [15d 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [15e 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org1.example.com | [15f 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | General.BCCSP.PluginOpts = +orderer.example.com | General.Authentication.TimeWindow = 15m0s +orderer.example.com | FileLedger.Location = "/var/hyperledger/production/orderer" +orderer.example.com | FileLedger.Prefix = "hyperledger-fabric-ordererledger" +orderer.example.com | RAMLedger.HistorySize = 1000 +orderer.example.com | Kafka.Retry.ShortInterval = 5s +orderer.example.com | Kafka.Retry.ShortTotal = 10m0s +orderer.example.com | Kafka.Retry.LongInterval = 5m0s +peer0.org2.example.com | [001 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP +peer0.org2.example.com | [002 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +peer0.org2.example.com | [003 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW +peer0.org2.example.com | [004 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW +peer0.org2.example.com | [005 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 +peer0.org2.example.com | [006 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 +peer0.org2.example.com | [007 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore +peer0.org2.example.com | [008 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input +peer0.org2.example.com | [009 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string +peer0.org2.example.com | [00a 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +peer0.org2.example.com | [00b 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 +peer0.org2.example.com | [00c 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[Default:SW SW:map[Security:256 FileKeyStore:map[KeyStore:] Hash:SHA2]]] +peer0.org2.example.com | [00d 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done +peer0.org2.example.com | [00e 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] +peer0.org2.example.com | [00f 06-12 02:14:12.27 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts +peer0.org2.example.com | [010 06-12 02:14:12.28 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer0.org2.example.com-cert.pem +peer0.org2.example.com | [011 06-12 02:14:12.28 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts +peer0.org2.example.com | [012 06-12 02:14:12.28 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org2.example.com-cert.pem +peer0.org2.example.com | [013 06-12 02:14:12.28 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts +peer0.org2.example.com | [014 06-12 02:14:12.28 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org2.example.com-cert.pem +peer0.org2.example.com | [015 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts +peer0.org2.example.com | [016 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] +peer0.org2.example.com | [017 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts +peer0.org2.example.com | [018 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org2.example.com-cert.pem +peer0.org2.example.com | [019 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts +peer0.org2.example.com | [01a 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] +peer0.org2.example.com | [01b 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls +peer0.org2.example.com | [01c 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] +peer0.org2.example.com | [01d 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] +peer0.org2.example.com | [01e 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [15f 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [160 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [161 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +peer1.org1.example.com | [162 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [163 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [164 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [165 06-12 02:14:16.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +peer1.org1.example.com | [166 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] +peer1.org1.example.com | [167 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x81, 0xc5, 0xbd, 0x2f, 0xfe, 0x1f, 0xf2, 0xa7, 0x99, 0x11, 0xeb, 0x89, 0x2a, 0xfe, 0x78, 0x3e, 0xbf, 0xeb, 0x8f, 0x89, 0xbe, 0x14, 0xc1, 0x3d, 0xfa, 0x19, 0xe2, 0x63, 0x95, 0x7d, 0xd8, 0xa6} txOffsets= +peer1.org1.example.com | txId= locPointer=offset=38, bytesLength=12078 +peer1.org1.example.com | ] +peer1.org1.example.com | [168 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx ID: [] to index +peer1.org1.example.com | [169 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [16a 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12122], isChainEmpty=[false], lastBlockNumber=[0] +peer1.org1.example.com | [16b 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] +peer1.org1.example.com | [16c 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] +peer1.org1.example.com | [16d 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +peer1.org1.example.com | [16e 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +peer1.org1.example.com | [170 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [0] +peer1.org1.example.com | [171 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] +peer1.org1.example.com | [16f 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] +peer1.org1.example.com | [172 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [0] +peer1.org1.example.com | [173 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} +peer1.org1.example.com | [174 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [175 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] +peer1.org1.example.com | [176 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org1.example.com | [177 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage +peer1.org1.example.com | [178 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [160 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org2.example.com | [05e 06-12 02:14:11.79 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer1.org2.example.com | [05f 06-12 02:14:11.80 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com +peer1.org2.example.com | [060 06-12 02:14:11.80 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 +peer1.org2.example.com | [061 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 +peer1.org2.example.com | [062 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer1.org2.example.com | [063 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 +peer1.org2.example.com | [064 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer1.org2.example.com | [065 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 +peer1.org2.example.com | [066 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer1.org2.example.com | [067 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer1.org2.example.com | [068 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +peer1.org2.example.com | [069 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +peer1.org2.example.com | [06a 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +peer1.org2.example.com | [06b 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers +peer1.org2.example.com | [06c 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc +peer1.org2.example.com | [06d 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer1.org2.example.com | [06e 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to +peer1.org2.example.com | [06f 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +peer1.org2.example.com | [070 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement +peer1.org2.example.com | [071 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators +peer1.org2.example.com | [072 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc +peer1.org2.example.com | [073 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +peer1.org2.example.com | [074 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation +peer1.org2.example.com | [075 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer1.org2.example.com | [076 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to +peer1.org2.example.com | [077 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] +peer1.org2.example.com | [078 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] +peer1.org2.example.com | [079 06-12 02:14:11.81 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[validators:map[vscc:map[name:DefaultValidation library:]] authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]] decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[library: name:DefaultEndorsement]]]] +peer1.org2.example.com | [07a 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [07b 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +orderer.example.com | Kafka.Retry.LongTotal = 12h0m0s +orderer.example.com | Kafka.Retry.NetworkTimeouts.DialTimeout = 10s +orderer.example.com | Kafka.Retry.NetworkTimeouts.ReadTimeout = 10s +orderer.example.com | Kafka.Retry.NetworkTimeouts.WriteTimeout = 10s +orderer.example.com | Kafka.Retry.Metadata.RetryMax = 3 +orderer.example.com | Kafka.Retry.Metadata.RetryBackoff = 250ms +orderer.example.com | Kafka.Retry.Producer.RetryMax = 3 +orderer.example.com | Kafka.Retry.Producer.RetryBackoff = 100ms +orderer.example.com | Kafka.Retry.Consumer.RetryBackoff = 2s +orderer.example.com | Kafka.Verbose = false +orderer.example.com | Kafka.Version = 0.10.2.0 +orderer.example.com | Kafka.TLS.Enabled = false +orderer.example.com | Kafka.TLS.PrivateKey = "" +orderer.example.com | Kafka.TLS.Certificate = "" +orderer.example.com | Kafka.TLS.RootCAs = [] +orderer.example.com | Kafka.TLS.ClientAuthRequired = false +orderer.example.com | Kafka.TLS.ClientRootCAs = [] +orderer.example.com | Debug.BroadcastTraceDir = "" +orderer.example.com | Debug.DeliverTraceDir = "" +orderer.example.com | [01f 06-12 02:14:10.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled +orderer.example.com | [020 06-12 02:14:10.89 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +orderer.example.com | [021 06-12 02:14:10.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +orderer.example.com | [022 06-12 02:14:10.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +orderer.example.com | [023 06-12 02:14:10.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists +orderer.example.com | [024 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid +orderer.example.com | [025 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +orderer.example.com | [026 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +orderer.example.com | [027 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +orderer.example.com | [028 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +orderer.example.com | [029 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | [02a 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | [02b 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +orderer.example.com | [02c 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +orderer.example.com | [02d 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +orderer.example.com | [02e 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42018ab80)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [02f 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +orderer.example.com | [030 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x6b, 0xf9, 0x6f, 0xeb, 0x50, 0x68, 0x74, 0xd3, 0x2d, 0xcc, 0x8c, 0xac, 0xe, 0xd9, 0x99, 0xaf, 0x5f, 0x3e, 0xe5, 0x52, 0xe1, 0x2d, 0xad, 0x7e, 0x1b, 0x4b, 0x7b, 0xbe, 0x91, 0xa7, 0x39, 0x32} txOffsets= +orderer.example.com | txId=ce5eb80b7bb6cf50c571390070e9a63e015cf7076fa9dfa469debf1ce0812fd0 locPointer=offset=38, bytesLength=9111 +orderer.example.com | ] +orderer.example.com | [031 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9154], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | [032 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +orderer.example.com | [033 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer1.org1.example.com | [179 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished +peer1.org1.example.com | [17a 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org1.example.com | [17b 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [17c 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [1] +peer1.org1.example.com | [17d 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +peer1.org1.example.com | [17f 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer1.org1.example.com | [17e 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] +peer1.org1.example.com | [180 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [181 06-12 02:14:16.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [1] +peer1.org1.example.com | [182 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer1.org1.example.com | [183 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer1.org1.example.com | [184 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [518982d1-1ef2-4faa-9181-77dcc6368c6a] +peer1.org1.example.com | [185 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer1.org1.example.com | [186 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [518982d1-1ef2-4faa-9181-77dcc6368c6a] +peer1.org1.example.com | [187 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [188 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [189 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [18a 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [18b 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [18c 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [18d 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [18e 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [18f 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [190 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [191 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [192 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [07c 06-12 02:14:11.82 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 [] [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] peer1.org2.example.com:7051 } +peer1.org2.example.com | [07d 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started +peer1.org2.example.com | [07e 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer1.org2.example.com | [07f 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +peer1.org2.example.com | [080 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting +peer1.org2.example.com | [081 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=c32bec6a-e4e3-4e55-8f50-f16d203d46b0,syscc=true,proposal=0x0,canname=cscc:1.2.0) +peer1.org2.example.com | [082 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched +peer1.org2.example.com | [083 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer1.org2.example.com | [084 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 +peer1.org2.example.com | [085 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org2.example.com | [086 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=cscc:1.2.0 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [087 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock +peer1.org2.example.com | [088 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock +peer1.org2.example.com | [089 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 +peer1.org2.example.com | [08a 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) +peer1.org2.example.com | [08c 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 +peer1.org2.example.com | [08d 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org2.example.com | [08e 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 +peer1.org2.example.com | [08f 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [08b 06-12 02:14:11.82 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 +peer1.org2.example.com | [090 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [091 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [092 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org2.example.com | [093 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 +peer1.org2.example.com | [094 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED +peer1.org2.example.com | [096 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer1.org2.example.com | [097 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [095 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" +peer1.org2.example.com | [098 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" +peer1.org2.example.com | [099 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" +peer1.org2.example.com | [09b 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org2.example.com | [09c 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org2.example.com | [09d 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [09a 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer1.org2.example.com | [09e 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [09f 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c32bec6a]Received message INIT from peer +peer1.org2.example.com | [0a0 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c32bec6a] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [161 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [162 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org1.example.com | [163 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +peer0.org1.example.com | [164 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org1.example.com | [165 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [166 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [167 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +peer0.org1.example.com | [168 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] +peer0.org1.example.com | [169 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x81, 0xc5, 0xbd, 0x2f, 0xfe, 0x1f, 0xf2, 0xa7, 0x99, 0x11, 0xeb, 0x89, 0x2a, 0xfe, 0x78, 0x3e, 0xbf, 0xeb, 0x8f, 0x89, 0xbe, 0x14, 0xc1, 0x3d, 0xfa, 0x19, 0xe2, 0x63, 0x95, 0x7d, 0xd8, 0xa6} txOffsets= +peer0.org1.example.com | txId= locPointer=offset=38, bytesLength=12078 peer0.org1.example.com | ] -peer0.org1.example.com | [145 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -peer0.org1.example.com | [146 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [147 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org1.example.com | [148 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] -peer0.org1.example.com | [149 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] -peer0.org1.example.com | [14b 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] -peer0.org1.example.com | [14c 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} -peer0.org1.example.com | [14d 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] -peer0.org1.example.com | [14e 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage -peer0.org1.example.com | [14f 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished -peer0.org1.example.com | [14a 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer0.org1.example.com | [150 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer0.org1.example.com | [151 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] -peer0.org1.example.com | [152 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [153 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [154 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org1.example.com | [155 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [156 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] -peer0.org1.example.com | [157 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer0.org1.example.com | [158 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org1.example.com | [159 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [15a 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org1.example.com | [15b 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org1.example.com | [15c 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [a3f67830-c91a-41d2-8554-c6703ce1d8fd] -peer0.org1.example.com | [15d 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer0.org1.example.com | [15e 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [a3f67830-c91a-41d2-8554-c6703ce1d8fd] -peer0.org1.example.com | [15f 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [160 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [161 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [162 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [163 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [164 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [165 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [166 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [167 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [168 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [169 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [16a 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [16b 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [16c 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [16d 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [16e 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [16f 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [170 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [0d9 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [0da 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [0db 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [0dc 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [0dd 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [0de 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [0df 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [0e0 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [0e1 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [0e2 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [0e3 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [0e4 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [0e5 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [0e6 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [0e7 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [0e8 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [0e9 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [0ea 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [0eb 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [0ec 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [0ed 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [0ee 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [0ef 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [0f0 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [0f1 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [0f2 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [0f3 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer0.org2.example.com | [15b 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [157 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] -peer1.org1.example.com | [158 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer1.org1.example.com | [159 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer1.org1.example.com | [15a 05-31 05:21:35.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [15b 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer1.org1.example.com | [15c 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org1.example.com | [15d 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [0f73059c-c326-4f69-b2b4-38bf4de6b415] -peer1.org1.example.com | [15e 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer1.org1.example.com | [15f 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [0f73059c-c326-4f69-b2b4-38bf4de6b415] -peer1.org1.example.com | [160 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [161 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [162 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [163 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [164 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [165 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [166 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [167 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer1.org1.example.com | [168 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [169 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [16a 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [16b 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [16c 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [16d 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org1.example.com | [16e 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [16f 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [170 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [171 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [172 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [173 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org1.example.com | [174 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [175 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [176 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [177 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [178 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [179 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [17a 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [17b 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [17c 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [17d 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [17e 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [17f 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [180 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [181 05-31 05:21:35.08 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [182 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [183 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [184 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [185 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [186 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [187 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [188 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [189 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [18a 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [18b 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [18c 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [171 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [172 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [173 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [174 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [175 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [176 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org1.example.com | [177 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [178 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [179 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [17a 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [17b 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [17c 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org1.example.com | [17d 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [17e 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [17f 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [180 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [181 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [182 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [183 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [184 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [185 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [186 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [187 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [188 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [189 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [18a 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [18b 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [001 05-31 05:21:30.54 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP -peer1.org2.example.com | [002 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -peer1.org2.example.com | [003 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW -peer1.org2.example.com | [004 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW -peer1.org2.example.com | [005 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -peer1.org2.example.com | [006 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 -peer1.org2.example.com | [007 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 -peer1.org2.example.com | [008 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 -peer1.org2.example.com | [009 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore -peer1.org2.example.com | [00a 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input -peer1.org2.example.com | [00b 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string -peer1.org2.example.com | [00c 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[Default:SW SW:map[Hash:SHA2 Security:256 FileKeyStore:map[KeyStore:]]]] -peer1.org2.example.com | [00d 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done -peer1.org2.example.com | [00e 05-31 05:21:30.55 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] -peer1.org2.example.com | [00f 05-31 05:21:30.56 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts -peer1.org2.example.com | [010 05-31 05:21:30.56 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer1.org2.example.com-cert.pem -peer1.org2.example.com | [011 05-31 05:21:30.56 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts -peer1.org2.example.com | [012 05-31 05:21:30.57 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org2.example.com-cert.pem -peer1.org2.example.com | [013 05-31 05:21:30.58 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts -peer1.org2.example.com | [014 05-31 05:21:30.58 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org2.example.com-cert.pem -peer1.org2.example.com | [015 05-31 05:21:30.60 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts -peer1.org2.example.com | [016 05-31 05:21:30.60 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] -peer1.org2.example.com | [017 05-31 05:21:30.60 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts -peer1.org2.example.com | [018 05-31 05:21:30.61 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org2.example.com-cert.pem -peer1.org2.example.com | [019 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts -peer1.org2.example.com | [01a 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] -peer1.org2.example.com | [01b 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls -peer1.org2.example.com | [01c 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] -peer1.org2.example.com | [01d 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] -peer1.org2.example.com | [01e 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org2.example.com | [01f 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance -peer1.org2.example.com | [020 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP -peer1.org2.example.com | [021 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -peer1.org2.example.com | [022 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -peer1.org2.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer1.org2.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -peer1.org2.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -peer1.org2.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -peer1.org2.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -peer1.org2.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -peer1.org2.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -peer1.org2.example.com | CSJWn+U1 -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [023 05-31 05:21:30.63 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -peer1.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -peer1.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -peer1.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -peer1.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -peer1.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -peer1.org2.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -peer1.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -peer1.org2.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -peer1.org2.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -peer1.org2.example.com | 5Y80QLeEvYkoMMMbcA== -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [024 05-31 05:21:30.65 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [18d 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [18e 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [18f 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [190 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [191 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [192 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [193 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [194 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [195 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [196 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [197 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [198 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [199 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [19a 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [19b 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [19c 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [19d 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [19e 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [19f 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [1a0 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [1a1 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [1a2 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [1a3 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [1a4 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [1a5 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [1a6 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org1.example.com | [1a7 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [1a8 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [1a9 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [1aa 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [15c 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [15d 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [15e 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [15f 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [160 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [161 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [162 05-31 05:21:35.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -peer0.org2.example.com | [163 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] -peer0.org2.example.com | [164 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xc2, 0x1e, 0x64, 0xf2, 0xd9, 0x85, 0xf0, 0xf7, 0x6d, 0x68, 0x53, 0xa1, 0x96, 0x61, 0x4a, 0xbd, 0xd0, 0xa2, 0x78, 0x7b, 0x4d, 0xb0, 0x42, 0x49, 0x2a, 0xcc, 0x56, 0x48, 0xa7, 0x2, 0x5, 0x73} txOffsets= -peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer0.org2.example.com | ] -peer0.org2.example.com | [165 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -peer0.org2.example.com | [166 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [167 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer0.org2.example.com | [168 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] -peer0.org2.example.com | [169 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] -peer0.org2.example.com | [16a 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer0.org2.example.com | [16c 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer0.org2.example.com | [16d 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] -peer0.org2.example.com | [16b 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] -peer0.org2.example.com | [16e 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} -peer0.org2.example.com | [16f 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] -peer0.org2.example.com | [170 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage -peer0.org2.example.com | [171 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished -peer0.org2.example.com | [172 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [173 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [174 05-31 05:21:35.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org2.example.com | [175 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [176 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] -peer0.org2.example.com | [177 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer0.org2.example.com | [178 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer0.org2.example.com | [179 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [17a 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer0.org2.example.com | [17b 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer0.org2.example.com | [17c 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [d1764614-5efe-40af-b5c4-f9cb013f7c9d] -peer0.org2.example.com | [17d 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer0.org2.example.com | [17e 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [d1764614-5efe-40af-b5c4-f9cb013f7c9d] -peer0.org2.example.com | [17f 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [180 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [181 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [182 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [183 05-31 05:21:35.31 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [184 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [185 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [186 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [187 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [188 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [189 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [18a 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [18b 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [18c 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [18d 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [18e 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [18f 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [190 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org2.example.com | [191 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [192 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [193 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [194 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [195 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [196 05-31 05:21:35.32 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [197 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [198 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [199 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [19a 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [19b 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [19c 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer0.org2.example.com | [19d 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [19e 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [19f 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [1a0 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [1a1 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [1a2 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [1a3 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [1a4 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [1a5 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [1a6 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [1a7 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [1a8 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [1a9 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [1aa 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [1ab 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [1ac 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [1ad 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [1ae 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [1af 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [1b0 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [1ab 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [1ac 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [1ad 05-31 05:21:35.09 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [1ae 05-31 05:21:35.10 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [1af 05-31 05:21:35.10 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [1b0 05-31 05:21:35.10 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [1b1 05-31 05:21:35.10 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [1b2 05-31 05:21:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer1.org1.example.com | [1b3 05-31 05:21:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -peer1.org1.example.com | [1b4 05-31 05:21:35.10 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -peer1.org1.example.com | [1b5 05-31 05:21:35.11 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org1.example.com | [1b6 05-31 05:21:35.11 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain -peer1.org1.example.com | [1b7 05-31 05:21:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [1b8 05-31 05:21:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [4e5e671d-186d-4dd3-b341-ef7038b39242] -peer1.org1.example.com | [1b9 05-31 05:21:35.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=4e5e671d-186d-4dd3-b341-ef7038b39242,syscc=true,proposal=0x0,canname=cscc:1.2.0) -peer1.org1.example.com | [1ba 05-31 05:21:35.11 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1bb 05-31 05:21:35.11 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer1.org1.example.com | [1bc 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [1bd 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e5e671d]Received message INIT from peer -peer1.org1.example.com | [1bf 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1be 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4e5e671d] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [1c0 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [4e5e671d] Received INIT, initializing chaincode -peer1.org1.example.com | [1c1 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org1.example.com | [1c2 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e5e671d] Init get response status: 200 -peer1.org1.example.com | [1c3 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4e5e671d] Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1c4 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [4e5e671d] send state message COMPLETED -peer1.org1.example.com | [1c5 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [4e5e671d] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1c6 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [4e5e671d] notifying Txid:4e5e671d-186d-4dd3-b341-ef7038b39242, channelID:businesschannel -peer1.org1.example.com | [1c7 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [1c8 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org1.example.com | [1c9 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [4e5e671d-186d-4dd3-b341-ef7038b39242] -peer1.org1.example.com | [1ca 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [1cb 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [7c9d3a04-90a8-4ae4-b84d-caabf8987619] -peer1.org1.example.com | [1cc 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=7c9d3a04-90a8-4ae4-b84d-caabf8987619,syscc=true,proposal=0x0,canname=lscc:1.2.0) -peer1.org1.example.com | [1cd 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org1.example.com | [1ce 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [1cf 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c9d3a04]Received message INIT from peer -peer1.org1.example.com | [1d0 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7c9d3a04] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [1d1 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [7c9d3a04] Received INIT, initializing chaincode -peer1.org1.example.com | [1d2 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c9d3a04] Init get response status: 200 -peer1.org1.example.com | [1d3 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7c9d3a04] Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1d4 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [7c9d3a04] send state message COMPLETED -peer1.org1.example.com | [1d5 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [7c9d3a04] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1d6 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [7c9d3a04] notifying Txid:7c9d3a04-90a8-4ae4-b84d-caabf8987619, channelID:businesschannel -peer1.org1.example.com | [1d7 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [1d8 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org1.example.com | [1d9 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [7c9d3a04-90a8-4ae4-b84d-caabf8987619] -peer1.org1.example.com | [1da 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [1db 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [7dc2986b-8c29-4a3d-8465-f05b40d8d712] -peer1.org1.example.com | [1dc 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=7dc2986b-8c29-4a3d-8465-f05b40d8d712,syscc=true,proposal=0x0,canname=qscc:1.2.0) -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [0f4 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | MIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -peer1.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF -peer1.org2.example.com | 4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD -peer1.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue -peer1.org2.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs -peer1.org2.example.com | Sg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY -peer1.org2.example.com | 2EdFEzWgoRUHqwi9 -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [025 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [8523e71b24b91ec00799f1748e51b43b308d959e49ecdcfc1c7c6b58478a284c] at [/etc/hyperledger/fabric/msp/keystore/8523e71b24b91ec00799f1748e51b43b308d959e49ecdcfc1c7c6b58478a284c_sk]... -peer1.org2.example.com | [026 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | MIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer1.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -peer0.org2.example.com | [1b1 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [1b2 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [1b3 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [1b4 05-31 05:21:35.33 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [1b5 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [1b6 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [1b7 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [1b8 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [1b9 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [1ba 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [1bb 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [1bc 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [1bd 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [1be 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [1bf 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [1c0 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [1c1 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [1c2 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [1c3 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [1c4 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [1c5 05-31 05:21:35.34 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org2.example.com | [1c6 05-31 05:21:35.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [1c7 05-31 05:21:35.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [1c8 05-31 05:21:35.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [1c9 05-31 05:21:35.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [1ca 05-31 05:21:35.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [1cb 05-31 05:21:35.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [1cc 05-31 05:21:35.35 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [1cd 05-31 05:21:35.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [1ce 05-31 05:21:35.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [1cf 05-31 05:21:35.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [1d0 05-31 05:21:35.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [1d1 05-31 05:21:35.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer0.org2.example.com | [1d2 05-31 05:21:35.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -peer0.org2.example.com | [1d3 05-31 05:21:35.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -peer0.org2.example.com | [1d4 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org2.example.com | [1d5 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain -peer0.org2.example.com | [1d6 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [1d7 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [0040183f-24f5-4145-b0e8-3293dee2e6f1] -peer0.org2.example.com | [1d8 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=0040183f-24f5-4145-b0e8-3293dee2e6f1,syscc=true,proposal=0x0,canname=cscc:1.2.0) -peer0.org2.example.com | [1da 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer0.org2.example.com | [1d9 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [1db 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [1dc 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0040183f]Received message INIT from peer -peer0.org2.example.com | [1dd 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0040183f] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [1de 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [0040183f] Received INIT, initializing chaincode -peer0.org2.example.com | [1df 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org2.example.com | [1e0 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0040183f] Init get response status: 200 -peer0.org2.example.com | [1e1 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [1e2 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0040183f] Init succeeded. Sending COMPLETED -peer0.org2.example.com | [1e3 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [0040183f] send state message COMPLETED -peer0.org2.example.com | [1e4 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0040183f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -peer1.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw -peer1.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF -peer1.org2.example.com | 4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD -peer1.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue -peer1.org2.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs -peer1.org2.example.com | Sg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY -peer1.org2.example.com | 2EdFEzWgoRUHqwi9 -peer1.org2.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [027 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:27 +0000 UTC -peer1.org2.example.com | [028 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -peer1.org2.example.com | [029 05-31 05:21:30.66 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 | [02a 05-31 05:21:30.66 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 | [02b 05-31 05:21:30.66 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 | [02c 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -peer1.org2.example.com | [02d 05-31 05:21:30.66 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 | [02e 05-31 05:21:30.66 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 | [02f 05-31 05:21:30.66 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 | [030 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' -peer1.org2.example.com | [031 05-31 05:21:30.66 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 | [032 05-31 05:21:30.66 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 | [033 05-31 05:21:30.66 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 | [034 05-31 05:21:30.66 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 | [035 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: -peer1.org2.example.com | Version: 1.2.0 -peer1.org2.example.com | Go version: go1.10.2 -peer1.org2.example.com | OS/Arch: linux/amd64 -peer1.org2.example.com | Experimental features: true -peer1.org2.example.com | Chaincode: -peer1.org2.example.com | Base Image Version: 0.4.8 -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 | [036 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -peer1.org2.example.com | [037 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -peer1.org2.example.com | [038 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] -peer1.org2.example.com | [039 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist -peer1.org2.example.com | [03a 05-31 05:21:30.66 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists -peer1.org2.example.com | [03b 05-31 05:21:30.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -peer0.org1.example.com | [18c 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [18d 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [18e 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [18f 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [190 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [191 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [192 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [193 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [194 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [195 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [196 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [197 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [198 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [199 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [19a 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [19b 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [19c 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [19d 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [19e 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [19f 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [1a0 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [1a1 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [1a2 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [1a3 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [1a4 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [1a5 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org1.example.com | [1a6 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [1a7 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [1a8 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [1a9 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [1e5 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [0040183f] notifying Txid:0040183f-24f5-4145-b0e8-3293dee2e6f1, channelID:businesschannel -peer0.org2.example.com | [1e6 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [1e7 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org2.example.com | [1e8 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [0040183f-24f5-4145-b0e8-3293dee2e6f1] -peer0.org2.example.com | [1e9 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [1ea 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [12f1aafb-8f41-41ee-88eb-5e94b3174fb2] -peer0.org2.example.com | [1eb 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=12f1aafb-8f41-41ee-88eb-5e94b3174fb2,syscc=true,proposal=0x0,canname=lscc:1.2.0) -peer0.org2.example.com | [1ec 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org2.example.com | [1ed 05-31 05:21:35.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [1ee 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12f1aafb]Received message INIT from peer -peer0.org2.example.com | [1ef 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [12f1aafb] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [1f0 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [12f1aafb] Received INIT, initializing chaincode -peer0.org2.example.com | [1f1 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12f1aafb] Init get response status: 200 -peer0.org2.example.com | [1f2 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12f1aafb] Init succeeded. Sending COMPLETED -peer0.org2.example.com | [1f3 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [12f1aafb] send state message COMPLETED -peer0.org2.example.com | [1f4 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [12f1aafb] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [1f5 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [12f1aafb] notifying Txid:12f1aafb-8f41-41ee-88eb-5e94b3174fb2, channelID:businesschannel -peer0.org2.example.com | [1f6 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [1f7 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org2.example.com | [1f8 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [12f1aafb-8f41-41ee-88eb-5e94b3174fb2] -peer0.org2.example.com | [1f9 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [1fa 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a5b11567-1a12-4615-b7d1-94df387e8b29] -peer0.org2.example.com | [1fb 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=a5b11567-1a12-4615-b7d1-94df387e8b29,syscc=true,proposal=0x0,canname=qscc:1.2.0) -peer0.org2.example.com | [1fc 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer0.org2.example.com | [1fd 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [1fe 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5b11567]Received message INIT from peer -peer0.org2.example.com | [1ff 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5b11567] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org2.example.com | [200 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a5b11567] Received INIT, initializing chaincode -peer0.org2.example.com | [201 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer0.org2.example.com | [202 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5b11567] Init get response status: 200 -peer0.org2.example.com | [203 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5b11567] Init succeeded. Sending COMPLETED -peer0.org2.example.com | [204 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a5b11567] send state message COMPLETED -peer0.org2.example.com | [205 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a5b11567] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [206 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a5b11567] notifying Txid:a5b11567-1a12-4615-b7d1-94df387e8b29, channelID:businesschannel -peer0.org2.example.com | [207 05-31 05:21:35.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [208 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org2.example.com | [209 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a5b11567-1a12-4615-b7d1-94df387e8b29] -peer0.org2.example.com | [20a 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [fd5155ef-ea05-470b-9428-f4fbfc27d3f2] -peer0.org2.example.com | [20b 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] -peer0.org2.example.com | [20c 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [fd5155ef-ea05-470b-9428-f4fbfc27d3f2] -peer0.org2.example.com | [20d 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -peer0.org2.example.com | [20e 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [20f 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [210 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer0.org2.example.com | [211 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [212 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer0.org2.example.com | [213 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer0.org2.example.com | [214 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ed574398] Transaction completed. Sending COMPLETED -peer0.org2.example.com | [215 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [ed574398] send state message COMPLETED -peer0.org2.example.com | [216 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [ed574398] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [217 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [ed574398] notifying Txid:ed5743981cc7c29c281719a06f71453e874901400e9f5cb5656f3e2e765e0bbc, channelID: -peer0.org2.example.com | [218 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [219 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][ed5743981cc7c29c281719a06f71453e874901400e9f5cb5656f3e2e765e0bbc] Exit -peer0.org2.example.com | [21a 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][ed574398] Exit -peer1.org2.example.com | [03c 05-31 05:21:30.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -peer1.org2.example.com | [03d 05-31 05:21:30.68 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -peer1.org2.example.com | [03e 05-31 05:21:30.69 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -peer1.org2.example.com | [03f 05-31 05:21:30.69 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -peer1.org2.example.com | [040 05-31 05:21:30.69 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -peer1.org1.example.com | [1dd 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer1.org1.example.com | [1de 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [1df 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7dc2986b]Received message INIT from peer -peer1.org1.example.com | [1e0 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7dc2986b] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org1.example.com | [1e1 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [7dc2986b] Received INIT, initializing chaincode -peer1.org1.example.com | [1e2 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org1.example.com | [1e3 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7dc2986b] Init get response status: 200 -peer1.org1.example.com | [1e4 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7dc2986b] Init succeeded. Sending COMPLETED -peer1.org1.example.com | [1e5 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [7dc2986b] send state message COMPLETED -peer1.org1.example.com | [1e6 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [7dc2986b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1e7 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [7dc2986b] notifying Txid:7dc2986b-8c29-4a3d-8465-f05b40d8d712, channelID:businesschannel -peer1.org1.example.com | [1e8 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [1e9 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org1.example.com | [1ea 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [7dc2986b-8c29-4a3d-8465-f05b40d8d712] -peer1.org1.example.com | [1eb 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [904e4792-dfc2-424d-8905-d8cf99a87500] -peer1.org1.example.com | [1ec 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] -peer1.org1.example.com | [1ed 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [904e4792-dfc2-424d-8905-d8cf99a87500] -peer1.org1.example.com | [1ee 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -peer1.org1.example.com | [1ef 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [1f0 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [1f1 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer1.org1.example.com | [1f2 05-31 05:21:35.12 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [1f3 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer1.org1.example.com | [1f4 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer1.org1.example.com | [1f5 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [855e77b1] Transaction completed. Sending COMPLETED -peer1.org1.example.com | [1f6 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [855e77b1] send state message COMPLETED -peer1.org1.example.com | [1f7 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [855e77b1] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1f8 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [855e77b1] notifying Txid:855e77b197e172d1281fad708a7604c5fbace6e089de4506a591d4e033af87bf, channelID: -peer1.org1.example.com | [1f9 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [1fa 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][855e77b197e172d1281fad708a7604c5fbace6e089de4506a591d4e033af87bf] Exit -peer1.org1.example.com | [1fb 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][855e77b1] Exit -peer1.org1.example.com | [1fc 05-31 05:21:35.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55290 -peer1.org1.example.com | [1fd 05-31 05:21:36.12 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting, peers found 0 -peer1.org1.example.com | [1fe 05-31 05:21:36.12 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1ff 05-31 05:21:36.12 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [200 05-31 05:21:36.12 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [201 05-31 05:21:36.12 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [202 05-31 05:21:36.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [203 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [204 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.beLeader -> INFO [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Becoming a leader -peer1.org1.example.com | [205 05-31 05:21:41.12 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 | [206 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [207 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [208 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [209 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer1.org1.example.com | [20a 05-31 05:21:41.12 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 | [20b 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer1.org1.example.com | [20c 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -peer1.org1.example.com | [20d 05-31 05:21:41.12 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer1.org1.example.com | [20e 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer1.org1.example.com | [20f 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer1.org1.example.com | [210 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [211 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [212 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42051ba00 env 0xc42055b170 txn 0 -peer1.org1.example.com | [213 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42055b170 -peer1.org1.example.com | [214 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -peer0.org1.example.com | [1aa 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [1ab 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [1ac 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [1ad 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [1ae 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [1af 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [1b0 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [1b1 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer0.org1.example.com | [1b2 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -peer0.org1.example.com | [1b3 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -peer0.org1.example.com | [1b4 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer0.org1.example.com | [1b5 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain -peer0.org1.example.com | [1b6 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [1b7 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a7c56643-66c5-49f1-9e8c-9816e020a405] -peer0.org1.example.com | [1b8 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=a7c56643-66c5-49f1-9e8c-9816e020a405,syscc=true,proposal=0x0,canname=cscc:1.2.0) -peer0.org1.example.com | [1b9 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer0.org1.example.com | [1ba 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [1bb 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7c56643]Received message INIT from peer -peer0.org1.example.com | [1bc 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7c56643] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [1bd 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a7c56643] Received INIT, initializing chaincode -peer0.org1.example.com | [1be 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [1bf 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer0.org1.example.com | [1c0 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7c56643] Init get response status: 200 -peer0.org1.example.com | [1c1 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7c56643] Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1c2 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a7c56643] send state message COMPLETED -peer0.org1.example.com | [1c3 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a7c56643] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1c5 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a7c56643] notifying Txid:a7c56643-66c5-49f1-9e8c-9816e020a405, channelID:businesschannel -peer0.org1.example.com | [1c4 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [1c6 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [1c7 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer0.org1.example.com | [1c8 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a7c56643-66c5-49f1-9e8c-9816e020a405] -peer0.org1.example.com | [1c9 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [1ca 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8bb8b044-c0aa-4124-9017-f042cfa39122] -peer0.org1.example.com | [1cb 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=8bb8b044-c0aa-4124-9017-f042cfa39122,syscc=true,proposal=0x0,canname=lscc:1.2.0) -peer0.org1.example.com | [1cc 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [1cd 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [1ce 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bb8b044]Received message INIT from peer -peer0.org1.example.com | [1cf 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bb8b044] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [1d0 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8bb8b044] Received INIT, initializing chaincode -peer0.org1.example.com | [1d1 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bb8b044] Init get response status: 200 -peer0.org1.example.com | [1d2 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bb8b044] Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1d3 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8bb8b044] send state message COMPLETED -peer0.org1.example.com | [1d4 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8bb8b044] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1d5 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8bb8b044] notifying Txid:8bb8b044-c0aa-4124-9017-f042cfa39122, channelID:businesschannel -peer0.org1.example.com | [1d6 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [1d7 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer0.org1.example.com | [1d8 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8bb8b044-c0aa-4124-9017-f042cfa39122] -peer0.org1.example.com | [1d9 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [1da 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [0215bd07-f908-40e8-8cdf-b59ae3929c6a] -peer0.org1.example.com | [1db 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=0215bd07-f908-40e8-8cdf-b59ae3929c6a,syscc=true,proposal=0x0,canname=qscc:1.2.0) -peer0.org1.example.com | [1dc 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer0.org1.example.com | [1dd 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [1de 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0215bd07]Received message INIT from peer -peer0.org1.example.com | [1df 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0215bd07] Handling ChaincodeMessage of type: INIT(state:ready) -peer0.org1.example.com | [1e0 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [0215bd07] Received INIT, initializing chaincode -peer0.org1.example.com | [1e1 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [041 05-31 05:21:30.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -peer1.org2.example.com | [042 05-31 05:21:30.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -peer1.org2.example.com | [043 05-31 05:21:30.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -peer1.org2.example.com | [044 05-31 05:21:30.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -peer1.org2.example.com | [045 05-31 05:21:30.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.org2.example.com | [046 05-31 05:21:30.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.org2.example.com | [047 05-31 05:21:30.71 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 | [048 05-31 05:21:30.71 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 | [049 05-31 05:21:30.74 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/bookkeeper/] -peer1.org2.example.com | [04a 05-31 05:21:30.74 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/bookkeeper/] does not exist -peer1.org2.example.com | [04b 05-31 05:21:30.74 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/bookkeeper/] exists -peer1.org2.example.com | [04c 05-31 05:21:30.75 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory -peer1.org2.example.com | [04d 05-31 05:21:30.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] -peer1.org2.example.com | [04e 05-31 05:21:30.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist -peer1.org2.example.com | [04f 05-31 05:21:30.75 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists -peer1.org2.example.com | [050 05-31 05:21:30.76 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 | [051 05-31 05:21:30.76 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 | [052 05-31 05:21:30.76 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 | [053 05-31 05:21:30.76 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 | [054 05-31 05:21:30.76 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.2:7051 -peer1.org2.example.com | [055 05-31 05:21:30.76 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer1.org2.example.com:7051 -peer1.org2.example.com | [056 05-31 05:21:30.76 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.2:7051 -peer1.org2.example.com | [057 05-31 05:21:30.76 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer1.org2.example.com:7051 -peer1.org2.example.com | [058 05-31 05:21:30.77 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -peer1.org2.example.com | [059 05-31 05:21:30.78 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 | [05a 05-31 05:21:30.78 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 | [05b 05-31 05:21:30.78 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 | [05c 05-31 05:21:30.78 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 | [05d 05-31 05:21:30.78 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -peer1.org2.example.com | [05e 05-31 05:21:30.78 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -peer1.org2.example.com | [05f 05-31 05:21:30.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer1.org2.example.com -peer1.org2.example.com | [060 05-31 05:21:30.78 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer1.org2.example.com:7052 -peer1.org2.example.com | [061 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 -peer1.org2.example.com | [062 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -peer1.org2.example.com | [063 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 -peer1.org2.example.com | [064 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -peer1.org2.example.com | [065 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 -peer1.org2.example.com | [066 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -peer1.org2.example.com | [067 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -peer1.org2.example.com | [068 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -peer1.org2.example.com | [069 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] -peer1.org2.example.com | [06a 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] -peer1.org2.example.com | [06b 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -peer1.org2.example.com | [06c 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -peer1.org2.example.com | [06d 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers -peer1.org2.example.com | [06e 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc -peer1.org2.example.com | [06f 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -peer1.org2.example.com | [070 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement -peer1.org2.example.com | [071 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer1.org2.example.com | [072 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to -peer1.org2.example.com | [073 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators -peer1.org2.example.com | [074 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc -peer1.org2.example.com | [075 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -peer1.org2.example.com | [076 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to -peer1.org2.example.com | [077 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -peer1.org2.example.com | [078 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation -peer1.org2.example.com | [079 05-31 05:21:30.79 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]] decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]] validators:map[vscc:map[library: name:DefaultValidation]]]] -peer1.org2.example.com | [07a 05-31 05:21:30.80 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 [] [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] peer1.org2.example.com:7051 } -peer0.org2.example.com | [21b 05-31 05:21:35.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49012 -peer0.org2.example.com | [21c 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [21d 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [21e 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21f 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [220 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [222 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -orderer.example.com | [0f5 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [0f6 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [0f7 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [0f8 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [0f9 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [0fa 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [0fb 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [0fc 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [0fd 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [0fe 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [0ff 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [100 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [101 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [102 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [103 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [104 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [105 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -orderer.example.com | [106 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -orderer.example.com | [107 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [108 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -orderer.example.com | [109 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [10a 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -orderer.example.com | [10b 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [10c 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [10d 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [10e 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [10f 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [110 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [111 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [112 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [113 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [114 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [115 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [116 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [117 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [118 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [119 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [11a 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [11b 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [11c 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [11d 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [11e 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [11f 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [120 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [07b 05-31 05:21:30.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [07c 05-31 05:21:30.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=92b39c1a-c6ea-4c8d-9c1b-f6e6871d71ca,syscc=true,proposal=0x0,canname=cscc:1.2.0) -peer1.org2.example.com | [07d 05-31 05:21:30.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched -peer1.org2.example.com | [07e 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [07f 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 -peer1.org2.example.com | [080 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [081 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [082 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=cscc:1.2.0 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [083 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock -peer1.org2.example.com | [084 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock -peer1.org2.example.com | [085 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 -peer1.org2.example.com | [086 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) -peer1.org2.example.com | [087 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer1.org2.example.com:7051 started -peer1.org2.example.com | [088 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -peer1.org2.example.com | [089 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Exiting -peer1.org2.example.com | [08a 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -peer1.org2.example.com | [08b 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 -peer1.org2.example.com | [08c 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [08d 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 -peer1.org2.example.com | [08e 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [08f 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 -peer1.org2.example.com | [090 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [091 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [092 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer1.org2.example.com | [093 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 -peer1.org2.example.com | [094 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED -peer1.org2.example.com | [095 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" -peer1.org2.example.com | [096 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" -peer1.org2.example.com | [097 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer1.org2.example.com | [098 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [099 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer1.org2.example.com | [09a 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [09b 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" -peer1.org2.example.com | [09c 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer1.org2.example.com | [09d 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer1.org2.example.com | [09e 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [09f 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92b39c1a]Received message INIT from peer -peer1.org2.example.com | [0a0 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92b39c1a] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [0a1 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [92b39c1a] Received INIT, initializing chaincode -peer1.org2.example.com | [0a2 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [0a3 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92b39c1a] Init get response status: 200 -peer1.org2.example.com | [0a4 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92b39c1a] Init succeeded. Sending COMPLETED -peer1.org2.example.com | [0a5 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [92b39c1a] send state message COMPLETED -peer1.org2.example.com | [0a6 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [92b39c1a] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [0a7 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [92b39c1a] notifying Txid:92b39c1a-c6ea-4c8d-9c1b-f6e6871d71ca, channelID: -peer1.org2.example.com | [0a8 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [0a9 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [0aa 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=37540145-ba02-476e-93b2-0775c43f44ff,syscc=true,proposal=0x0,canname=lscc:1.2.0) -peer1.org2.example.com | [0ab 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched -peer1.org2.example.com | [0ac 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [0ad 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 -peer1.org2.example.com | [0ae 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [0af 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=lscc:1.2.0 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [0b0 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock -peer1.org2.example.com | [0b1 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock -peer1.org2.example.com | [0b2 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 -peer1.org2.example.com | [0b3 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) -peer1.org2.example.com | [0b4 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 -peer1.org2.example.com | [0b5 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [0b6 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 -peer1.org2.example.com | [0b7 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [0b8 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 -peer1.org2.example.com | [0b9 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0ba 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [0bb 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org1.example.com | [1e2 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0215bd07] Init get response status: 200 -peer0.org1.example.com | [1e3 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0215bd07] Init succeeded. Sending COMPLETED -peer0.org1.example.com | [1e4 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [0215bd07] send state message COMPLETED -peer0.org1.example.com | [1e5 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0215bd07] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1e6 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [0215bd07] notifying Txid:0215bd07-f908-40e8-8cdf-b59ae3929c6a, channelID:businesschannel -peer0.org1.example.com | [1e7 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [1e8 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer0.org1.example.com | [1e9 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [0215bd07-f908-40e8-8cdf-b59ae3929c6a] -peer0.org1.example.com | [1ea 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [9fbac08c-0497-4039-87c8-ce95a448d9d1] -peer0.org1.example.com | [1eb 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] -peer0.org1.example.com | [1ec 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [9fbac08c-0497-4039-87c8-ce95a448d9d1] -peer0.org1.example.com | [1ed 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -peer0.org1.example.com | [1ee 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [1ef 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [1f0 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer0.org1.example.com | [1f1 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [1f2 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer0.org1.example.com | [1f3 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer0.org1.example.com | [1f4 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c9de6a52] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [1f5 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [c9de6a52] send state message COMPLETED -peer0.org1.example.com | [1f6 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c9de6a52] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1f7 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c9de6a52] notifying Txid:c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a, channelID: -peer0.org1.example.com | [1f8 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [1f9 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a] Exit -peer0.org1.example.com | [1fa 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][c9de6a52] Exit -peer0.org1.example.com | [1fb 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55302 -peer0.org1.example.com | [1fc 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting, peers found 0 -peer0.org1.example.com | [1fd 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [1fe 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [1ff 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [200 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [201 05-31 05:21:36.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [202 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [203 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.beLeader -> INFO [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Becoming a leader -peer0.org1.example.com | [204 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -peer0.org1.example.com | [205 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [206 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true -peer0.org1.example.com | [207 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [208 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer0.org1.example.com | [209 05-31 05:21:40.93 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 | [20a 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org1.example.com | [20b 05-31 05:21:40.93 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 | [20c 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer0.org1.example.com | [20d 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -peer0.org1.example.com | [20e 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -peer0.org1.example.com | [20f 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [210 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [212 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc420221960 env 0xc42210ef90 txn 0 -peer0.org1.example.com | [211 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer0.org1.example.com | [214 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer0.org1.example.com | [213 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42210ef90 -peer0.org2.example.com | [223 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [224 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [225 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [226 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [227 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [228 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [229 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [22a 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [221 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22b 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [22c 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [215 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [216 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [217 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer1.org1.example.com | [218 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [219 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [21a 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42028e000, header channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -peer1.org1.example.com | [21b 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org1.example.com | [21d 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [21e 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [21f 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [220 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [221 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [222 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [223 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [224 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [225 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [226 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [227 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [228 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [229 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [22a 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [22b 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [22c 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [22d 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer1.org1.example.com | [21c 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -peer1.org1.example.com | [22e 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [22f 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [230 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [231 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [232 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [215 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -peer0.org1.example.com | [216 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [217 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [218 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer0.org1.example.com | [219 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [21a 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [21b 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4221e3000, header channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -peer0.org1.example.com | [21c 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org1.example.com | [21d 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [21e 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [21f 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [220 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [221 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [222 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [223 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [224 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [225 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [226 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [227 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [228 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [229 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [22a 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [22b 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [22c 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [22d 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer0.org1.example.com | [22e 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [22f 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [230 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [231 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [232 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [233 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [234 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [235 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [236 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [237 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [238 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [239 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [23a 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [23b 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [23c 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [23d 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [23e 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [23f 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [240 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [241 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [242 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [243 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [244 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [245 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [246 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [247 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [248 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [249 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org1.example.com | [24a 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [24b 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [24c 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [24d 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [24e 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [24f 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [0bc 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 -peer1.org2.example.com | [0bd 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED -peer1.org2.example.com | [0be 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" -peer1.org2.example.com | [0bf 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" -peer1.org2.example.com | [0c0 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer1.org2.example.com | [0c1 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0c2 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer1.org2.example.com | [0c3 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [0c4 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" -peer1.org2.example.com | [0c5 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer1.org2.example.com | [0c6 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org2.example.com | [0c7 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [0c8 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [37540145]Received message INIT from peer -peer1.org2.example.com | [0c9 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [37540145] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [0ca 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [37540145] Received INIT, initializing chaincode -peer1.org2.example.com | [0cb 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [37540145] Init get response status: 200 -peer1.org2.example.com | [0cc 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [37540145] Init succeeded. Sending COMPLETED -peer1.org2.example.com | [0cd 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [37540145] send state message COMPLETED -peer1.org2.example.com | [0ce 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [37540145] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [0cf 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [37540145] notifying Txid:37540145-ba02-476e-93b2-0775c43f44ff, channelID: -peer1.org2.example.com | [0d0 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [0d1 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [0d2 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=2e4f303d-ac12-4ef9-9c90-17eaebcccb10,syscc=true,proposal=0x0,canname=qscc:1.2.0) -peer1.org2.example.com | [0d3 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched -peer1.org2.example.com | [0d4 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [0d5 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 -peer1.org2.example.com | [0d6 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [0d7 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=qscc:1.2.0 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [0d8 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock -peer1.org2.example.com | [0d9 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock -peer1.org2.example.com | [0da 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 -peer1.org2.example.com | [0db 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) -peer1.org2.example.com | [0dc 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 -peer1.org2.example.com | [0dd 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 -peer1.org2.example.com | [0de 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [0df 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] -peer1.org2.example.com | [0e0 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 -peer1.org2.example.com | [0e1 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -peer1.org2.example.com | [0e2 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [0e3 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer1.org2.example.com | [0e4 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 -peer1.org2.example.com | [0e5 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED -peer1.org2.example.com | [0e6 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" -peer1.org2.example.com | [0e7 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" -peer1.org2.example.com | [0e8 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -peer1.org2.example.com | [0e9 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -peer1.org2.example.com | [0ea 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -peer1.org2.example.com | [0eb 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -peer1.org2.example.com | [0ec 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" -peer1.org2.example.com | [0ed 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -orderer.example.com | [121 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [122 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [123 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [124 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [125 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [126 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [127 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -orderer.example.com | [128 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [129 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [12a 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [12b 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [12c 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [12d 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [12e 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [12f 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [130 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [131 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [132 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [133 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [134 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [135 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [136 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [137 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [138 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [139 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [13a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [13b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [13c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [13d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [13e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -orderer.example.com | [13f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -orderer.example.com | [140 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -orderer.example.com | [141 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -orderer.example.com | [142 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [143 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -orderer.example.com | [144 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -orderer.example.com | [145 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [146 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [147 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [148 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [149 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [14a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [14b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [14c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [14d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -orderer.example.com | [14e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [14f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -orderer.example.com | [150 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [151 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [152 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eaf0 gate 1527744094183799900 evaluation starts -orderer.example.com | [153 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eaf0 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [233 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [234 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [235 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [236 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [237 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [238 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [239 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [23a 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -peer1.org1.example.com | [23b 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [23c 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [23d 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [23e 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [23f 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [240 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [241 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [242 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [243 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [244 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [245 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [246 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [247 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [248 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [249 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [24a 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer1.org1.example.com | [24b 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [24c 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [24d 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [24e 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [24f 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [250 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [22d 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1077 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [22e 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1077 bytes, Signature: 0 bytes -peer0.org2.example.com | [22f 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [230 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [231 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [232 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer0.org2.example.com | [233 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [234 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer0.org2.example.com | [235 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [236 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [237 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [238 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [250 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [251 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [252 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [253 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [254 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [255 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [256 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [257 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [258 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [259 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [25a 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [25b 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [25c 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [25d 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [25e 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [25f 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [260 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [261 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [262 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [263 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [264 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [265 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [266 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [267 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [268 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [269 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [26a 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [26b 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [26c 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [26d 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [26e 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [26f 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [270 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [271 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [272 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [273 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [274 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [275 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [276 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [277 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [278 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [279 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [27a 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [27b 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [27c 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [27d 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [27e 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [27f 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [280 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [281 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [282 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [283 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [284 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [285 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [286 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [287 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [288 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [289 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [28a 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [28b 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [28c 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [28d 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [28e 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [28f 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org1.example.com | [290 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [291 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [292 05-31 05:21:40.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [293 05-31 05:21:40.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [294 05-31 05:21:40.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [295 05-31 05:21:40.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [296 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [297 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc420221960 env 0xc42210ef90 txn 0 -peer0.org1.example.com | [298 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [299 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [29a 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [29b 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -peer0.org1.example.com | [29c 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [29d 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -peer0.org1.example.com | [29e 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [29f 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org1.example.com | [2a0 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org1.example.com | [2a1 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org1.example.com | [2a2 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [2a3 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org1.example.com | [2a4 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [0ee 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer1.org2.example.com | [0ef 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [0f0 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e4f303d]Received message INIT from peer -peer1.org2.example.com | [0f1 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2e4f303d] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [0f2 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2e4f303d] Received INIT, initializing chaincode -peer1.org2.example.com | [0f3 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [0f4 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e4f303d] Init get response status: 200 -peer1.org2.example.com | [0f5 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2e4f303d] Init succeeded. Sending COMPLETED -peer1.org2.example.com | [0f6 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [2e4f303d] send state message COMPLETED -peer1.org2.example.com | [0f7 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2e4f303d] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [0f8 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2e4f303d] notifying Txid:2e4f303d-ac12-4ef9-9c90-17eaebcccb10, channelID: -peer1.org2.example.com | [0f9 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [0fa 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org2.example.com | [0fb 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes -peer1.org2.example.com | [0fc 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] -peer1.org2.example.com | [0fd 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -peer1.org2.example.com | [0fe 05-31 05:21:30.81 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated -peer1.org2.example.com | [0ff 05-31 05:21:30.81 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 | [100 05-31 05:21:30.81 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] -peer1.org2.example.com | [101 05-31 05:21:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer1.org2.example.com | [102 05-31 05:21:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer1.org2.example.com | [103 05-31 05:21:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer1.org2.example.com | [104 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:13113314447645898176 tag:EMPTY mem_req: > > , Envelope: 1086 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [105 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:13113314447645898176 tag:EMPTY mem_req: > > , Envelope: 1086 bytes, Signature: 0 bytes -peer1.org2.example.com | [106 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [107 05-31 05:21:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.5:7051 -peer1.org2.example.com | [108 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer1.org2.example.com | [109 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer1.org2.example.com | [10a 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer1.org2.example.com | [10b 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [10c 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 13113314447645898176, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2159 bytes, Signature: 0 bytes -peer1.org2.example.com | [10d 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 13113314447645898176, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2159 bytes, Signature: 0 bytes -peer1.org2.example.com | [10f 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 13113314447645898176, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2159 bytes, Signature: 0 bytes -peer1.org2.example.com | [110 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -orderer.example.com | [154 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eaf0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [155 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eaf0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [156 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eaf0 principal evaluation fails -orderer.example.com | [157 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eaf0 gate 1527744094183799900 evaluation fails -orderer.example.com | [158 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [159 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [23a 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes -peer0.org2.example.com | [239 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [23b 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes -peer0.org2.example.com | [23c 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [23d 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [23e 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [23f 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [240 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [241 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [242 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [243 05-31 05:21:36.37 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting, peers found 1 -peer0.org2.example.com | [244 05-31 05:21:36.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [245 05-31 05:21:36.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [246 05-31 05:21:36.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [247 05-31 05:21:36.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer1.org2.example.com | [111 05-31 05:21:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [112 05-31 05:21:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [113 05-31 05:21:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [114 05-31 05:21:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]}, deadMembers={[]} -peer1.org2.example.com | [115 05-31 05:21:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [10e 05-31 05:21:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [116 05-31 05:21:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer1.org2.example.com | [117 05-31 05:21:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [118 05-31 05:21:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [119 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [11a 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [11b 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [11c 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [11d 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [11e 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [11f 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a5 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org1.example.com | [2a6 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [2a7 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [2a8 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -peer0.org1.example.com | [2a9 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [2aa 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [2ab 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [2ac 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -peer0.org1.example.com | [2ad 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -peer0.org1.example.com | [2ae 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xb, 0x15, 0x74, 0xf2, 0x5c, 0x99, 0x28, 0x95, 0x1, 0xd7, 0x8a, 0x82, 0x2e, 0x8c, 0x80, 0x51, 0xbe, 0xff, 0x92, 0xb1, 0xb5, 0x58, 0x12, 0xa5, 0x7c, 0x17, 0x9a, 0x2a, 0xb5, 0x56, 0x83, 0x2f} txOffsets= +peer0.org1.example.com | [16a 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx ID: [] to index +peer0.org1.example.com | [16b 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [16c 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12122], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org1.example.com | [16d 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] +peer0.org1.example.com | [16e 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] +peer0.org1.example.com | [16f 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +peer0.org1.example.com | [171 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] +peer0.org1.example.com | [172 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} +peer0.org1.example.com | [173 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] +peer0.org1.example.com | [170 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +peer0.org1.example.com | [174 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage +peer0.org1.example.com | [176 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished +peer0.org1.example.com | [175 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [0] +peer0.org1.example.com | [177 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [178 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] +peer0.org1.example.com | [179 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [0] +peer0.org1.example.com | [17a 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org1.example.com | [193 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [194 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [195 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [196 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [197 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [198 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org1.example.com | [199 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [19a 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [19b 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [19c 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [19d 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [19e 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org1.example.com | [19f 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [1a0 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [1a1 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [1a2 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [1a3 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [1a4 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [1a5 06-12 02:14:16.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [1a6 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [1a7 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [1a8 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [1a9 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [1aa 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [1ab 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1ac 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [01f 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [020 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP +peer0.org2.example.com | [021 06-12 02:14:12.29 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org2.example.com | [022 06-12 02:14:12.30 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer0.org2.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +peer0.org2.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org2.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +peer0.org2.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +peer0.org2.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +peer0.org2.example.com | CSJWn+U1 +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [023 06-12 02:14:12.30 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +peer0.org2.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +peer0.org2.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +peer0.org2.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +peer0.org2.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +peer0.org2.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +peer0.org2.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +peer0.org2.example.com | 5Y80QLeEvYkoMMMbcA== +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [024 06-12 02:14:12.32 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer0.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj +peer0.org2.example.com | SPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD +peer0.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue +peer0.org2.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l +peer0.org2.example.com | XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S +peer0.org2.example.com | Qh80aTnAegSTSqmA1w== +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [025 06-12 02:14:12.32 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [9ba4b3ec88c21e2e2bd2fcc3db2e64e34bd0c3510dacc15b030e106d43870d35] at [/etc/hyperledger/fabric/msp/keystore/9ba4b3ec88c21e2e2bd2fcc3db2e64e34bd0c3510dacc15b030e106d43870d35_sk]... +peer0.org2.example.com | [026 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer0.org2.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj +peer0.org2.example.com | SPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD +peer0.org2.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue +peer0.org2.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l +peer0.org2.example.com | XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S +peer0.org2.example.com | Qh80aTnAegSTSqmA1w== +peer0.org2.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [027 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:27 +0000 UTC +peer0.org2.example.com | [028 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [029 06-12 02:14:12.33 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 | [02a 06-12 02:14:12.33 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 | [02b 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +peer0.org2.example.com | [02c 06-12 02:14:12.33 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 | [02d 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/service' logger enabled for log level 'WARNING' +peer0.org2.example.com | [02e 06-12 02:14:12.33 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 | [02f 06-12 02:14:12.33 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 | [030 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' +peer0.org2.example.com | [031 06-12 02:14:12.33 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 | [032 06-12 02:14:12.33 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 | [033 06-12 02:14:12.33 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 | [034 06-12 02:14:12.33 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 | [035 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +peer0.org2.example.com | Version: 1.2.0 +peer0.org2.example.com | Go version: go1.10.2 +peer0.org2.example.com | OS/Arch: linux/amd64 +peer0.org2.example.com | Experimental features: true +peer0.org2.example.com | Chaincode: +peer0.org2.example.com | Base Image Version: 0.4.8 +peer0.org2.example.com | Base Docker Namespace: hyperledger +peer0.org2.example.com | Base Docker Label: org.hyperledger.fabric +peer0.org2.example.com | Docker Namespace: hyperledger +peer0.org2.example.com | +peer0.org2.example.com | [036 06-12 02:14:12.33 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 | [037 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +peer0.org2.example.com | [038 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/ledgerProvider/] +peer0.org2.example.com | [039 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] does not exist +peer0.org2.example.com | [03a 06-12 02:14:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.openIDStore.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/ledgerProvider/] exists +peer0.org2.example.com | [03b 06-12 02:14:12.34 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +peer0.org2.example.com | [03c 06-12 02:14:12.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +peer1.org1.example.com | [1ad 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [1ae 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [1af 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [1b0 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [1b1 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [1b2 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [1b3 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [1b4 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [1b5 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [1b6 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [1b7 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [1b8 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [1b9 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [1ba 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [1bb 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [1bc 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [1bd 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [1be 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [1bf 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [1c0 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [1c1 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [1c2 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [1c3 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [1c4 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [1c5 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [1c6 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [1c7 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [1c8 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [1c9 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [1ca 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [1cb 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [1cc 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [1cd 06-12 02:14:16.35 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org1.example.com | [1ce 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [1cf 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [1d0 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [1d1 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [1d2 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [1d3 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [1d4 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [1d5 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [1d6 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [1d7 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [1d8 06-12 02:14:16.36 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [1d9 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +peer1.org1.example.com | [1da 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +peer1.org1.example.com | [1db 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +peer1.org1.example.com | [1dc 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org1.example.com | [1dd 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.InvokeNoShim.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain +peer1.org1.example.com | [1df 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [1de 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [1e0 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [1e1 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [ab210e33-8927-4fd1-9848-561a59054217] +peer1.org1.example.com | [1e2 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=ab210e33-8927-4fd1-9848-561a59054217,syscc=true,proposal=0x0,canname=cscc:1.2.0) +peer1.org1.example.com | [1e3 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org1.example.com | [1e4 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [1e5 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab210e33]Received message INIT from peer +peer1.org1.example.com | [1e6 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [ab210e33] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [1e7 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [ab210e33] Received INIT, initializing chaincode +peer1.org1.example.com | [1e8 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org1.example.com | [1e9 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab210e33] Init get response status: 200 +peer1.org1.example.com | [1ea 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [ab210e33] Init succeeded. Sending COMPLETED +peer1.org1.example.com | [1eb 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [ab210e33] send state message COMPLETED +peer1.org1.example.com | [1ec 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [ab210e33] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1ed 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [ab210e33] notifying Txid:ab210e33-8927-4fd1-9848-561a59054217, channelID:businesschannel +peer1.org2.example.com | [0a1 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c32bec6a] Received INIT, initializing chaincode +peer1.org2.example.com | [0a2 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | [0a3 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c32bec6a] Init get response status: 200 +peer1.org2.example.com | [0a4 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c32bec6a] Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0a5 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [c32bec6a] send state message COMPLETED +peer1.org2.example.com | [0a6 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c32bec6a] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0a7 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c32bec6a] notifying Txid:c32bec6a-e4e3-4e55-8f50-f16d203d46b0, channelID: +peer1.org2.example.com | [0a8 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [0a9 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org2.example.com | [0aa 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=a5df910f-4c3d-424b-8cf9-423f688bb115,syscc=true,proposal=0x0,canname=lscc:1.2.0) +peer1.org2.example.com | [0ab 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched +peer1.org2.example.com | [0ac 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer1.org2.example.com | [0ad 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 +peer1.org2.example.com | [0ae 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org2.example.com | [0af 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=lscc:1.2.0 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [0b0 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock +peer1.org2.example.com | [0b1 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock +peer1.org2.example.com | [0b2 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 +peer1.org2.example.com | [0b3 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) +peer1.org2.example.com | [0b4 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 +peer1.org2.example.com | [0b5 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [0b6 06-12 02:14:11.83 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 +peer1.org2.example.com | [0b7 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org2.example.com | [0b8 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 +peer1.org2.example.com | [0b9 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [0ba 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [0bb 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org2.example.com | [0bc 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 +peer1.org2.example.com | [0bd 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED +peer1.org2.example.com | [0be 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" +peer1.org2.example.com | [0bf 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" +peer1.org2.example.com | [0c0 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer1.org2.example.com | [0c1 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [0c2 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer1.org2.example.com | [0c3 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0c4 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" +peer1.org2.example.com | [0c5 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +orderer.example.com | [034 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes +orderer.example.com | [035 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [036 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +orderer.example.com | [037 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +orderer.example.com | [038 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [039 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes +orderer.example.com | [03a 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [03b 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +orderer.example.com | [03c 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [03d 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [03e 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [03f 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [040 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [041 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [042 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [043 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [044 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [045 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [046 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [047 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [048 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [049 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [04a 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [04b 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [04c 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [03d 06-12 02:14:12.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +peer0.org2.example.com | [03e 06-12 02:14:12.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +peer0.org2.example.com | [03f 06-12 02:14:12.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +peer0.org2.example.com | [040 06-12 02:14:12.35 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +peer0.org2.example.com | [041 06-12 02:14:12.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +peer0.org2.example.com | [042 06-12 02:14:12.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +peer0.org2.example.com | [043 06-12 02:14:12.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +peer0.org2.example.com | [044 06-12 02:14:12.36 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +peer0.org2.example.com | [045 06-12 02:14:12.37 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 | [046 06-12 02:14:12.37 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 | [047 06-12 02:14:12.37 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 | [048 06-12 02:14:12.37 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 | [049 06-12 02:14:12.38 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/bookkeeper/] +peer0.org1.example.com | [17b 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [17c 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org1.example.com | [17d 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [17e 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [1] +peer0.org1.example.com | [17f 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] +peer0.org1.example.com | [181 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [1] +peer0.org1.example.com | [180 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +peer0.org1.example.com | [182 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org1.example.com | [183 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [184 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org1.example.com | [185 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [186 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [cfb61aec-c300-459d-acb8-68d03c4d3963] +peer0.org1.example.com | [187 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer0.org1.example.com | [188 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [cfb61aec-c300-459d-acb8-68d03c4d3963] +peer0.org1.example.com | [189 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [18a 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [18b 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [18c 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [18d 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [18e 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [18f 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [190 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [191 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [192 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [193 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [194 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [1ee 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [1ef 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer1.org1.example.com | [1f0 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [ab210e33-8927-4fd1-9848-561a59054217] +peer1.org1.example.com | [1f1 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [1f2 06-12 02:14:16.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [67b5cde1-360f-4fe3-833e-9f647b6aeeaa] +peer1.org1.example.com | [1f3 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=67b5cde1-360f-4fe3-833e-9f647b6aeeaa,syscc=true,proposal=0x0,canname=lscc:1.2.0) +peer1.org1.example.com | [1f4 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org1.example.com | [1f5 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [1f6 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67b5cde1]Received message INIT from peer +peer1.org1.example.com | [1f7 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [67b5cde1] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [1f8 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [67b5cde1] Received INIT, initializing chaincode +peer1.org1.example.com | [1f9 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67b5cde1] Init get response status: 200 +peer1.org1.example.com | [1fa 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [67b5cde1] Init succeeded. Sending COMPLETED +peer1.org1.example.com | [1fb 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [67b5cde1] send state message COMPLETED +peer1.org1.example.com | [1fc 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [67b5cde1] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1fd 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [67b5cde1] notifying Txid:67b5cde1-360f-4fe3-833e-9f647b6aeeaa, channelID:businesschannel +peer1.org1.example.com | [1fe 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [1ff 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [200 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [67b5cde1-360f-4fe3-833e-9f647b6aeeaa] +peer1.org1.example.com | [201 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [202 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [6ea8bde9-7b5f-4acf-aa2f-0f286f34df32] +peer1.org1.example.com | [203 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=6ea8bde9-7b5f-4acf-aa2f-0f286f34df32,syscc=true,proposal=0x0,canname=qscc:1.2.0) +peer1.org1.example.com | [204 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer1.org1.example.com | [205 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [206 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ea8bde9]Received message INIT from peer +peer1.org1.example.com | [207 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [6ea8bde9] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [208 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [6ea8bde9] Received INIT, initializing chaincode +peer1.org1.example.com | [209 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org1.example.com | [20a 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ea8bde9] Init get response status: 200 +peer1.org1.example.com | [20b 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [6ea8bde9] Init succeeded. Sending COMPLETED +peer1.org1.example.com | [20c 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [6ea8bde9] send state message COMPLETED +peer1.org1.example.com | [20d 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [6ea8bde9] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [04a 06-12 02:14:12.38 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/bookkeeper/] does not exist +peer0.org2.example.com | [04b 06-12 02:14:12.38 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/bookkeeper/] exists +peer0.org2.example.com | [04c 06-12 02:14:12.38 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory +peer0.org2.example.com | [04d 06-12 02:14:12.38 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] +peer0.org2.example.com | [04e 06-12 02:14:12.38 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist +peer0.org2.example.com | [04f 06-12 02:14:12.38 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists +peer0.org2.example.com | [050 06-12 02:14:12.39 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 | [051 06-12 02:14:12.39 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 | [052 06-12 02:14:12.39 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 | [053 06-12 02:14:12.39 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 | [054 06-12 02:14:12.39 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.5:7051 +peer0.org2.example.com | [055 06-12 02:14:12.39 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org2.example.com:7051 +peer0.org2.example.com | [056 06-12 02:14:12.39 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.5:7051 +peer0.org2.example.com | [057 06-12 02:14:12.39 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org2.example.com:7051 +peer0.org2.example.com | [058 06-12 02:14:12.40 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +peer0.org2.example.com | [059 06-12 02:14:12.40 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 | [05a 06-12 02:14:12.40 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 | [05b 06-12 02:14:12.40 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 | [05c 06-12 02:14:12.40 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 | [05d 06-12 02:14:12.40 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +peer0.org2.example.com | [05e 06-12 02:14:12.40 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +peer0.org2.example.com | [05f 06-12 02:14:12.40 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org2.example.com +peer0.org2.example.com | [060 06-12 02:14:12.40 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org2.example.com:7052 +peer0.org2.example.com | [061 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 +peer0.org2.example.com | [062 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +peer0.org2.example.com | [063 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 +peer0.org2.example.com | [064 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +peer0.org2.example.com | [065 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 +peer0.org2.example.com | [066 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +peer0.org2.example.com | [067 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +peer0.org2.example.com | [068 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +peer0.org2.example.com | [069 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] +peer0.org2.example.com | [06a 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] +peer0.org2.example.com | [06b 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +peer0.org2.example.com | [06c 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +peer0.org2.example.com | [06d 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers +peer0.org2.example.com | [06e 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc +peer0.org2.example.com | [06f 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +peer0.org2.example.com | [070 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement +peer0.org2.example.com | [071 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org2.example.com | [072 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to +peer0.org2.example.com | [073 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators +peer0.org2.example.com | [074 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc +peer0.org2.example.com | [075 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +peer0.org2.example.com | [076 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation +peer0.org2.example.com | [077 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +peer0.org2.example.com | [078 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to +peer0.org2.example.com | [079 06-12 02:14:12.42 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]] decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]] validators:map[vscc:map[library: name:DefaultValidation]]]] +peer0.org2.example.com | [07a 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org2.example.com:7051 [] [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] peer0.org2.example.com:7051 } +peer0.org2.example.com | [07b 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [07c 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=51d6305a-5ca7-4600-9d5e-2bcd25e00d0c,syscc=true,proposal=0x0,canname=cscc:1.2.0) +peer0.org2.example.com | [07d 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched +peer0.org2.example.com | [07f 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer0.org2.example.com | [07e 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org2.example.com | [080 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 +peer0.org2.example.com | [081 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [082 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=cscc:1.2.0 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [083 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock +peer0.org2.example.com | [084 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock +peer0.org2.example.com | [085 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 +peer0.org2.example.com | [086 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) +orderer.example.com | [04d 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [04e 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [04f 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [050 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [051 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [052 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos +orderer.example.com | [053 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +orderer.example.com | [054 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [055 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [056 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [057 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [058 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [059 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [05a 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +orderer.example.com | CSJWn+U1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [05b 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org2.example.com | [087 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org2.example.com:7051 started +peer0.org2.example.com | [088 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +peer0.org2.example.com | [089 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 +peer0.org2.example.com | [08a 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [08b 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +peer0.org2.example.com | [08c 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 +peer0.org2.example.com | [08d 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [08e 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 +peer0.org2.example.com | [08f 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [090 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [091 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer0.org2.example.com | [092 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 +peer0.org2.example.com | [093 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED +peer0.org2.example.com | [094 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" +peer0.org2.example.com | [095 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" +peer0.org2.example.com | [096 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer0.org2.example.com | [097 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [098 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer0.org2.example.com | [099 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [09a 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" +peer0.org2.example.com | [09b 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer0.org2.example.com | [09c 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer0.org2.example.com | [09d 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [09e 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [51d6305a]Received message INIT from peer +peer0.org2.example.com | [09f 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [51d6305a] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [0a0 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [51d6305a] Received INIT, initializing chaincode +peer0.org2.example.com | [0a1 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [0a2 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [51d6305a] Init get response status: 200 +peer0.org2.example.com | [0a3 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [51d6305a] Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0a4 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [51d6305a] send state message COMPLETED +peer0.org2.example.com | [0a5 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [51d6305a] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [0a6 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [51d6305a] notifying Txid:51d6305a-5ca7-4600-9d5e-2bcd25e00d0c, channelID: +peer0.org2.example.com | [0a7 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [0a8 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [0a9 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=2d753bfb-61af-46d0-acf2-baefccabe7be,syscc=true,proposal=0x0,canname=lscc:1.2.0) +peer0.org2.example.com | [0aa 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched +peer0.org2.example.com | [0ab 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer0.org2.example.com | [0ac 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 +peer0.org2.example.com | [0ad 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [0ae 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +peer0.org1.example.com | [195 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [196 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [197 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [198 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [199 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [19a 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org1.example.com | [19b 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [19c 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [19d 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [19e 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [19f 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [1a0 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [1a1 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [1a2 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [1a3 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [1a4 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [1a5 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [1a6 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org1.example.com | [1a7 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [1a8 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [1a9 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [1aa 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [1ab 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [1ac 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [1ad 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [1ae 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [05c 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [05d 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [05e 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [05f 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [060 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [061 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [062 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [063 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +orderer.example.com | QKuzs3j8kg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [064 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +orderer.example.com | 3BDFnYuSFYhOCexVkA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [065 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [066 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [067 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [068 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [069 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [06a 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +orderer.example.com | [06b 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [06c 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [06d 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [06e 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [06f 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP +orderer.example.com | [070 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP +orderer.example.com | [071 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP +orderer.example.com | [072 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP +orderer.example.com | [073 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP +orderer.example.com | [074 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP +orderer.example.com | [075 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums +orderer.example.com | [076 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [077 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers +orderer.example.com | [078 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [079 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers +orderer.example.com | [07a 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [07b 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [07c 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [07d 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [07e 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [07f 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [080 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [081 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [082 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [083 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [084 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [085 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [086 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [087 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [0c6 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org2.example.com | [0c7 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [0c8 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5df910f]Received message INIT from peer +peer1.org2.example.com | [0c9 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a5df910f] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [0ca 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a5df910f] Received INIT, initializing chaincode +peer1.org2.example.com | [0cb 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5df910f] Init get response status: 200 +peer1.org2.example.com | [0cc 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a5df910f] Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0cd 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a5df910f] send state message COMPLETED +peer1.org2.example.com | [0ce 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a5df910f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0cf 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a5df910f] notifying Txid:a5df910f-4c3d-424b-8cf9-423f688bb115, channelID: +peer1.org2.example.com | [0d0 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [0d1 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org2.example.com | [0d2 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=98081119-9ab1-4b3e-9603-5705293898af,syscc=true,proposal=0x0,canname=qscc:1.2.0) +peer1.org2.example.com | [0d3 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched +peer1.org2.example.com | [0d4 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer1.org2.example.com | [0d5 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 +peer1.org2.example.com | [0d6 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +peer1.org2.example.com | [0d7 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=qscc:1.2.0 +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org2.example.com | [0d8 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock +peer1.org2.example.com | [0d9 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock +peer1.org2.example.com | [0da 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 +peer1.org2.example.com | [0db 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) +peer1.org2.example.com | [0dc 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 +peer1.org2.example.com | [0dd 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [0de 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 +peer1.org2.example.com | [0df 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer1.org2.example.com:7052] +peer1.org2.example.com | [0e0 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 +peer1.org2.example.com | [0e1 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer1.org2.example.com | [0e2 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [0e3 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org2.example.com | [0e4 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 +peer1.org2.example.com | [0e5 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED +peer1.org2.example.com | [0e6 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" +peer1.org2.example.com | [0e7 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" +peer1.org2.example.com | [0e8 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer1.org2.example.com | [0e9 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer1.org2.example.com | [0ea 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer1.org2.example.com | [0eb 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer1.org2.example.com | [0ec 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" +peer1.org2.example.com | [0ed 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org2.example.com | [0ee 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer1.org2.example.com | [0ef 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [0f0 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98081119]Received message INIT from peer +peer1.org2.example.com | [0f1 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [98081119] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [0f2 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [98081119] Received INIT, initializing chaincode +peer1.org2.example.com | [0f3 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org2.example.com | [0f4 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98081119] Init get response status: 200 +peer1.org2.example.com | [0f5 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [98081119] Init succeeded. Sending COMPLETED +peer1.org2.example.com | [0f6 06-12 02:14:11.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [98081119] send state message COMPLETED +peer1.org2.example.com | [0f7 06-12 02:14:11.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [98081119] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [0f8 06-12 02:14:11.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [98081119] notifying Txid:98081119-9ab1-4b3e-9603-5705293898af, channelID: +peer1.org2.example.com | [0f9 06-12 02:14:11.85 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [0fa 06-12 02:14:11.85 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org2.example.com | [0fb 06-12 02:14:11.85 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes +peer1.org2.example.com | [0fc 06-12 02:14:11.85 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] +peer1.org2.example.com | [0fd 06-12 02:14:11.85 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer1.org2.example.com | [0fe 06-12 02:14:11.85 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated +peer1.org2.example.com | [0ff 06-12 02:14:11.85 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 | [100 06-12 02:14:11.85 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] +peer1.org2.example.com | [101 06-12 02:14:12.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.5:7051 +peer1.org2.example.com | [102 06-12 02:14:12.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer1.org2.example.com | [103 06-12 02:14:12.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +orderer.example.com | [088 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [089 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [08a 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [08b 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums +orderer.example.com | [08c 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium +orderer.example.com | [08d 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP +orderer.example.com | [08e 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +orderer.example.com | [08f 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +orderer.example.com | [090 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +orderer.example.com | [091 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +orderer.example.com | [092 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP +orderer.example.com | [093 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +orderer.example.com | [094 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +orderer.example.com | [095 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +orderer.example.com | [096 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +orderer.example.com | [097 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +orderer.example.com | [098 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins +orderer.example.com | [099 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [09a 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [09b 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [09c 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [09d 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [09e 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [09f 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [0a0 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [20e 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [6ea8bde9] notifying Txid:6ea8bde9-7b5f-4acf-aa2f-0f286f34df32, channelID:businesschannel +peer1.org1.example.com | [20f 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [210 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer1.org1.example.com | [211 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [6ea8bde9-7b5f-4acf-aa2f-0f286f34df32] +peer1.org1.example.com | [212 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [b85ed1a7-7a51-4b5e-ae84-cee28701820f] +peer1.org1.example.com | [213 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] +peer1.org1.example.com | [214 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [b85ed1a7-7a51-4b5e-ae84-cee28701820f] +peer1.org1.example.com | [215 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +peer1.org1.example.com | [216 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [217 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [218 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Entry +peer1.org1.example.com | [219 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [21a 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event sent successfully +peer1.org1.example.com | [21b 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Exit +peer1.org1.example.com | [21c 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4956c2e7] Transaction completed. Sending COMPLETED +peer1.org1.example.com | [21d 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [4956c2e7] send state message COMPLETED +peer1.org1.example.com | [21e 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [4956c2e7] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [21f 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [4956c2e7] notifying Txid:4956c2e7fcb4ec891e45b023d563d9d054b8c1f1395a23ab15dea02c4a0862d1, channelID: +peer1.org1.example.com | [220 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [221 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][4956c2e7fcb4ec891e45b023d563d9d054b8c1f1395a23ab15dea02c4a0862d1] Exit +peer1.org1.example.com | [222 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][4956c2e7] Exit +peer1.org1.example.com | [223 06-12 02:14:16.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:45884 +peer1.org1.example.com | [224 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org1.example.com | [225 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org1.example.com | [226 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org1.example.com | [227 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [228 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [229 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [104 06-12 02:14:12.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:2451273765200677135 tag:EMPTY mem_req: > > , Envelope: 1084 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [105 06-12 02:14:12.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:2451273765200677135 tag:EMPTY mem_req: > > , Envelope: 1084 bytes, Signature: 0 bytes +peer1.org2.example.com | [106 06-12 02:14:12.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [107 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.5:7051 +peer1.org2.example.com | [108 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer1.org2.example.com | [109 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer1.org2.example.com | [10a 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer1.org2.example.com | [10b 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [10c 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 2451273765200677135, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2156 bytes, Signature: 0 bytes +orderer.example.com | [0a1 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [0a2 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [0a3 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [0a4 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +orderer.example.com | [0a5 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +orderer.example.com | [0a6 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [0a7 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +orderer.example.com | [0a8 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [0a9 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [0aa 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [0ab 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/capabilities] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +orderer.example.com | [0ac 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/capabilities] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +orderer.example.com | [0ad 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +orderer.example.com | [0ae 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [0af 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes +orderer.example.com | [0b0 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [0b1 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +orderer.example.com | [0b2 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) +orderer.example.com | [0b3 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources +orderer.example.com | [0b4 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid +orderer.example.com | [0b5 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +orderer.example.com | [0b6 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [0b7 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes +orderer.example.com | [0b8 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [0b9 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +orderer.example.com | [0ba 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 6bf96feb506874d32dcc8cac0ed999af5f3ee552e12dad7e1b4b7bbe91a73932 and orderer type solo +orderer.example.com | [0bb 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: +orderer.example.com | Version: 1.2.0 +orderer.example.com | Go version: go1.10.2 +orderer.example.com | OS/Arch: linux/amd64 +orderer.example.com | Experimental features: true +orderer.example.com | [0bc 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests +peer1.org1.example.com | [22a 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [22b 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [22c 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [22d 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [22e 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [22f 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer1.org1.example.com | [230 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer1.org1.example.com | [231 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [232 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [233 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [234 06-12 02:14:17.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [235 06-12 02:14:17.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:45892 +peer1.org1.example.com | [236 06-12 02:14:17.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42036af90 +peer1.org1.example.com | [237 06-12 02:14:17.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [238 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [239 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org1.example.com | [23a 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [23b 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [23c 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4202d8a50, header 0xc42036b350 +peer1.org1.example.com | [23d 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [23e 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][63ab4a2e] processing txid: 63ab4a2e0d31867983b4b3a30f7f0b8b819a196a640336e31e9093aecc9c07a6 +peer1.org1.example.com | [23f 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][63ab4a2e] Entry chaincode: name:"cscc" +peer1.org1.example.com | [240 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][63ab4a2e0d31867983b4b3a30f7f0b8b819a196a640336e31e9093aecc9c07a6] Entry chaincode: name:"cscc" version: 1.2.0 +peer1.org1.example.com | [241 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=63ab4a2e0d31867983b4b3a30f7f0b8b819a196a640336e31e9093aecc9c07a6,syscc=true,proposal=0xc4202d8a50,canname=cscc:1.2.0) +peer1.org1.example.com | [242 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org1.example.com | [243 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [244 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63ab4a2e]Received message TRANSACTION from peer +peer1.org1.example.com | [245 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [63ab4a2e] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [246 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [63ab4a2e] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [247 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: GetChannels +peer1.org1.example.com | [248 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [63ab4a2e] Transaction completed. Sending COMPLETED +peer1.org1.example.com | [249 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [63ab4a2e] send state message COMPLETED +peer1.org1.example.com | [24a 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [63ab4a2e] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [24b 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [63ab4a2e] notifying Txid:63ab4a2e0d31867983b4b3a30f7f0b8b819a196a640336e31e9093aecc9c07a6, channelID: +peer1.org1.example.com | [24c 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [24d 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][63ab4a2e0d31867983b4b3a30f7f0b8b819a196a640336e31e9093aecc9c07a6] Exit +peer1.org1.example.com | [24e 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][63ab4a2e] Exit +peer1.org1.example.com | [24f 06-12 02:14:17.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:45892 +peer1.org1.example.com | [250 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [251 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [252 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [253 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [254 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:c\254\377*\322\367\215\303\202\215\236R\010\276#\203\233\002 hSk\014O\231\371\251E\217\222\310\323\027\236V\210\344<\024\001U\264\265\"\027\013>\352\245\247\350" > > > , Envelope: 1079 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [256 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:c\254\377*\322\367\215\303\202\215\236R\010\276#\203\233\002 hSk\014O\231\371\251E\217\222\310\323\027\236V\210\344<\024\001U\264\265\"\027\013>\352\245\247\350" > > > , Envelope: 1079 bytes, Signature: 0 bytes +peer1.org1.example.com | [255 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer1.org1.example.com | [258 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer1.org1.example.com | [257 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +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 | CORE_CHAINCODE_ID_NAME=lscc:1.2.0 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [0af 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock +peer0.org2.example.com | [0b0 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock +peer0.org2.example.com | [0b1 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 +peer0.org2.example.com | [0b2 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) +peer0.org2.example.com | [0b3 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 +peer0.org2.example.com | [0b5 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [0b4 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 +peer0.org2.example.com | [0b6 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [0b7 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 +peer0.org2.example.com | [0b8 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0b9 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [0ba 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0bb 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 +peer0.org2.example.com | [0bc 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED +peer0.org2.example.com | [0bd 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" +peer0.org2.example.com | [0be 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" +peer0.org2.example.com | [0bf 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer0.org2.example.com | [0c0 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0c1 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer0.org2.example.com | [0c2 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [0c3 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" +peer0.org2.example.com | [0c4 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer0.org2.example.com | [0c5 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org2.example.com | [0c6 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [0c7 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d753bfb]Received message INIT from peer +peer0.org2.example.com | [0c8 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2d753bfb] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [0c9 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2d753bfb] Received INIT, initializing chaincode +peer0.org2.example.com | [0ca 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d753bfb] Init get response status: 200 +peer0.org2.example.com | [0cb 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2d753bfb] Init succeeded. Sending COMPLETED +peer0.org2.example.com | [0cc 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [2d753bfb] send state message COMPLETED +peer0.org2.example.com | [0cd 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2d753bfb] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [0ce 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2d753bfb] notifying Txid:2d753bfb-61af-46d0-acf2-baefccabe7be, channelID: +peer0.org2.example.com | [0cf 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [0d0 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer0.org2.example.com | [0d1 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=92d1c351-352d-4fb1-acca-b10de2d10ec4,syscc=true,proposal=0x0,canname=qscc:1.2.0) +peer0.org2.example.com | [0d2 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched +peer0.org2.example.com | [0d3 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer0.org2.example.com | [0d4 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 +peer0.org2.example.com | [0d5 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [0d6 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=qscc:1.2.0 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [0d7 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock +peer0.org2.example.com | [0d8 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock +peer0.org2.example.com | [0d9 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 +peer0.org2.example.com | [0da 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) +peer0.org2.example.com | [0db 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 +peer0.org2.example.com | [0dd 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org2.example.com | [0dc 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 +peer0.org2.example.com | [0de 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org2.example.com:7052] +peer0.org2.example.com | [0df 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 +peer0.org2.example.com | [0e0 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +peer0.org2.example.com | [0e1 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer0.org2.example.com | [0e2 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer0.org2.example.com | [0e3 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 +peer0.org2.example.com | [0e4 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED +peer0.org2.example.com | [0e5 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" +peer0.org2.example.com | [0e6 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" +peer0.org2.example.com | [0e7 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +peer0.org2.example.com | [0e8 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +peer0.org2.example.com | [0e9 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +peer0.org2.example.com | [0ea 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +peer0.org2.example.com | [0eb 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" +peer1.org2.example.com | [10d 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 2451273765200677135, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2156 bytes, Signature: 0 bytes +peer0.org1.example.com | [1af 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [259 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +orderer.example.com | [0bd 06-12 02:14:15.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org2.example.com | [0ec 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org2.example.com | [10e 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b0 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [25a 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +orderer.example.com | [0be 06-12 02:14:15.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35704 +peer0.org2.example.com | [0ed 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer1.org2.example.com | [10f 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 2451273765200677135, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2156 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b1 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [25b 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [0bf 06-12 02:14:15.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35704 +peer0.org2.example.com | [0ee 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [110 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1b2 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [25c 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +orderer.example.com | [0c0 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +peer0.org2.example.com | [0ef 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92d1c351]Received message INIT from peer +peer1.org2.example.com | [111 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [112 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [113 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [0c1 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35706 +peer0.org2.example.com | [0f0 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [92d1c351] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [114 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]}, deadMembers={[]} +orderer.example.com | [0c2 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:35706 +orderer.example.com | [0c3 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel +orderer.example.com | [0c4 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid +peer0.org2.example.com | [0f1 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [92d1c351] Received INIT, initializing chaincode +peer1.org2.example.com | [115 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [0c5 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [0f2 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org2.example.com | [0f3 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92d1c351] Init get response status: 200 +peer0.org2.example.com | [0f4 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [92d1c351] Init succeeded. Sending COMPLETED +peer1.org2.example.com | [116 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +orderer.example.com | [0c6 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [0f5 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [92d1c351] send state message COMPLETED +peer1.org2.example.com | [117 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [118 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1b3 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [0c7 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [0f6 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [92d1c351] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [119 06-12 02:14:15.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1b4 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [1b5 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [0c8 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [0f7 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [92d1c351] notifying Txid:92d1c351-352d-4fb1-acca-b10de2d10ec4, channelID: +peer1.org2.example.com | [11a 06-12 02:14:15.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1b6 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [0c9 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [0f8 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [25d 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [11b 06-12 02:14:15.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b7 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [0ca 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [0f9 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org2.example.com | [0fa 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes +peer1.org2.example.com | [11c 06-12 02:14:15.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b8 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [0cb 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [11d 06-12 02:14:15.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\344\360\243\235\307L\233)\242\312Ky{\023\356 \030&\202Q\232\023\326c\224\307B\347\225\302\005" secret_envelope:\275\324\325\356&f\002 l\254\355\360\300\352\217\362$\010\034\235\300\232O:\377\245\341!\033\374\376\302\325\013z2\021\024\327\010" > > > , Envelope: 1073 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [25e 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +peer0.org2.example.com | [0fb 06-12 02:14:12.43 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] +peer0.org1.example.com | [1b9 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [0cc 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [11e 06-12 02:14:15.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\344\360\243\235\307L\233)\242\312Ky{\023\356 \030&\202Q\232\023\326c\224\307B\347\225\302\005" secret_envelope:\275\324\325\356&f\002 l\254\355\360\300\352\217\362$\010\034\235\300\232O:\377\245\341!\033\374\376\302\325\013z2\021\024\327\010" > > > , Envelope: 1073 bytes, Signature: 0 bytes +peer1.org1.example.com | [25f 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [0fc 06-12 02:14:12.44 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +peer0.org2.example.com | [0fd 06-12 02:14:12.44 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated +orderer.example.com | [0cd 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [11f 06-12 02:14:15.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [260 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [0fe 06-12 02:14:12.44 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 | [0ce 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [1ba 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [120 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes +peer1.org1.example.com | [261 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [0ff 06-12 02:14:12.44 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 | [0cf 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [1bb 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [121 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes +peer1.org1.example.com | [262 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [100 06-12 02:14:12.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:52864 +orderer.example.com | [0d0 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [1bc 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [122 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes +peer1.org1.example.com | [263 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [101 06-12 02:14:12.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:52864 +orderer.example.com | [0d1 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [1bd 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [123 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [102 06-12 02:14:12.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:52864 +orderer.example.com | [0d2 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [0d3 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [264 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [124 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2145 bytes, Signature: 0 bytes +peer0.org2.example.com | [103 06-12 02:14:12.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:52864 +orderer.example.com | [0d4 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [0d5 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [0d6 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [125 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2145 bytes, Signature: 0 bytes +peer0.org2.example.com | [104 06-12 02:14:12.91 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +orderer.example.com | [0d7 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org2.example.com | [126 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [127 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2145 bytes, Signature: 0 bytes +peer0.org1.example.com | [1be 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [105 06-12 02:14:12.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:52864 disconnected +orderer.example.com | [0d8 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [128 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1bf 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [265 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer0.org2.example.com | [106 06-12 02:14:12.91 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +peer1.org2.example.com | [129 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1c0 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [266 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [107 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:52866 +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [12a 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [12b 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [267 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [108 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:52866 +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer1.org2.example.com | [12c 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [1c1 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [268 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [109 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:52866 +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +peer1.org2.example.com | [12d 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [1c2 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [269 06-12 02:14:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [10a 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:52866 +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer1.org2.example.com | [12e 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [1c3 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [26a 06-12 02:14:17.37 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting, peers found 1 +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org2.example.com | [10b 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:2451273765200677135 tag:EMPTY mem_req: > > , Envelope: 1084 bytes, Signature: 0 bytes +peer1.org2.example.com | [12f 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1c4 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [26b 06-12 02:14:17.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +peer0.org2.example.com | [10c 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [130 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1c5 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [26c 06-12 02:14:17.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +peer0.org2.example.com | [10d 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:2451273765200677135 tag:EMPTY mem_req: > > , Envelope: 1084 bytes, Signature: 0 bytes +peer1.org2.example.com | [131 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1c6 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [26d 06-12 02:14:17.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org2.example.com | [10e 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [132 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1c7 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [26e 06-12 02:14:17.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +peer0.org2.example.com | [10f 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]}, deadMembers={[]} +peer1.org2.example.com | [133 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c8 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [1c9 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +peer0.org2.example.com | [110 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [26f 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:45900 +peer0.org1.example.com | [1ca 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +peer0.org2.example.com | [111 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer1.org1.example.com | [270 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4222b00f0 +peer1.org2.example.com | [134 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [1cb 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [112 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [135 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [0d9 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +peer0.org2.example.com | [113 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [136 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [271 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [114 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [1cc 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [137 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [272 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org2.example.com | [115 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 2451273765200677135, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2156 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1cd 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [138 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org1.example.com | [273 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +peer0.org2.example.com | [116 06-12 02:14:12.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org1.example.com | [1ce 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [139 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org1.example.com | [274 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org2.example.com | [117 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 2451273765200677135, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2156 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cf 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org2.example.com | [13a 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [275 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org2.example.com | [118 06-12 02:14:12.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d0 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [13b 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org1.example.com | [276 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422286cd0, header 0xc4222b0540 +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +peer0.org2.example.com | [119 06-12 02:14:15.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [11a 06-12 02:14:15.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [13c 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [13d 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer0.org2.example.com | [11b 06-12 02:14:15.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [13e 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [1d1 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [277 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +peer0.org2.example.com | [11c 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13f 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [1d2 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [278 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][76f849ba] processing txid: 76f849bafe09a9db2ed8f4792f0d37af43628f34b4699ebf98c6935c941e7f87 +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +peer0.org2.example.com | [11d 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\344\360\243\235\307L\233)\242\312Ky{\023\356 \030&\202Q\232\023\326c\224\307B\347\225\302\005" secret_envelope:\275\324\325\356&f\002 l\254\355\360\300\352\217\362$\010\034\235\300\232O:\377\245\341!\033\374\376\302\325\013z2\021\024\327\010" > > > , Envelope: 1073 bytes, Signature: 0 bytes +peer1.org2.example.com | [140 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1d3 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [279 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][76f849ba] Entry chaincode: name:"qscc" +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +peer0.org2.example.com | [11e 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [141 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1d4 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [27a 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][76f849bafe09a9db2ed8f4792f0d37af43628f34b4699ebf98c6935c941e7f87] Entry chaincode: name:"qscc" version: 1.2.0 +peer1.org2.example.com | [142 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [11f 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\344\360\243\235\307L\233)\242\312Ky{\023\356 \030&\202Q\232\023\326c\224\307B\347\225\302\005" secret_envelope:\275\324\325\356&f\002 l\254\355\360\300\352\217\362$\010\034\235\300\232O:\377\245\341!\033\374\376\302\325\013z2\021\024\327\010" > > > , Envelope: 1073 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d5 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [0da 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [27b 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=76f849bafe09a9db2ed8f4792f0d37af43628f34b4699ebf98c6935c941e7f87,syscc=true,proposal=0xc422286cd0,canname=qscc:1.2.0) +peer1.org2.example.com | [143 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [120 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1d6 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | [0db 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [27c 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer1.org2.example.com | [144 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org2.example.com | [121 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [1d7 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [0dc 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org1.example.com | [27d 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [145 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [122 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [1d8 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | [0dd 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [27e 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76f849ba]Received message TRANSACTION from peer +peer0.org2.example.com | [123 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [146 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:2&\236\224\016z\306\233qQ\n7\010/\325\276\252\002 _\017\347Jhi\236\313\025\246T<[k\323\n]J\266;\341n8\247\331\261m\305\210\ro}" > > +peer0.org1.example.com | [1d9 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | [0de 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [27f 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [76f849ba] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [124 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [147 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes +peer0.org1.example.com | [1da 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | [0df 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [280 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [76f849ba] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org2.example.com | [125 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [148 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1db 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +orderer.example.com | [0e0 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [281 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org2.example.com | [126 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [149 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49306 +peer0.org1.example.com | [1dc 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +orderer.example.com | [0e1 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [282 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo +peer0.org2.example.com | [127 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [14a 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42202dda0 +peer0.org1.example.com | [1dd 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +orderer.example.com | [0e2 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [128 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org2.example.com | [14b 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [1de 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.InitChain -> DEBU Init chain businesschannel +orderer.example.com | [0e3 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [129 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2145 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [283 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [76f849ba] Transaction completed. Sending COMPLETED +peer1.org2.example.com | [14c 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [1df 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.InvokeNoShim.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain +orderer.example.com | [0e4 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [12a 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\344\360\243\235\307L\233)\242\312Ky{\023\356 \030&\202Q\232\023\326c\224\307B\347\225\302\005" secret_envelope:\275\324\325\356&f\002 l\254\355\360\300\352\217\362$\010\034\235\300\232O:\377\245\341!\033\374\376\302\325\013z2\021\024\327\010" > > alive: > +peer1.org2.example.com | [14d 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org1.example.com | [1e0 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +orderer.example.com | [0e5 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [12b 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2145 bytes, Signature: 0 bytes +peer1.org2.example.com | [14e 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [284 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [76f849ba] send state message COMPLETED +peer0.org1.example.com | [1e1 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [0e6 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer0.org2.example.com | [12c 06-12 02:14:15.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [14f 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [285 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [76f849ba] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1e2 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +orderer.example.com | [0e7 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [12d 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org2.example.com | [150 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422021680, header 0xc4220643c0 +peer1.org1.example.com | [286 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [76f849ba] notifying Txid:76f849bafe09a9db2ed8f4792f0d37af43628f34b4699ebf98c6935c941e7f87, channelID: +peer1.org1.example.com | [287 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [12e 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [151 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [288 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][76f849bafe09a9db2ed8f4792f0d37af43628f34b4699ebf98c6935c941e7f87] Exit +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [1e3 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8ead4aeb-78ca-4850-9f5b-e558a3c48dd7] +peer0.org2.example.com | [12f 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [152 06-12 02:14:16.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][617e217e] processing txid: 617e217e6e3c0848a25a8cdb41dbb357cef2ad0e705f8f4c416fca9b504400c2 +peer1.org1.example.com | [289 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][76f849ba] Exit +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [1e4 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=8ead4aeb-78ca-4850-9f5b-e558a3c48dd7,syscc=true,proposal=0x0,canname=cscc:1.2.0) +peer0.org2.example.com | [130 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [153 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][617e217e] Entry chaincode: name:"cscc" +peer1.org1.example.com | [28a 06-12 02:14:17.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:45900 +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer0.org1.example.com | [1e5 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer0.org2.example.com | [131 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1078 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [154 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][617e217e6e3c0848a25a8cdb41dbb357cef2ad0e705f8f4c416fca9b504400c2] Entry chaincode: name:"cscc" version: 1.2.0 +peer1.org1.example.com | [28b 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [1e6 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [155 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=617e217e6e3c0848a25a8cdb41dbb357cef2ad0e705f8f4c416fca9b504400c2,syscc=true,proposal=0xc422021680,canname=cscc:1.2.0) +peer0.org2.example.com | [132 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org1.example.com | [28c 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to peer0.org1.example.com:7051 +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [1e7 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ead4aeb]Received message INIT from peer +peer1.org2.example.com | [156 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer0.org2.example.com | [133 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes +peer1.org1.example.com | [28d 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [1e8 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ead4aeb] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [157 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [135 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes +peer1.org1.example.com | [28e 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [158 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [617e217e]Received message TRANSACTION from peer +peer0.org2.example.com | [136 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [290 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +peer0.org1.example.com | [1e9 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8ead4aeb] Received INIT, initializing chaincode +peer1.org2.example.com | [159 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [617e217e] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [134 06-12 02:14:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [291 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 3899087366924168527, Envelope: 940 bytes, Signature: 0 bytes +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +peer0.org1.example.com | [1ea 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | [15a 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [617e217e] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org2.example.com | [137 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes +peer1.org1.example.com | [292 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 3899087366924168527, Envelope: 940 bytes, Signature: 0 bytes +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +peer1.org2.example.com | [15b 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +peer0.org2.example.com | [138 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1eb 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ead4aeb] Init get response status: 200 +peer0.org1.example.com | [1ec 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ead4aeb] Init succeeded. Sending COMPLETED +orderer.example.com | QKuzs3j8kg== +peer1.org2.example.com | [15c 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +peer0.org2.example.com | [139 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ed 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8ead4aeb] send state message COMPLETED +peer1.org1.example.com | [293 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 3899087366924168527, Envelope: 940 bytes, Signature: 0 bytes +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [15d 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org2.example.com | [13a 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1ee 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8ead4aeb] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [0e8 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [294 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 84 68 78 89 119 109 47 116 81 73 53 102 82 68 79 109 111 115 48 103 82 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 90 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 90 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 120 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 90 73 84 86 87 54 99 48 115 120 47 115 121 102 101 112 106 75 72 56 110 71 104 114 68 120 55 56 85 75 101 74 10 74 54 50 103 70 108 107 121 48 65 75 55 53 69 74 74 110 47 81 101 68 71 99 82 71 118 120 108 74 47 111 105 47 88 55 67 70 53 109 113 74 65 101 108 88 116 72 119 54 109 117 51 109 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 101 67 98 122 68 48 99 81 102 43 118 51 10 105 114 48 85 53 53 52 97 103 114 116 75 88 54 50 107 84 120 79 77 52 83 68 98 107 55 69 67 77 48 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 78 106 119 113 110 104 121 10 122 97 56 117 112 88 116 110 111 52 87 47 116 111 118 80 75 122 113 47 83 104 68 82 68 114 101 56 65 67 52 87 83 77 109 48 65 105 66 109 112 67 87 115 81 90 106 78 106 100 76 47 75 78 114 48 109 113 109 106 100 120 98 88 10 102 118 53 89 83 57 47 121 115 100 56 106 121 52 97 43 112 103 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer1.org2.example.com | [15e 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +peer0.org2.example.com | [13b 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1ef 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8ead4aeb] notifying Txid:8ead4aeb-78ca-4850-9f5b-e558a3c48dd7, channelID:businesschannel +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [295 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15f 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +peer0.org2.example.com | [13c 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [13d 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [28f 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer1.org2.example.com | [160 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [1f0 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [13e 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [296 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [161 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer0.org1.example.com | [1f1 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +peer0.org2.example.com | [13f 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +peer1.org1.example.com | [297 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [162 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | [140 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +peer0.org2.example.com | [141 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [163 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +peer0.org2.example.com | [142 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1f2 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8ead4aeb-78ca-4850-9f5b-e558a3c48dd7] +peer1.org2.example.com | [164 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | [298 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +peer0.org2.example.com | [143 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1f3 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [165 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [299 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer0.org2.example.com | [144 06-12 02:14:16.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [145 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:59354 +peer1.org2.example.com | [166 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org1.example.com | [29a 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +peer0.org2.example.com | [146 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422424450 +peer0.org1.example.com | [1f4 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c5d1c56f-3e3b-417b-a6e6-029d3f78d616] +peer1.org2.example.com | [167 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4202e3b00)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +peer0.org2.example.com | [147 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [1f5 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=c5d1c56f-3e3b-417b-a6e6-029d3f78d616,syscc=true,proposal=0x0,canname=lscc:1.2.0) +peer1.org2.example.com | [168 06-12 02:14:16.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +orderer.example.com | 3BDFnYuSFYhOCexVkA== +peer1.org1.example.com | [29b 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [148 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [1f6 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org2.example.com | [169 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenStore -> DEBU Pvtdata store opened. Initial state: isEmpty [true], lastCommittedBlock [0], batchPending [false] +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [29c 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [149 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org1.example.com | [1f7 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [16a 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +orderer.example.com | [0e9 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [0ea 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [14a 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [14b 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [16b 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false +orderer.example.com | [0eb 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [14c 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42230de00, header 0xc422424870 +peer1.org1.example.com | [29d 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\007\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\366<\272\016(\r\037\332\314\214{d\207\320\251\201\035B\230\261E-L\000\357\005g\277\031\230y\243\002 \033\212(\242\334\316%\r\021\204\310\004\357R\374UW\016\272\024}\204\332\333\006,\013\222\236\032[\234" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f8 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5d1c56f]Received message INIT from peer +peer1.org2.example.com | [16c 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +orderer.example.com | [0ec 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [14d 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org1.example.com | [1f9 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5d1c56f] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org1.example.com | [29e 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\007\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\366<\272\016(\r\037\332\314\214{d\207\320\251\201\035B\230\261E-L\000\357\005g\277\031\230y\243\002 \033\212(\242\334\316%\r\021\204\310\004\357R\374UW\016\272\024}\204\332\333\006,\013\222\236\032[\234" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org2.example.com | [16d 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +orderer.example.com | [0ed 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [14e 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][1499cc9f] processing txid: 1499cc9ff03e24ed69240a4c571a4326ad0011b2ac145cd99d68ec2880bcddc9 +peer0.org1.example.com | [1fa 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c5d1c56f] Received INIT, initializing chaincode +peer1.org1.example.com | [29f 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16e 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +orderer.example.com | [0ee 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [14f 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1499cc9f] Entry chaincode: name:"cscc" +peer0.org1.example.com | [1fb 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5d1c56f] Init get response status: 200 +peer1.org1.example.com | [2a0 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\007\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\366<\272\016(\r\037\332\314\214{d\207\320\251\201\035B\230\261E-L\000\357\005g\277\031\230y\243\002 \033\212(\242\334\316%\r\021\204\310\004\357R\374UW\016\272\024}\204\332\333\006,\013\222\236\032[\234" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org2.example.com | [16f 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +orderer.example.com | [0ef 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [150 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1499cc9ff03e24ed69240a4c571a4326ad0011b2ac145cd99d68ec2880bcddc9] Entry chaincode: name:"cscc" version: 1.2.0 +peer0.org1.example.com | [1fc 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5d1c56f] Init succeeded. Sending COMPLETED +peer1.org1.example.com | [2a1 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [170 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +orderer.example.com | [0f0 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [1fd 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [c5d1c56f] send state message COMPLETED +peer0.org2.example.com | [151 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=1499cc9ff03e24ed69240a4c571a4326ad0011b2ac145cd99d68ec2880bcddc9,syscc=true,proposal=0xc42230de00,canname=cscc:1.2.0) +peer1.org1.example.com | [2a2 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [171 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [0f1 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [1fe 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c5d1c56f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [152 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org1.example.com | [2a3 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [172 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +orderer.example.com | [0f2 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org1.example.com | [1ff 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c5d1c56f] notifying Txid:c5d1c56f-3e3b-417b-a6e6-029d3f78d616, channelID:businesschannel +peer0.org2.example.com | [153 06-12 02:14:16.50 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [2a4 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [173 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +orderer.example.com | [0f3 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [200 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [154 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1499cc9f]Received message TRANSACTION from peer +peer1.org2.example.com | [174 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org1.example.com | [2a5 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [155 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1499cc9f] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [175 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [176 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [156 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1499cc9f] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org2.example.com | [157 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [2a6 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [177 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [158 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer0.org1.example.com | [201 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +peer1.org1.example.com | [2a7 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [178 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org2.example.com | [159 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [202 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [c5d1c56f-3e3b-417b-a6e6-029d3f78d616] +peer1.org1.example.com | [2a8 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [179 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [15a 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [203 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [204 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [97e17010-1054-416a-a28e-09ab022854d3] +peer1.org2.example.com | [17a 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [15b 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [205 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=97e17010-1054-416a-a28e-09ab022854d3,syscc=true,proposal=0x0,canname=qscc:1.2.0) +peer1.org2.example.com | [17b 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +peer1.org1.example.com | [2a9 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [15c 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +peer0.org1.example.com | [206 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer1.org2.example.com | [17c 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [2aa 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [15d 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [207 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [17d 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [15e 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +peer0.org1.example.com | [208 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [97e17010]Received message INIT from peer +peer1.org2.example.com | [17e 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [15f 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer1.org1.example.com | [2ab 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\007\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\366<\272\016(\r\037\332\314\214{d\207\320\251\201\035B\230\261E-L\000\357\005g\277\031\230y\243\002 \033\212(\242\334\316%\r\021\204\310\004\357R\374UW\016\272\024}\204\332\333\006,\013\222\236\032[\234" secret_envelope: > alive:\245\315\303\265y C6\252\366\367j\325.\373Y\264\373\2660\361\235\335\034\334%\257" > > +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +peer0.org1.example.com | [209 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [97e17010] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [17f 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +peer0.org2.example.com | [160 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | [2ac 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +peer0.org1.example.com | [20a 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [97e17010] Received INIT, initializing chaincode +peer1.org2.example.com | [180 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] +peer0.org2.example.com | [161 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [2ad 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | CSJWn+U1 +peer0.org1.example.com | [20b 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer1.org2.example.com | [181 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x81, 0xc5, 0xbd, 0x2f, 0xfe, 0x1f, 0xf2, 0xa7, 0x99, 0x11, 0xeb, 0x89, 0x2a, 0xfe, 0x78, 0x3e, 0xbf, 0xeb, 0x8f, 0x89, 0xbe, 0x14, 0xc1, 0x3d, 0xfa, 0x19, 0xe2, 0x63, 0x95, 0x7d, 0xd8, 0xa6} txOffsets= +peer0.org2.example.com | [162 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org1.example.com | [2ae 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [20c 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [97e17010] Init get response status: 200 +peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=12078 +peer0.org2.example.com | [163 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc422459ea0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +orderer.example.com | [0f4 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [20d 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [97e17010] Init succeeded. Sending COMPLETED +peer1.org2.example.com | ] +peer0.org2.example.com | [164 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +peer1.org1.example.com | [2af 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [20e 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [97e17010] send state message COMPLETED +peer1.org2.example.com | [182 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx ID: [] to index +peer0.org2.example.com | [165 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenStore -> DEBU Pvtdata store opened. Initial state: isEmpty [true], lastCommittedBlock [0], batchPending [false] +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org1.example.com | [2b0 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [20f 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [97e17010] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [183 06-12 02:14:16.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [166 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer0.org2.example.com | [167 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false +peer0.org1.example.com | [210 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [97e17010] notifying Txid:97e17010-1054-416a-a28e-09ab022854d3, channelID:businesschannel +peer1.org2.example.com | [184 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12122], isChainEmpty=[false], lastBlockNumber=[0] +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +peer0.org2.example.com | [168 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +peer1.org1.example.com | [2b1 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [185 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer0.org2.example.com | [169 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +peer1.org1.example.com | [2b2 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [186 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] +peer0.org1.example.com | [211 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [16a 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +peer1.org1.example.com | [2b3 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [187 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +peer0.org1.example.com | [212 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +peer0.org2.example.com | [16b 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [2b4 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [189 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +peer0.org1.example.com | [213 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [97e17010-1054-416a-a28e-09ab022854d3] +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +peer0.org2.example.com | [16c 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +peer1.org2.example.com | [18a 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [0] +peer1.org1.example.com | [2b5 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [214 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [78f11887-9a5f-497a-a08f-0235dc0611c8] +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +peer0.org2.example.com | [16d 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [18c 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] +peer1.org2.example.com | [18d 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [0] +peer1.org2.example.com | [188 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +peer0.org2.example.com | [16e 06-12 02:14:16.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org2.example.com | [18b 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +peer1.org1.example.com | [2b6 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2b7 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [16f 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org2.example.com | [18f 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [170 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org1.example.com | [215 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] +peer1.org2.example.com | [190 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [0f5 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer0.org2.example.com | [171 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [2b8 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2b9 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [191 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +orderer.example.com | [0f6 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org2.example.com | [172 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org2.example.com | [18e 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} +peer0.org1.example.com | [216 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [78f11887-9a5f-497a-a08f-0235dc0611c8] +orderer.example.com | [0f7 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org2.example.com | [173 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org2.example.com | [192 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] +peer1.org1.example.com | [2ba 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [217 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +orderer.example.com | [0f8 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer1.org2.example.com | [193 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage +peer0.org2.example.com | [174 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org1.example.com | [2bc 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2bb 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +orderer.example.com | [0f9 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer1.org2.example.com | [194 06-12 02:14:16.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished +peer0.org2.example.com | [175 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [176 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | [0fa 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org1.example.com | [218 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [195 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [177 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | [0fb 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [0fc 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [0fd 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer1.org2.example.com | [196 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [1] +peer0.org2.example.com | [178 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [0fe 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +peer1.org2.example.com | [198 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] +peer1.org1.example.com | [2bd 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [219 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [179 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [0ff 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [199 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [1] +peer1.org2.example.com | [197 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +peer1.org2.example.com | [19a 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org2.example.com | [17a 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [100 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [19b 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [17b 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +peer1.org1.example.com | [2be 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +peer1.org1.example.com | [2bf 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +orderer.example.com | [101 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [19c 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org2.example.com | [17c 06-12 02:14:16.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] +orderer.example.com | [102 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer0.org1.example.com | [21a 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Entry +peer1.org2.example.com | [19d 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org2.example.com | [17d 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x81, 0xc5, 0xbd, 0x2f, 0xfe, 0x1f, 0xf2, 0xa7, 0x99, 0x11, 0xeb, 0x89, 0x2a, 0xfe, 0x78, 0x3e, 0xbf, 0xeb, 0x8f, 0x89, 0xbe, 0x14, 0xc1, 0x3d, 0xfa, 0x19, 0xe2, 0x63, 0x95, 0x7d, 0xd8, 0xa6} txOffsets= +orderer.example.com | [103 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer1.org1.example.com | [2c0 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [19e 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [92f080bf-c2ca-4a6b-a01e-21a9ba6de6ad] +peer0.org2.example.com | txId= locPointer=offset=38, bytesLength=12078 +orderer.example.com | [104 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [105 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer1.org2.example.com | [19f 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer0.org1.example.com | [21b 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | ] +orderer.example.com | [106 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +peer1.org2.example.com | [1a0 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [92f080bf-c2ca-4a6b-a01e-21a9ba6de6ad] +peer1.org2.example.com | [1a1 06-12 02:14:16.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [1a2 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [17e 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx ID: [] to index +orderer.example.com | [107 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer1.org2.example.com | [1a3 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [17f 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [180 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12122], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org2.example.com | [181 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] +orderer.example.com | [108 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +peer1.org2.example.com | [1a4 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [182 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] +orderer.example.com | [109 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [10a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers +orderer.example.com | [10b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer1.org2.example.com | [1a5 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [183 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +orderer.example.com | [10c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [1a6 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [1a7 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [1a8 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org2.example.com | [185 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +orderer.example.com | [10d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [1a9 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [186 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [0] +peer0.org2.example.com | [188 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] +peer0.org2.example.com | [189 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [0] +orderer.example.com | [10e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [1aa 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [184 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] +orderer.example.com | [10f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [110 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [111 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1ab 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [18a 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} +orderer.example.com | [112 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [1ac 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [1ad 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1ae 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer0.org2.example.com | [18b 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] +orderer.example.com | [113 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [1af 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [18c 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage +peer0.org1.example.com | [21c 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2c1 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +orderer.example.com | [114 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [1b0 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [18d 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished +peer0.org1.example.com | [21d 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Exit +peer1.org1.example.com | [2c2 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [115 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [1b1 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [187 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [21e 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a04dc88] Transaction completed. Sending COMPLETED +peer1.org2.example.com | [1b2 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [116 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [18e 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org1.example.com | [21f 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [1a04dc88] send state message COMPLETED +peer1.org1.example.com | [2c3 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b3 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [117 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [18f 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [220 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1a04dc88] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [2c4 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b4 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [118 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [190 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org1.example.com | [221 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1a04dc88] notifying Txid:1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c, channelID: +peer1.org1.example.com | [2c5 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\352rK+\301\240\351\0074i\ry\350\3639P\250;\272\203\236\200\323\305@q\\" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1b5 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [119 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [191 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [222 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [2c6 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\352rK+\301\240\351\0074i\ry\350\3639P\250;\272\203\236\200\323\305@q\\" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b6 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [11a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [192 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [1] +peer0.org1.example.com | [223 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c] Exit +peer1.org1.example.com | [2c7 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b7 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [11b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [194 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] +peer0.org1.example.com | [224 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1a04dc88] Exit +peer1.org2.example.com | [1b8 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [11c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [195 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [1] +peer0.org1.example.com | [225 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44168 +peer1.org2.example.com | [1b9 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [2c8 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +orderer.example.com | [11d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [193 06-12 02:14:16.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +peer0.org1.example.com | [226 06-12 02:14:17.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1ba 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [2c9 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +orderer.example.com | [11e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [196 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +peer0.org1.example.com | [227 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to peer1.org1.example.com:7051 +peer1.org2.example.com | [1bb 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [2ca 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +orderer.example.com | [11f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [197 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [228 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1bc 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [2cb 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [120 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [198 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +peer0.org1.example.com | [229 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bd 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [2cc 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2152 bytes, Signature: 0 bytes +orderer.example.com | [121 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [199 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +peer0.org1.example.com | [22a 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1be 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [22b 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 14114666230949712832, Envelope: 942 bytes, Signature: 0 bytes +orderer.example.com | [122 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [19a 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [853f9dbe-9a04-4768-8c7f-75406ddebc2b] +peer1.org2.example.com | [1bf 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [22c 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 14114666230949712832, Envelope: 942 bytes, Signature: 0 bytes +peer1.org1.example.com | [2cd 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2152 bytes, Signature: 0 bytes +orderer.example.com | [123 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [19b 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +peer1.org2.example.com | [1c0 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [22d 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 106 67 67 65 99 67 103 65 119 73 66 65 103 73 82 65 79 51 85 114 78 82 115 80 53 106 75 77 75 47 120 84 74 43 54 106 108 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 103 119 77 84 77 119 77 68 99 48 77 68 73 50 87 104 99 78 77 106 103 119 77 84 73 52 77 68 99 48 77 68 73 50 10 87 106 66 98 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 102 77 66 48 71 65 49 85 69 65 120 77 87 99 71 86 108 99 106 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 10 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 78 73 116 103 106 85 116 105 107 55 88 99 114 47 84 115 56 118 114 108 70 85 82 85 67 78 111 83 55 114 99 10 50 72 118 107 106 67 53 100 72 56 69 55 70 88 97 117 70 119 76 101 81 106 65 82 65 112 80 56 85 70 52 79 112 116 70 82 87 120 120 70 104 48 66 71 109 76 72 101 86 43 113 57 111 120 54 106 84 84 66 76 77 65 52 71 10 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 72 103 68 65 77 66 103 78 86 72 82 77 66 65 102 56 69 65 106 65 65 77 67 115 71 65 49 85 100 73 119 81 107 77 67 75 65 73 72 103 109 56 119 57 72 69 72 47 114 10 57 52 113 57 70 79 101 101 71 111 75 55 83 108 43 116 112 69 56 84 106 79 69 103 50 53 79 120 65 106 78 72 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 100 50 81 72 76 10 112 75 80 79 118 116 87 106 88 69 66 111 55 104 72 51 108 66 117 51 120 97 76 78 66 107 75 112 52 66 115 72 56 97 115 86 57 119 73 103 85 110 82 89 43 47 53 70 114 66 49 52 84 83 49 43 67 56 79 55 115 113 49 120 10 70 105 47 75 52 86 85 107 99 114 116 50 47 74 72 76 101 50 77 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer1.org1.example.com | [2ce 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [124 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [19c 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [853f9dbe-9a04-4768-8c7f-75406ddebc2b] +peer1.org2.example.com | [1c1 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [22e 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2cf 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2152 bytes, Signature: 0 bytes +orderer.example.com | [125 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [19d 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [1c2 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [22f 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2d0 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | [126 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [19e 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [1c3 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [230 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [2d1 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | [127 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer0.org2.example.com | [19f 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [1c4 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [231 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2d2 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [128 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [1a0 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [1c5 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [232 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44176 +peer1.org1.example.com | [2d3 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [129 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [1a1 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [1c6 06-12 02:14:16.74 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [233 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420435a40 +orderer.example.com | [12a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [2d4 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [1a2 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [1c7 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [234 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [12b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [2d5 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer0.org2.example.com | [1a3 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [1c8 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [235 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +orderer.example.com | [12c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [2d6 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" +peer0.org2.example.com | [1a4 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [1c9 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [236 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +orderer.example.com | [12d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [2d7 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1a5 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [1ca 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [1cb 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [12e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [12f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [1a6 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [1cc 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [130 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [237 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [1a7 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [2d8 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1cd 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [131 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [1a8 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [2d9 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1ce 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [132 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [238 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [2da 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1a9 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [1cf 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [133 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [239 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4201bc9b0, header 0xc420435da0 +peer1.org1.example.com | [2db 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1aa 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [1d0 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [134 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [23a 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [2dc 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1ab 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1d1 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [135 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [23b 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][10062d85] processing txid: 10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f +peer1.org1.example.com | [2dd 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1ac 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [1d2 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [136 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [23c 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][10062d85] Entry chaincode: name:"cscc" +peer1.org1.example.com | [2de 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ad 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [1d3 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [137 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [23d 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f] Entry chaincode: name:"cscc" version: 1.2.0 +peer1.org1.example.com | [2df 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1ae 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org2.example.com | [1d4 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [138 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [23e 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f,syscc=true,proposal=0xc4201bc9b0,canname=cscc:1.2.0) +peer1.org1.example.com | [2e0 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1af 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [139 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [1d5 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [23f 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org1.example.com | [2e1 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1b0 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [13a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [1d6 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [240 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [2e2 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1b1 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [13b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [1d7 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [241 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10062d85]Received message TRANSACTION from peer +peer1.org1.example.com | [2e3 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1b2 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [13c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [1d8 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [242 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10062d85] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [1b3 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [13d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [2e4 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1d9 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [1b4 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [13e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +orderer.example.com | [13f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +peer1.org2.example.com | [1da 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [1b5 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [243 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [10062d85] Received TRANSACTION, invoking transaction on chaincode(state:ready) +orderer.example.com | [140 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +peer1.org2.example.com | [1db 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [2e5 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1b6 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [244 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: GetChannels +peer1.org2.example.com | [1dc 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [141 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer1.org1.example.com | [2e6 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1b7 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [245 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10062d85] Transaction completed. Sending COMPLETED +peer1.org2.example.com | [1dd 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [142 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | [2e7 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b8 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [246 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [10062d85] send state message COMPLETED +peer1.org2.example.com | [1de 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [143 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +peer1.org1.example.com | [2e8 06-12 02:14:22.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1b9 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [247 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [10062d85] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [1df 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [144 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer1.org1.example.com | [2e9 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ba 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [248 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [10062d85] notifying Txid:10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f, channelID: +peer1.org2.example.com | [1e0 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [145 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org1.example.com | [2ea 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [1bb 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [249 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [1e1 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [146 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer1.org1.example.com | [2eb 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1bc 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [24a 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f] Exit +peer1.org2.example.com | [1e2 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [147 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org1.example.com | [2ec 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer0.org2.example.com | [1bd 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [24b 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][10062d85] Exit +peer1.org2.example.com | [1e3 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [148 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org1.example.com | [2ed 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer0.org2.example.com | [1be 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [24c 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44176 +peer1.org2.example.com | [1e4 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [149 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +peer1.org1.example.com | [2ee 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> INFO [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Some peer is already a leader +peer0.org2.example.com | [1bf 06-12 02:14:16.54 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [24d 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting, peers found 1 +peer1.org2.example.com | [1e5 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [14a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [2ef 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer0.org2.example.com | [1c0 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [24e 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer1.org2.example.com | [1e6 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [14b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer1.org1.example.com | [2f0 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer0.org2.example.com | [1c1 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [24f 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer1.org2.example.com | [1e7 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +orderer.example.com | [14c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org1.example.com | [2f1 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer0.org2.example.com | [1c2 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [250 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer1.org2.example.com | [1e8 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [14d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [2f2 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c3 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [251 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer1.org2.example.com | [1e9 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [2f3 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c4 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [252 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ea 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [2f4 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c5 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [253 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1eb 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [2f5 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c6 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [254 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1ec 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer1.org1.example.com | [2f6 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c7 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [255 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ed 06-12 02:14:16.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [2f8 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [1c8 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [1ee 06-12 02:14:16.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [256 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:c\254\377*\322\367\215\303\202\215\236R\010\276#\203\233\002 hSk\014O\231\371\251E\217\222\310\323\027\236V\210\344<\024\001U\264\265\"\027\013>\352\245\247\350" > > > , Envelope: 1079 bytes, Signature: 0 bytes +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | [2f9 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [1c9 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [1ef 06-12 02:14:16.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org1.example.com | [257 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +peer1.org1.example.com | [2fa 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b60420 env 0xc4223adce0 txn 0 +peer0.org2.example.com | [1ca 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [1f0 06-12 02:14:16.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [258 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:c\254\377*\322\367\215\303\202\215\236R\010\276#\203\233\002 hSk\014O\231\371\251E\217\222\310\323\027\236V\210\344<\024\001U\264\265\"\027\013>\352\245\247\350" > > > , Envelope: 1079 bytes, Signature: 0 bytes +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +peer1.org1.example.com | [2fb 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4223adce0 +peer0.org2.example.com | [1cb 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [1f1 06-12 02:14:16.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [259 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer0.org2.example.com | [1cc 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [2fc 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +peer1.org2.example.com | [1f2 06-12 02:14:16.76 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [25a 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +peer0.org2.example.com | [1cd 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [2fd 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [1f3 06-12 02:14:16.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +peer0.org1.example.com | [25b 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +peer0.org2.example.com | [1ce 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [2fe 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [1f4 06-12 02:14:16.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +peer0.org1.example.com | [25c 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +orderer.example.com | 3BDFnYuSFYhOCexVkA== +peer0.org2.example.com | [1cf 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [2ff 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer1.org2.example.com | [1f5 06-12 02:14:16.76 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [1d0 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [25d 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [300 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [1f6 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.InitChain -> DEBU Init chain businesschannel +orderer.example.com | [14e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150ca8 gate 1528769655419053400 evaluation starts +peer0.org2.example.com | [1d1 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [25e 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [301 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [1f7 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +orderer.example.com | [14f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ca8 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [1d2 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [25f 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [302 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422bcc000, header channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +peer1.org2.example.com | [1f8 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer0.org2.example.com | [1d3 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [150 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ca8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [260 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [303 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org2.example.com | [1f9 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.InvokeNoShim.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain +peer0.org2.example.com | [1d4 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [151 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer0.org1.example.com | [261 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [304 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [1fa 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [1d5 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [152 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ca8 principal matched by identity 0 +peer0.org1.example.com | [262 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [305 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [1fb 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a4323485-cea6-4c80-bf0e-52e99dbe6c82] +peer0.org2.example.com | [1d6 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [153 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bf 00 74 70 c2 fd 54 51 db af 93 ff e3 4e fe 3f |..tp..TQ.....N.?| +peer0.org1.example.com | [263 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:c\254\377*\322\367\215\303\202\215\236R\010\276#\203\233\002 hSk\014O\231\371\251E\217\222\310\323\027\236V\210\344<\024\001U\264\265\"\027\013>\352\245\247\350" > > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\006\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 o/\376\252)\343K\304\227}\267\020\360\372\371\361\206\305\017\340\335\001\273\037\025!E\313\016S\232\256\002 *\360\025[*\344<\n\216\271\004@K\370]\223\001\325\304\301\322b\244S\267\002\371b2di\205" secret_envelope: > +peer1.org1.example.com | [306 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [1fc 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=a4323485-cea6-4c80-bf0e-52e99dbe6c82,syscc=true,proposal=0x0,canname=cscc:1.2.0) +peer0.org2.example.com | [1d7 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | 00000010 7a a3 f9 cd dc 58 3c 56 43 04 b8 af fb 47 b8 ca |z....X DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fd 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer0.org2.example.com | [1d8 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [154 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f6 fd be ec 9d 50 e1 e4 17 a8 0b |0E.!......P.....| +peer0.org1.example.com | [265 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [307 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [1fe 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [1d9 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | 00000010 c0 3b ea a8 5a 74 61 96 9b d6 89 2f 44 8f d4 39 |.;..Zta..../D..9| +peer0.org1.example.com | [266 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44184 +peer1.org1.example.com | [308 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [1ff 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4323485]Received message INIT from peer +peer0.org2.example.com | [1da 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | 00000020 61 cf ad 9d 70 02 20 0a 73 71 06 87 71 f1 ef d6 |a...p. .sq..q...| +peer0.org1.example.com | [267 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4203ee2a0 +peer1.org1.example.com | [309 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [200 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a4323485] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [1db 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | 00000030 84 1d a2 de 09 5d 60 3f ad 89 80 d5 b4 b8 b9 28 |.....]`?.......(| +peer0.org1.example.com | [268 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [30a 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [201 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a4323485] Received INIT, initializing chaincode +peer0.org2.example.com | [1dc 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | 00000040 58 7b 5f c4 50 80 45 |X{_.P.E| +peer0.org1.example.com | [269 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [30b 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [202 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer0.org2.example.com | [1dd 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [155 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ca8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [26a 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org1.example.com | [30c 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [203 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4323485] Init get response status: 200 +peer0.org2.example.com | [1de 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [156 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150ca8 gate 1528769655419053400 evaluation succeeds +peer0.org1.example.com | [26b 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [30d 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [204 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a4323485] Init succeeded. Sending COMPLETED +orderer.example.com | [157 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [1df 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [26c 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [30e 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [205 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a4323485] send state message COMPLETED +orderer.example.com | [158 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [1e0 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [26d 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42049e3c0, header 0xc4203ee6c0 +peer1.org1.example.com | [30f 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [206 06-12 02:14:16.77 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a4323485] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [159 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy +peer0.org2.example.com | [1e1 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [26e 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer1.org1.example.com | [310 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [207 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a4323485] notifying Txid:a4323485-cea6-4c80-bf0e-52e99dbe6c82, channelID:businesschannel +orderer.example.com | [15a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +peer0.org2.example.com | [1e2 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [311 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [26f 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][e01fcd58] processing txid: e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8 +peer1.org2.example.com | [208 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | [15b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [1e3 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org1.example.com | [312 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [270 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][e01fcd58] Entry chaincode: name:"qscc" +peer1.org2.example.com | [209 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | [15c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [1e4 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [313 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [271 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8] Entry chaincode: name:"qscc" version: 1.2.0 +peer1.org2.example.com | [20a 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a4323485-cea6-4c80-bf0e-52e99dbe6c82] +orderer.example.com | [15d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [1e5 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [314 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer0.org1.example.com | [272 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8,syscc=true,proposal=0xc42049e3c0,canname=qscc:1.2.0) +peer1.org2.example.com | [20b 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [15e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [1e6 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [315 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [273 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer1.org2.example.com | [20c 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [12f2fd68-49d7-4e2a-b95c-1a79d329766b] +orderer.example.com | [15f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [1e7 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [316 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [274 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [20d 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=12f2fd68-49d7-4e2a-b95c-1a79d329766b,syscc=true,proposal=0x0,canname=lscc:1.2.0) +orderer.example.com | [160 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [1e8 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [317 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [275 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e01fcd58]Received message TRANSACTION from peer +peer1.org2.example.com | [20e 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +orderer.example.com | [161 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [1e9 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [318 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [276 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e01fcd58] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [20f 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [1ea 06-12 02:14:16.55 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | [162 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [319 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [277 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [e01fcd58] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org2.example.com | [210 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12f2fd68]Received message INIT from peer +peer0.org2.example.com | [1eb 06-12 02:14:16.56 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +orderer.example.com | [163 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [278 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer1.org1.example.com | [31a 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [211 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [12f2fd68] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org2.example.com | [1ec 06-12 02:14:16.56 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +orderer.example.com | [164 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [279 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo +peer0.org1.example.com | [27a 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e01fcd58] Transaction completed. Sending COMPLETED +peer1.org1.example.com | [2f7 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ed 06-12 02:14:16.56 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +orderer.example.com | [165 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [27b 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [e01fcd58] send state message COMPLETED +peer1.org1.example.com | [31b 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [212 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [12f2fd68] Received INIT, initializing chaincode +peer0.org2.example.com | [1ee 06-12 02:14:16.56 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +orderer.example.com | [166 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [27c 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e01fcd58] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [31c 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [213 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12f2fd68] Init get response status: 200 +peer0.org2.example.com | [1ef 06-12 02:14:16.56 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +orderer.example.com | [167 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [168 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [31d 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [214 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [12f2fd68] Init succeeded. Sending COMPLETED +peer0.org2.example.com | [1f0 06-12 02:14:16.56 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +orderer.example.com | [169 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [27d 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [e01fcd58] notifying Txid:e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8, channelID: +peer1.org1.example.com | [31e 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [215 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [12f2fd68] send state message COMPLETED +peer0.org2.example.com | [1f1 06-12 02:14:16.56 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +orderer.example.com | [16a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [27e 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [31f 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [1f2 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.InitChain -> DEBU Init chain businesschannel +peer1.org2.example.com | [216 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [12f2fd68] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [16b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [27f 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8] Exit +peer1.org1.example.com | [320 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [1f5 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.InvokeNoShim.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain +peer1.org2.example.com | [217 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [12f2fd68] notifying Txid:12f2fd68-49d7-4e2a-b95c-1a79d329766b, channelID:businesschannel +orderer.example.com | [16c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [280 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][e01fcd58] Exit +peer1.org1.example.com | [321 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [1f3 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer1.org2.example.com | [218 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | [16d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [281 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44184 +peer1.org1.example.com | [322 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [1f4 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer1.org2.example.com | [219 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | [16e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [282 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes +peer1.org1.example.com | [323 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [1f6 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [21a 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [12f2fd68-49d7-4e2a-b95c-1a79d329766b] +orderer.example.com | [16f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [283 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes +peer1.org1.example.com | [324 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [1f7 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8de4dad0-341e-4553-8bee-7520fe0ecc31] +peer1.org2.example.com | [21b 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [170 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [284 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [325 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [1f8 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=8de4dad0-341e-4553-8bee-7520fe0ecc31,syscc=true,proposal=0x0,canname=cscc:1.2.0) +peer1.org2.example.com | [21c 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [656188e7-d234-4d25-92fb-b5ff7afd924a] +orderer.example.com | [171 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [285 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [326 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [1f9 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org2.example.com | [21d 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=656188e7-d234-4d25-92fb-b5ff7afd924a,syscc=true,proposal=0x0,canname=qscc:1.2.0) +orderer.example.com | [172 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [286 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [327 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [1fa 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [21e 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +orderer.example.com | [173 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [287 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [328 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [1fb 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8de4dad0]Received message INIT from peer +peer1.org2.example.com | [21f 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +orderer.example.com | [174 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608F7D8FCD80522...B8672FD20535A6286A7AFD427C321642 +peer1.org1.example.com | [329 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [288 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1fc 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8de4dad0] Handling ChaincodeMessage of type: INIT(state:ready) +peer1.org2.example.com | [220 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [656188e7]Received message INIT from peer +orderer.example.com | [175 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: C6BCF7FC116A929A2D0EFA9214D9D6E9B21ADE8ACFDEC8A8352AEFCDBD16CAAF +peer1.org1.example.com | [32a 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [289 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1fd 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8de4dad0] Received INIT, initializing chaincode +peer1.org2.example.com | [221 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [656188e7] Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | [176 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [32b 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [28a 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1fe 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +peer1.org2.example.com | [222 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [656188e7] Received INIT, initializing chaincode +orderer.example.com | [177 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [32c 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [28b 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [223 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +peer0.org2.example.com | [1ff 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8de4dad0] Init get response status: 200 +orderer.example.com | [178 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608F7D8FCD80522...C192F82CB85D27F2A7E0DBFB3A7704B4 +peer1.org1.example.com | [32d 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [28c 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [224 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [656188e7] Init get response status: 200 +peer0.org2.example.com | [200 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8de4dad0] Init succeeded. Sending COMPLETED +orderer.example.com | [179 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: AF91A8125C29B97C47B5E091BDD3A2ECC5E4C4C6DA8964E49E75398B53FDAC24 +peer1.org1.example.com | [32e 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [28d 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [225 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [656188e7] Init succeeded. Sending COMPLETED +peer0.org2.example.com | [201 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8de4dad0] send state message COMPLETED +orderer.example.com | [17a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer1.org1.example.com | [32f 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [28e 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [226 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [656188e7] send state message COMPLETED +peer0.org2.example.com | [202 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8de4dad0] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [17b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [330 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [28f 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [227 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [656188e7] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [203 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8de4dad0] notifying Txid:8de4dad0-341e-4553-8bee-7520fe0ecc31, channelID:businesschannel +orderer.example.com | [17c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +peer1.org1.example.com | [331 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [290 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [228 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [656188e7] notifying Txid:656188e7-d234-4d25-92fb-b5ff7afd924a, channelID:businesschannel +peer0.org2.example.com | [204 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | [17d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [332 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [291 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [229 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [205 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +orderer.example.com | [17e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer1.org1.example.com | [333 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [292 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [22a 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org2.example.com | [206 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8de4dad0-341e-4553-8bee-7520fe0ecc31] +orderer.example.com | [17f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org1.example.com | [334 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [22b 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [656188e7-d234-4d25-92fb-b5ff7afd924a] +peer0.org1.example.com | [293 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [207 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [180 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [335 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [22c 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [28659f42-277f-4571-aaea-3cdd31062942] +peer0.org1.example.com | [294 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [208 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a1cb60db-86c2-48d4-abee-af6d956b3d08] +orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw +peer1.org1.example.com | [336 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [22d 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] +peer0.org1.example.com | [295 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\007\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\366<\272\016(\r\037\332\314\214{d\207\320\251\201\035B\230\261E-L\000\357\005g\277\031\230y\243\002 \033\212(\242\334\316%\r\021\204\310\004\357R\374UW\016\272\024}\204\332\333\006,\013\222\236\032[\234" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [209 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=a1cb60db-86c2-48d4-abee-af6d956b3d08,syscc=true,proposal=0x0,canname=lscc:1.2.0) +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [22e 06-12 02:14:16.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [28659f42-277f-4571-aaea-3cdd31062942] +peer1.org1.example.com | [337 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [296 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\007\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\366<\272\016(\r\037\332\314\214{d\207\320\251\201\035B\230\261E-L\000\357\005g\277\031\230y\243\002 \033\212(\242\334\316%\r\021\204\310\004\357R\374UW\016\272\024}\204\332\333\006,\013\222\236\032[\234" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer0.org2.example.com | [20a 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [22f 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +peer1.org1.example.com | [338 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [297 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20b 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE +peer1.org2.example.com | [230 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [339 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [298 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [20c 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1cb60db]Received message INIT from peer +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [231 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [33a 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org1.example.com | [299 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [20d 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a1cb60db] Handling ChaincodeMessage of type: INIT(state:ready) +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +peer1.org2.example.com | [232 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Entry +peer1.org1.example.com | [33b 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [29a 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20e 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a1cb60db] Received INIT, initializing chaincode +orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO +peer1.org2.example.com | [233 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [33c 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [29b 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +peer0.org2.example.com | [20f 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1cb60db] Init get response status: 200 +orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +peer1.org2.example.com | [234 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event sent successfully +peer1.org1.example.com | [33d 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [29c 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [210 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a1cb60db] Init succeeded. Sending COMPLETED +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o +peer1.org2.example.com | [235 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Exit +peer1.org1.example.com | [33e 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [29d 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +peer0.org2.example.com | [211 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a1cb60db] send state message COMPLETED +orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR +peer1.org2.example.com | [236 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [617e217e] Transaction completed. Sending COMPLETED +peer1.org1.example.com | [33f 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [29e 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [212 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a1cb60db] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= +peer1.org2.example.com | [237 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [617e217e] send state message COMPLETED +peer1.org1.example.com | [340 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [213 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a1cb60db] notifying Txid:a1cb60db-86c2-48d4-abee-af6d956b3d08, channelID:businesschannel +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [29f 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [238 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [617e217e] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [341 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [214 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | [181 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503c8 gate 1528769655426299600 evaluation starts +peer0.org1.example.com | [2a0 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [239 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [617e217e] notifying Txid:617e217e6e3c0848a25a8cdb41dbb357cef2ad0e705f8f4c416fca9b504400c2, channelID: +peer1.org1.example.com | [342 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [215 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +orderer.example.com | [182 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [2a1 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [23a 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [343 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [216 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a1cb60db-86c2-48d4-abee-af6d956b3d08] +orderer.example.com | [183 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [2a2 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [344 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [23b 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][617e217e6e3c0848a25a8cdb41dbb357cef2ad0e705f8f4c416fca9b504400c2] Exit +peer0.org2.example.com | [217 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2a3 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +orderer.example.com | [184 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer1.org1.example.com | [345 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [23c 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][617e217e] Exit +peer0.org2.example.com | [218 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [93b0f767-cd25-4575-9d90-94d9ece54b77] +peer0.org1.example.com | [2a4 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +orderer.example.com | [185 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org1.example.com | [346 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org2.example.com | [23d 06-12 02:14:16.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49306 +peer0.org2.example.com | [219 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=93b0f767-cd25-4575-9d90-94d9ece54b77,syscc=true,proposal=0x0,canname=qscc:1.2.0) +peer0.org1.example.com | [2a5 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +orderer.example.com | [186 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 principal matched by identity 0 +peer1.org1.example.com | [347 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [23e 06-12 02:14:16.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [21a 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer0.org1.example.com | [2a6 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [187 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 af 91 a8 12 5c 29 b9 7c 47 b5 e0 91 bd d3 a2 ec |....\).|G.......| +peer1.org1.example.com | [348 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [23f 06-12 02:14:16.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to peer0.org2.example.com:7051 +peer0.org2.example.com | [21b 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [2a7 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000010 c5 e4 c4 c6 da 89 64 e4 9e 75 39 8b 53 fd ac 24 |......d..u9.S..$| +peer1.org1.example.com | [349 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [240 06-12 02:14:16.82 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [21c 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93b0f767]Received message INIT from peer +peer0.org1.example.com | [2a8 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [188 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2d 97 02 d3 3b 8c 63 f9 27 b3 3d 13 |0D. -...;.c.'.=.| +peer1.org1.example.com | [34a 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [241 06-12 02:14:16.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org2.example.com | [21d 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [93b0f767] Handling ChaincodeMessage of type: INIT(state:ready) +peer0.org1.example.com | [2a9 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | 00000010 a5 7f 73 df 5c d8 af a8 9b 07 3b 46 43 be de 30 |..s.\.....;FC..0| +peer1.org1.example.com | [34b 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [242 06-12 02:14:16.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21e 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [93b0f767] Received INIT, initializing chaincode +orderer.example.com | 00000020 31 db fa f7 02 20 4d 2a 99 b3 df dc 9a 8f 7e 03 |1.... M*......~.| +peer0.org1.example.com | [2ab 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [34c 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [243 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 6036099445171741582, Envelope: 941 bytes, Signature: 0 bytes +peer0.org2.example.com | [21f 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +orderer.example.com | 00000030 74 07 fd 37 50 89 86 a1 1a 09 43 7b e3 a9 14 d5 |t..7P.....C{....| +peer0.org1.example.com | [2ac 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [34d 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [244 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 6036099445171741582, Envelope: 941 bytes, Signature: 0 bytes +peer0.org2.example.com | [220 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93b0f767] Init get response status: 200 +orderer.example.com | 00000040 c5 aa 5e 88 4a ba |..^.J.| +peer0.org1.example.com | [2aa 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [34e 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [245 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 6036099445171741582, Envelope: 941 bytes, Signature: 0 bytes +peer0.org2.example.com | [221 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [93b0f767] Init succeeded. Sending COMPLETED +orderer.example.com | [189 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [2ad 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org1.example.com | [34f 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [246 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 88 112 117 99 49 88 68 101 115 51 113 78 103 118 98 55 115 105 73 47 73 68 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 53 51 108 56 83 103 113 56 118 110 48 112 72 122 108 103 103 47 85 112 109 85 74 98 48 107 106 56 87 71 68 106 10 83 80 86 114 57 109 99 81 117 69 109 101 99 57 65 53 111 55 90 109 113 53 121 47 112 98 85 52 100 51 84 48 80 52 111 69 80 78 52 65 104 107 54 122 100 80 47 75 108 119 43 119 80 54 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 75 50 72 97 75 52 108 10 88 81 105 117 49 88 120 103 73 106 84 53 56 99 116 111 90 111 84 67 116 53 111 104 74 99 121 113 83 55 78 115 71 114 83 117 65 105 65 53 86 119 47 84 121 75 110 107 80 76 86 115 50 66 49 111 49 74 102 70 105 71 43 83 10 81 104 56 48 97 84 110 65 101 103 83 84 83 113 109 65 49 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer0.org2.example.com | [222 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [93b0f767] send state message COMPLETED +orderer.example.com | [18a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503c8 gate 1528769655426299600 evaluation succeeds +peer0.org1.example.com | [2ae 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [350 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [247 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [223 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [93b0f767] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [18b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [2af 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 1 items, Envelope: 199 bytes, Signature: 0 bytes +peer1.org1.example.com | [351 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [248 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +orderer.example.com | [18c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [224 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [93b0f767] notifying Txid:93b0f767-cd25-4575-9d90-94d9ece54b77, channelID:businesschannel +peer0.org1.example.com | [2b0 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [352 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [18d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +peer1.org2.example.com | [249 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [225 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [2b1 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [353 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [18e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +peer1.org2.example.com | [24a 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [226 06-12 02:14:16.57 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +peer0.org1.example.com | [2b2 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [354 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [18f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +peer1.org2.example.com | [24b 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org2.example.com | [227 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [93b0f767-cd25-4575-9d90-94d9ece54b77] +peer0.org1.example.com | [2b3 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [355 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [190 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +peer1.org2.example.com | [24c 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org2.example.com | [228 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [54cff74e-58c8-4970-ba51-feaab1b5a610] +peer0.org1.example.com | [2b4 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [191 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [356 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [24d 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org2.example.com | [229 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] +peer0.org1.example.com | [2b5 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [192 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [357 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [24e 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22a 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [54cff74e-58c8-4970-ba51-feaab1b5a610] +peer0.org1.example.com | [2b6 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +orderer.example.com | [193 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [358 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [24f 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org2.example.com | [22b 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +peer0.org1.example.com | [2b7 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [194 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [359 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [250 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [22c 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [2b8 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [35a 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [195 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [251 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [22d 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [2b9 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [196 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [252 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22e 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Entry +peer1.org1.example.com | [35b 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [2ba 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [197 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [253 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [22f 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [35c 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [2bb 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [198 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [254 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [230 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event sent successfully +peer1.org1.example.com | [35d 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [199 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [231 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Exit +peer1.org2.example.com | [255 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [35e 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [19a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [2bc 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\352rK+\301\240\351\0074i\ry\350\3639P\250;\272\203\236\200\323\305@q\\" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +peer0.org2.example.com | [232 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1499cc9f] Transaction completed. Sending COMPLETED +peer1.org2.example.com | [256 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +peer1.org1.example.com | [35f 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [19b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [2bd 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [233 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [1499cc9f] send state message COMPLETED +peer1.org2.example.com | [257 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +peer1.org1.example.com | [360 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [19c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [234 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1499cc9f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2be 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352rK+\301\240\351\0074i\ry\350\3639P\250;\272\203\236\200\323\305@q\\" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +peer1.org2.example.com | [258 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [361 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [19d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [235 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1499cc9f] notifying Txid:1499cc9ff03e24ed69240a4c571a4326ad0011b2ac145cd99d68ec2880bcddc9, channelID: +peer0.org1.example.com | [2bf 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [259 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [362 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [19e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [236 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [2c0 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [25a 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [363 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [19f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [237 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1499cc9ff03e24ed69240a4c571a4326ad0011b2ac145cd99d68ec2880bcddc9] Exit +peer0.org1.example.com | [2c1 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [25b 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [25c 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49314 +orderer.example.com | [1a0 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [238 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1499cc9f] Exit +peer0.org1.example.com | [2c2 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [25d 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422a06b10 +orderer.example.com | [1a1 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [364 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [239 06-12 02:14:16.58 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:59354 +peer0.org1.example.com | [2c3 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [25e 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | [1a2 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [365 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [23a 06-12 02:14:16.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org1.example.com | [2c4 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [25f 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +orderer.example.com | [1a3 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer1.org1.example.com | [366 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [23b 06-12 02:14:16.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org1.example.com | [2c5 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [260 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +orderer.example.com | [1a4 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [367 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [23c 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [261 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [2c6 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [368 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [23d 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [262 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [2c7 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [369 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [23e 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [263 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422268690, header 0xc422a06e70 +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [2c8 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2152 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [36a 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [23f 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +peer1.org2.example.com | [264 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer0.org1.example.com | [2c9 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\352rK+\301\240\351\0074i\ry\350\3639P\250;\272\203\236\200\323\305@q\\" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\010\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\311TD\016\242\307\342\231o\022\213>\243pK\236\372\023>\340G\257\005\001\001FeA\032\351\005\245\002 \020\t\021H\3351p\256\2074\321Q)\342\336+\230\272\324\005>\367\310sM\004\320\352'\016\204C" secret_envelope: > +peer1.org1.example.com | [36b 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org2.example.com | [240 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [265 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][dbd311ca] processing txid: dbd311cab5952af3a777e3b9eb35e3f27c8a6a9784a19facd974ecbfc4e9fb13 +peer0.org1.example.com | [2ca 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2152 bytes, Signature: 0 bytes +peer1.org1.example.com | [36c 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org1.example.com | [36d 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [266 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][dbd311ca] Entry chaincode: name:"cscc" +peer0.org1.example.com | [2cb 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +peer1.org1.example.com | [36e 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [241 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [267 06-12 02:14:17.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][dbd311cab5952af3a777e3b9eb35e3f27c8a6a9784a19facd974ecbfc4e9fb13] Entry chaincode: name:"cscc" version: 1.2.0 +peer0.org1.example.com | [2cc 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +peer1.org1.example.com | [36f 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [242 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [268 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=dbd311cab5952af3a777e3b9eb35e3f27c8a6a9784a19facd974ecbfc4e9fb13,syscc=true,proposal=0xc422268690,canname=cscc:1.2.0) +peer0.org1.example.com | [2cd 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer1.org1.example.com | [370 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [269 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org1.example.com | [371 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +peer0.org2.example.com | [243 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [26a 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [372 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [2ce 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +peer0.org2.example.com | [244 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [26b 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbd311ca]Received message TRANSACTION from peer +peer1.org1.example.com | [373 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [2cf 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +peer0.org2.example.com | [245 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [26c 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dbd311ca] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [374 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [2d0 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [246 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [26d 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dbd311ca] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [375 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [2d1 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.beLeader -> INFO [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Becoming a leader +peer0.org2.example.com | [247 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1a5 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [26e 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: GetChannels +peer1.org1.example.com | [376 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer0.org1.example.com | [2d2 06-12 02:14:22.19 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 | [248 06-12 02:14:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [26f 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dbd311ca] Transaction completed. Sending COMPLETED +peer1.org1.example.com | [377 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer0.org1.example.com | [2d3 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org2.example.com | [249 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:59362 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [270 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [dbd311ca] send state message COMPLETED +peer0.org1.example.com | [2d4 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer1.org1.example.com | [378 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer0.org2.example.com | [24a 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221215f0 +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [271 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dbd311ca] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2d5 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer1.org1.example.com | [379 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer0.org2.example.com | [24b 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +peer1.org2.example.com | [272 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [dbd311ca] notifying Txid:dbd311cab5952af3a777e3b9eb35e3f27c8a6a9784a19facd974ecbfc4e9fb13, channelID: +peer0.org1.example.com | [2d6 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +peer0.org1.example.com | [2d7 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +peer0.org2.example.com | [24c 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [273 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [2d8 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +peer0.org2.example.com | [24d 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer1.org1.example.com | [37a 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [274 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][dbd311cab5952af3a777e3b9eb35e3f27c8a6a9784a19facd974ecbfc4e9fb13] Exit +peer0.org1.example.com | [2d9 06-12 02:14:22.19 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 | [24e 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [37b 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:7051 +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +peer1.org2.example.com | [275 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][dbd311ca] Exit +peer0.org1.example.com | [2da 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +peer0.org2.example.com | [24f 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [37c 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [276 06-12 02:14:17.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49314 +peer0.org1.example.com | [2db 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [250 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420270fa0, header 0xc422121950 +peer1.org1.example.com | [37d 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +peer1.org2.example.com | [277 06-12 02:14:17.77 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting, peers found 1 +peer0.org1.example.com | [2dc 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [251 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +peer1.org1.example.com | [37e 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +peer1.org2.example.com | [278 06-12 02:14:17.77 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer0.org1.example.com | [2dd 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [252 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][961d73cc] processing txid: 961d73cca37a57e70c72715b2877a1feffdfd031de9de19c5d69a4c6372dfc1e +peer1.org1.example.com | [37f 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:6812725869896769966 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +peer1.org2.example.com | [279 06-12 02:14:17.77 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer0.org1.example.com | [2de 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +peer0.org2.example.com | [253 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][961d73cc] Entry chaincode: name:"cscc" +peer1.org1.example.com | [380 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:6812725869896769966 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [27a 06-12 02:14:17.77 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer0.org1.example.com | [2df 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +peer0.org2.example.com | [254 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][961d73cca37a57e70c72715b2877a1feffdfd031de9de19c5d69a4c6372dfc1e] Entry chaincode: name:"cscc" version: 1.2.0 +peer1.org1.example.com | [381 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1a6 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org2.example.com | [27b 06-12 02:14:17.78 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer0.org1.example.com | [2e0 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [255 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=961d73cca37a57e70c72715b2877a1feffdfd031de9de19c5d69a4c6372dfc1e,syscc=true,proposal=0xc420270fa0,canname=cscc:1.2.0) +peer1.org1.example.com | [382 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer0.org1.example.com:7051, PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] isn't responsive: EOF +orderer.example.com | [1a7 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [27c 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49322 +peer0.org1.example.com | [2e1 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [256 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +peer1.org1.example.com | [383 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182]] +orderer.example.com | [1a8 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org2.example.com | [27d 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4222baf30 +peer0.org1.example.com | [2e2 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42254c7c0 env 0xc4222c1da0 txn 0 +peer0.org2.example.com | [257 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [384 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182], Metadata: [] +orderer.example.com | [1a9 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [27e 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [2e3 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4222c1da0 +peer0.org2.example.com | [258 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [961d73cc]Received message TRANSACTION from peer +orderer.example.com | [1aa 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [385 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/comm] expireDeadMembers.CloseConn.CloseConn -> DEBU Closing connection for , PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [27f 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [2e4 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer0.org2.example.com | [259 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [961d73cc] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [1ab 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [386 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +peer1.org2.example.com | [280 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org1.example.com | [2e5 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +peer0.org2.example.com | [25a 06-12 02:14:17.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [961d73cc] Received TRANSACTION, invoking transaction on chaincode(state:ready) +orderer.example.com | [1ac 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [387 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [281 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [2e6 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [25b 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: GetChannels +orderer.example.com | [1ad 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [388 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [282 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [2e7 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [25c 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [961d73cc] Transaction completed. Sending COMPLETED +orderer.example.com | [1ae 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [389 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [283 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422a74280, header 0xc4222bb290 +peer0.org1.example.com | [2e8 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer0.org2.example.com | [25d 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [961d73cc] send state message COMPLETED +orderer.example.com | [1af 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [38a 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [284 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [2e9 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [25e 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [961d73cc] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [1b0 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [38b 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [285 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][42b8aa3d] processing txid: 42b8aa3d836e5c46c7e1125455f45fd3e4ae3f9c9ed292ddc9cb468acd989bbc +peer0.org1.example.com | [2ea 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [25f 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [961d73cc] notifying Txid:961d73cca37a57e70c72715b2877a1feffdfd031de9de19c5d69a4c6372dfc1e, channelID: +orderer.example.com | [1b1 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [1b2 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org2.example.com | [286 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][42b8aa3d] Entry chaincode: name:"qscc" +peer0.org1.example.com | [2ec 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +peer0.org2.example.com | [260 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | [1b3 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [287 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][42b8aa3d836e5c46c7e1125455f45fd3e4ae3f9c9ed292ddc9cb468acd989bbc] Entry chaincode: name:"qscc" version: 1.2.0 +peer1.org1.example.com | [38c 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b60420 env 0xc4223adce0 txn 0 +peer0.org1.example.com | [2eb 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422a63000, header channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +peer0.org2.example.com | [261 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][961d73cca37a57e70c72715b2877a1feffdfd031de9de19c5d69a4c6372dfc1e] Exit +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [288 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=42b8aa3d836e5c46c7e1125455f45fd3e4ae3f9c9ed292ddc9cb468acd989bbc,syscc=true,proposal=0xc422a74280,canname=qscc:1.2.0) +peer1.org1.example.com | [38d 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [2ee 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [262 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][961d73cc] Exit +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [289 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer1.org1.example.com | [38e 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [2ef 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [263 06-12 02:14:17.36 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:59362 +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [28a 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [38f 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [2f0 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes +peer0.org2.example.com | [264 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer1.org2.example.com | [28b 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [42b8aa3d]Received message TRANSACTION from peer +peer1.org1.example.com | [390 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +peer0.org1.example.com | [2f1 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [265 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to peer1.org2.example.com:7051 +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [28c 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [42b8aa3d] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [391 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [2f2 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes +peer0.org2.example.com | [266 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | [28d 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [42b8aa3d] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [392 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +peer0.org1.example.com | [2f3 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [267 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org2.example.com | [28e 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer1.org1.example.com | [393 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [2ed 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org2.example.com | [268 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +peer1.org2.example.com | [28f 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo +peer1.org1.example.com | [394 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [2f4 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [269 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [290 06-12 02:14:18.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [42b8aa3d] Transaction completed. Sending COMPLETED +peer1.org1.example.com | [395 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org1.example.com | [396 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org2.example.com | [26a 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +peer1.org2.example.com | [291 06-12 02:14:18.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [42b8aa3d] send state message COMPLETED +peer1.org1.example.com | [397 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [26b 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +peer0.org1.example.com | [2f5 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [292 06-12 02:14:18.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [42b8aa3d] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [398 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org2.example.com | [26c 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 6222523723437813282, Envelope: 937 bytes, Signature: 0 bytes +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +peer1.org2.example.com | [293 06-12 02:14:18.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [42b8aa3d] notifying Txid:42b8aa3d836e5c46c7e1125455f45fd3e4ae3f9c9ed292ddc9cb468acd989bbc, channelID: +peer0.org1.example.com | [2f6 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [399 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [26d 06-12 02:14:17.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 6222523723437813282, Envelope: 937 bytes, Signature: 0 bytes +orderer.example.com | CSJWn+U1 +peer1.org2.example.com | [294 06-12 02:14:18.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [2f7 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [26e 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 146 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 68 67 67 65 98 43 103 65 119 73 66 65 103 73 81 68 55 78 84 87 68 110 51 118 56 117 51 98 83 114 117 51 65 107 65 57 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 83 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 120 86 104 55 77 65 117 65 106 86 121 98 110 114 88 100 97 74 75 81 75 56 75 81 108 49 54 108 113 56 107 70 10 52 67 89 67 83 53 53 104 114 114 77 106 122 121 120 99 117 108 98 52 84 88 118 77 55 75 106 78 81 71 112 97 120 115 50 78 87 85 110 90 114 111 81 78 120 47 107 57 78 79 99 78 118 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 82 119 65 119 82 65 73 103 82 49 121 68 68 120 77 115 10 83 103 48 49 68 73 75 97 108 114 69 102 98 76 112 67 70 99 72 66 83 121 70 113 88 86 49 57 84 110 90 109 71 83 111 67 73 71 83 120 65 75 67 98 106 108 53 114 72 101 106 115 86 83 49 101 117 55 104 53 53 50 98 89 10 50 69 100 70 69 122 87 103 111 82 85 72 113 119 105 57 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [295 06-12 02:14:18.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][42b8aa3d836e5c46c7e1125455f45fd3e4ae3f9c9ed292ddc9cb468acd989bbc] Exit +peer1.org1.example.com | [39a 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org1.example.com | [2f8 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [26f 06-12 02:14:17.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1b4 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [296 06-12 02:14:18.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][42b8aa3d] Exit +peer1.org1.example.com | [39b 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [2f9 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [270 06-12 02:14:17.57 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting, peers found 1 +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [297 06-12 02:14:18.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49322 +peer1.org1.example.com | [39c 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org1.example.com | [2fa 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [271 06-12 02:14:17.57 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [298 06-12 02:14:19.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [299 06-12 02:14:19.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [29a 06-12 02:14:19.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [272 06-12 02:14:17.57 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [29b 06-12 02:14:19.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [273 06-12 02:14:17.57 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer1.org1.example.com | [39d 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +peer0.org1.example.com | [2fb 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +peer1.org2.example.com | [29c 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [274 06-12 02:14:17.57 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer1.org1.example.com | [39e 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org1.example.com | [2fc 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org2.example.com | [29d 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [275 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:59370 +peer1.org1.example.com | [39f 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [2fd 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [29e 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [276 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4221d2c60 +peer1.org1.example.com | [3a0 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [2fe 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +peer1.org2.example.com | [29f 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [277 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [3a1 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +peer0.org1.example.com | [2ff 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +peer1.org2.example.com | [2a0 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1075 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [278 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [279 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org2.example.com | [27a 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +peer1.org2.example.com | [2a1 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1075 bytes, Signature: 0 bytes +peer0.org2.example.com | [27b 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +peer1.org1.example.com | [3a2 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] +peer1.org1.example.com | [3a3 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x71, 0x5a, 0x51, 0xe9, 0xa2, 0xaf, 0xec, 0xef, 0x2d, 0x90, 0x9d, 0xf1, 0x4a, 0x14, 0x48, 0x4f, 0xc, 0x23, 0xa9, 0xe9, 0xf2, 0xac, 0x62, 0xe, 0xce, 0x9a, 0x5e, 0x31, 0xff, 0x8c, 0x6, 0xcb} txOffsets= +peer1.org2.example.com | [2a2 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27c 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc420271bd0, header 0xc4221d3050 +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +peer1.org2.example.com | [2a3 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2149 bytes, Signature: 0 bytes +peer0.org1.example.com | [300 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [27d 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [2a4 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2149 bytes, Signature: 0 bytes +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12094 +peer0.org1.example.com | [301 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [27e 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][e68ca1bd] processing txid: e68ca1bd170486724ac09320af5be141e5a9cf941d0723b0dd59d6de122c8ebb +orderer.example.com | [1b5 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [2a5 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | ] +peer0.org1.example.com | [302 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [27f 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][e68ca1bd] Entry chaincode: name:"qscc" +orderer.example.com | [1b6 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [2a6 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2149 bytes, Signature: 0 bytes +peer1.org1.example.com | [3a4 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx ID: [] to index +peer0.org1.example.com | [303 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [280 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][e68ca1bd170486724ac09320af5be141e5a9cf941d0723b0dd59d6de122c8ebb] Entry chaincode: name:"qscc" version: 1.2.0 +orderer.example.com | [1b7 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [2a7 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [3a5 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [304 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer0.org2.example.com | [281 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=e68ca1bd170486724ac09320af5be141e5a9cf941d0723b0dd59d6de122c8ebb,syscc=true,proposal=0xc420271bd0,canname=qscc:1.2.0) +orderer.example.com | [1b8 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [3a6 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org2.example.com | [2a8 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [3a7 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +peer0.org2.example.com | [282 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +orderer.example.com | [1b9 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [2a9 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [3a8 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] +peer0.org1.example.com | [305 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [283 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +orderer.example.com | [1ba 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [2aa 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [3a9 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +peer0.org1.example.com | [306 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [284 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e68ca1bd]Received message TRANSACTION from peer +orderer.example.com | [1bb 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [2ab 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [3aa 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +peer0.org1.example.com | [307 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [285 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e68ca1bd] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +orderer.example.com | [1bc 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [2ac 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +peer1.org1.example.com | [3ab 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [308 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [286 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [e68ca1bd] Received TRANSACTION, invoking transaction on chaincode(state:ready) +orderer.example.com | [1bd 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [2ad 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +peer1.org1.example.com | [3ac 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org1.example.com | [309 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [287 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +orderer.example.com | [1be 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org2.example.com | [2ae 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [3ad 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [30a 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [288 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo +orderer.example.com | [1bf 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [2af 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [3ae 06-12 02:14:22.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org1.example.com | [30b 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [289 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e68ca1bd] Transaction completed. Sending COMPLETED +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [2b0 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [3af 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [30c 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [28a 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [e68ca1bd] send state message COMPLETED +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [2b1 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [3b0 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [2] +peer0.org1.example.com | [30d 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [28b 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e68ca1bd] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [2b2 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [30e 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [3b1 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] +peer0.org2.example.com | [28c 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [e68ca1bd] notifying Txid:e68ca1bd170486724ac09320af5be141e5a9cf941d0723b0dd59d6de122c8ebb, channelID: +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer1.org2.example.com | [2b3 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2b4 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [3b2 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [2] +peer0.org2.example.com | [28d 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [2b5 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [3b3 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +peer0.org2.example.com | [28e 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][e68ca1bd170486724ac09320af5be141e5a9cf941d0723b0dd59d6de122c8ebb] Exit +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org2.example.com | [2b6 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [3b4 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [28f 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][e68ca1bd] Exit +peer0.org1.example.com | [30f 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org2.example.com | [2b7 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2179v\266*0\262\323A\273\344k6\337\273p\236\273=\201\213\005\nqY\007\002 [\177\221\264`\255:\345\247\340\312\014\303\357\322\013\2726\207.\376\034V#\030\344\317\200\t\375\246\346" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org1.example.com | [3b5 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [290 06-12 02:14:18.06 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:59370 +peer0.org1.example.com | [310 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +peer1.org2.example.com | [2b8 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\2179v\266*0\262\323A\273\344k6\337\273p\236\273=\201\213\005\nqY\007\002 [\177\221\264`\255:\345\247\340\312\014\303\357\322\013\2726\207.\376\034V#\030\344\317\200\t\375\246\346" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org1.example.com | [3b6 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org2.example.com | [291 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [311 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org2.example.com | [2b9 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [3b7 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [292 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [312 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +peer1.org2.example.com | [2ba 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2179v\266*0\262\323A\273\344k6\337\273p\236\273=\201\213\005\nqY\007\002 [\177\221\264`\255:\345\247\340\312\014\303\357\322\013\2726\207.\376\034V#\030\344\317\200\t\375\246\346" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org2.example.com | [2bb 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [293 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [313 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +peer0.org2.example.com | [294 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [3b8 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [2bc 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [314 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +peer0.org2.example.com | [295 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1075 bytes, Signature: 0 bytes +peer1.org1.example.com | [3b9 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [2bd 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +orderer.example.com | QKuzs3j8kg== +peer0.org1.example.com | [315 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [296 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [3ba 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [2be 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [316 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [297 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1075 bytes, Signature: 0 bytes +peer1.org1.example.com | [3bb 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [2bf 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [317 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1c0 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [298 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [3bc 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [2c0 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [318 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [299 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [3bd 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [2c1 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2c2 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [3be 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [29a 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [2c3 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [29b 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +peer1.org2.example.com | [2c4 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +peer0.org1.example.com | [319 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [31a 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [29c 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +peer1.org2.example.com | [2c5 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2179v\266*0\262\323A\273\344k6\337\273p\236\273=\201\213\005\nqY\007\002 [\177\221\264`\255:\345\247\340\312\014\303\357\322\013\2726\207.\376\034V#\030\344\317\200\t\375\246\346" secret_envelope: > alive: > +peer0.org1.example.com | [31b 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [29d 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [29e 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +peer1.org2.example.com | [2c6 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes +peer0.org1.example.com | [31c 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [29f 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer1.org1.example.com | [3bf 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [2c7 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [31d 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [2a0 06-12 02:14:19.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +peer1.org1.example.com | [3c0 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [2c8 06-12 02:14:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [31e 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [2a1 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2149 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [3c1 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [2c9 06-12 02:14:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [31f 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +peer0.org2.example.com | [2a2 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:pqm\007-\033\3644/\014\332+\023GU\357p2\224\214\273\230Q\371[\002 N|D05\022y\232\026\306\320\275-)\307E\261\361K\357\327\253RmQ\257\335\266\357\314EH" > > +peer1.org2.example.com | [2ca 06-12 02:14:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [320 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | 3BDFnYuSFYhOCexVkA== +peer0.org2.example.com | [2a3 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2149 bytes, Signature: 0 bytes +peer1.org2.example.com | [2cb 06-12 02:14:20.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [2cc 06-12 02:14:20.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [2a4 06-12 02:14:19.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2a5 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org2.example.com | [2cd 06-12 02:14:20.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2ce 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [321 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [2a6 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2cf 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1c1 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [322 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [3c2 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [2a7 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2d0 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1c2 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +peer0.org1.example.com | [323 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [3c3 06-12 02:14:22.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f90f00 env 0xc422f5dfb0 txn 0 +peer0.org2.example.com | [2a8 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2d1 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +orderer.example.com | [1c3 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +peer0.org1.example.com | [324 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [3c4 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422f5dfb0 +peer0.org2.example.com | [2a9 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2179v\266*0\262\323A\273\344k6\337\273p\236\273=\201\213\005\nqY\007\002 [\177\221\264`\255:\345\247\340\312\014\303\357\322\013\2726\207.\376\034V#\030\344\317\200\t\375\246\346" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2d2 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [1c4 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [325 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [3c5 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +peer0.org2.example.com | [2aa 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2179v\266*0\262\323A\273\344k6\337\273p\236\273=\201\213\005\nqY\007\002 [\177\221\264`\255:\345\247\340\312\014\303\357\322\013\2726\207.\376\034V#\030\344\317\200\t\375\246\346" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +peer1.org2.example.com | [2d3 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [1c5 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org1.example.com | [326 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [2d4 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1c6 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org1.example.com | [3c6 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [2ab 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org1.example.com | [327 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [2d5 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +orderer.example.com | [1c7 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer1.org1.example.com | [3c7 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [2ac 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org1.example.com | [328 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [2d6 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +orderer.example.com | [1c8 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer1.org1.example.com | [3c8 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer0.org2.example.com | [2ad 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [329 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [2d7 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1c9 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer0.org2.example.com | [2ae 06-12 02:14:20.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [32a 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org2.example.com | [2d8 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [1ca 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [1cb 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer0.org2.example.com | [2af 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes +peer0.org1.example.com | [32b 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [2d9 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 71 bytes +orderer.example.com | [1cc 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer0.org2.example.com | [2b0 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [3c9 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [32c 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [2da 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1cd 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer0.org2.example.com | [2b1 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes +peer1.org1.example.com | [3ca 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [32d 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [2db 06-12 02:14:21.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | [1ce 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org2.example.com | [2b2 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [3cb 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422fe9000, header channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +peer0.org1.example.com | [32e 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [2dc 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +orderer.example.com | [1cf 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org2.example.com | [2b3 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [3cc 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org1.example.com | [32f 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [2dd 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [1d0 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer0.org2.example.com | [2b4 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [3cd 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [330 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [2de 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1d1 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +peer0.org2.example.com | [2b5 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [3ce 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [331 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [2df 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [2b6 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | [1d2 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers +peer1.org1.example.com | [3cf 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [332 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [2e0 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [2b7 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +orderer.example.com | [1d3 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer1.org1.example.com | [3d0 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [2e1 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [333 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2b8 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" +orderer.example.com | [1d4 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +peer1.org1.example.com | [3d1 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [2e2 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [334 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2b9 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +orderer.example.com | [1d5 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer1.org1.example.com | [3d2 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [2e3 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [335 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2ba 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [1d6 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +peer1.org1.example.com | [3d3 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [2e4 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [336 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [2bb 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1d7 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org1.example.com | [3d4 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [2e5 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [337 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [2bc 06-12 02:14:20.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1d8 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [3d5 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [2e6 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [338 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [2bd 06-12 02:14:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [1d9 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [3d6 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [2e7 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [339 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [2be 06-12 02:14:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1da 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [3d7 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [2e8 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [33a 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [2bf 06-12 02:14:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1db 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [3d8 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [2e9 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [33b 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [2c0 06-12 02:14:20.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 1 items, Envelope: 199 bytes, Signature: 0 bytes +orderer.example.com | [1dc 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [3d9 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [2ea 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [33c 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [2c1 06-12 02:14:20.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1dd 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [3da 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [2eb 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [33d 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [2c2 06-12 02:14:20.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [1de 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [3db 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [2ec 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [33e 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [2c3 06-12 02:14:20.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +orderer.example.com | [1df 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [3dc 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [2ed 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [33f 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [2c4 06-12 02:14:20.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1e0 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [3dd 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [2ee 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [340 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [2c5 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1e1 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [3de 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +peer1.org2.example.com | [2ef 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [341 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [2c6 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1e2 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [3df 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [2f0 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [342 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [2c7 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [1e3 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [3e0 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [343 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [2f1 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [2c8 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [1e4 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [3e1 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [344 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [2f2 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2c9 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1e5 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [3e2 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [345 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [2f3 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [2ca 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org1.example.com | [3e3 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1e6 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [346 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [2f4 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [2cb 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [3e4 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [1e7 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [347 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [2f5 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2cc 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [3e5 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1e8 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [348 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [2f6 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer0.org2.example.com | [2cd 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [3e6 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [1e9 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [349 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [2f7 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer0.org2.example.com | [2ce 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [3e7 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1ea 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [34a 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [2f8 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> INFO [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Some peer is already a leader +peer0.org2.example.com | [2cf 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [3e8 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1eb 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [34b 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [2f9 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer0.org2.example.com | [2d0 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [3e9 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [1ec 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [34c 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [2fa 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer0.org2.example.com | [2d1 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [3ea 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [1ed 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [34d 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [2fb 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer0.org2.example.com | [2d2 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [3eb 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [1ee 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [34e 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [2fc 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes +peer0.org2.example.com | [2d3 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [3ec 06-12 02:14:22.38 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [1ef 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [34f 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [2fd 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes +peer0.org2.example.com | [2d4 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [3ed 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [1f0 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [350 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [2fe 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2d5 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +orderer.example.com | [1f1 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [3ee 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [351 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [2ff 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [2d6 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [1f2 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [3ef 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [301 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422c0afa0 env 0xc422bc9650 txn 0 +peer0.org1.example.com | [352 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [2d7 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1f3 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +peer1.org1.example.com | [3f0 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [302 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422bc9650 +peer0.org1.example.com | [353 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [2d8 06-12 02:14:21.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1f4 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [3f1 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [303 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +peer0.org1.example.com | [354 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [2d9 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:37306 +orderer.example.com | [1f5 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [3f2 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [304 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [355 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [2da 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:37306 +orderer.example.com | [1f6 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [3f3 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [305 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [356 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [2db 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:37306 +orderer.example.com | [1f7 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [3f4 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [306 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer0.org1.example.com | [357 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [2dc 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:37306 +orderer.example.com | [1f8 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [3f5 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [300 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [358 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [2de 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:37306 disconnected +peer1.org1.example.com | [3f6 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [1f9 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [307 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [359 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [2df 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer1.org1.example.com | [3f7 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [1fa 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [308 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [35a 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [2dd 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer1.org1.example.com | [3f8 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [1fb 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [309 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422c61000, header channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +peer0.org1.example.com | [35b 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [2e0 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:37308 +peer1.org1.example.com | [3f9 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [1fc 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [30a 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org1.example.com | [35c 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [2e1 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:37308 +peer1.org1.example.com | [3fa 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [1fd 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [30b 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [35d 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [2e2 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:37308 +peer1.org1.example.com | [3fb 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [1fe 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [30c 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [35e 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [2e3 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:37308 +peer1.org1.example.com | [3fc 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [1ff 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [30d 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [35f 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [3fd 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [2e4 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37308 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: nonce:13978198190710968351 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\017" signature:"0E\002!\000\260B\351F\351\300(\034d\034\352\205I\301\323\276)\231\037)\212\352u\270\300\206\214\025\347\364\305A\002 4x0|\305\334F\263B0)\2021\205\243J4\334\235N\255\307\n\253\231\313\363~\202(p\352" > > , Envelope: 177 bytes, Signature: 0 bytes +orderer.example.com | [200 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [30e 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [360 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [3fe 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [2e5 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [201 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [30f 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [361 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [3ff 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2e6 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:13978198190710968351 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\017" signature:"0E\002!\000\260B\351F\351\300(\034d\034\352\205I\301\323\276)\231\037)\212\352u\270\300\206\214\025\347\364\305A\002 4x0|\305\334F\263B0)\2021\205\243J4\334\235N\255\307\n\253\231\313\363~\202(p\352" > > , Envelope: 177 bytes, Signature: 0 bytes +orderer.example.com | [202 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [310 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [362 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [400 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2e7 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [203 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [311 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [363 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [401 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [2e8 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [204 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [312 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [364 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [402 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [2e9 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]}, deadMembers={[]} +orderer.example.com | [205 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [313 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [365 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [403 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org2.example.com | [2ea 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [206 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [314 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [366 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org1.example.com | [404 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [2eb 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +orderer.example.com | [207 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [315 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [367 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer1.org1.example.com | [405 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [2ec 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [208 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [316 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [368 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [406 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2ee 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +orderer.example.com | [209 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [317 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [369 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [407 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2ef 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 13978198190710968351, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 1305 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [20a 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [318 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [36a 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [408 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2f0 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\017" signature:"0E\002!\000\260B\351F\351\300(\034d\034\352\205I\301\323\276)\231\037)\212\352u\270\300\206\214\025\347\364\305A\002 4x0|\305\334F\263B0)\2021\205\243J4\334\235N\255\307\n\253\231\313\363~\202(p\352" > alive: +orderer.example.com | [20b 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [319 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [36b 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [409 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [2f1 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 13978198190710968351, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 1305 bytes, Signature: 0 bytes +orderer.example.com | [20c 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer1.org2.example.com | [31a 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [36c 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [40a 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [2f2 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [20d 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +peer1.org2.example.com | [31b 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer0.org1.example.com | [36d 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [40b 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [2ed 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [20e 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +peer1.org2.example.com | [31c 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [36f 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [2f3 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [40c 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [20f 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org2.example.com | [31d 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [370 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [40d 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2f4 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:60930 +orderer.example.com | [210 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer1.org2.example.com | [31e 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [371 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [40e 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2f5 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:60930 +orderer.example.com | [211 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +peer1.org2.example.com | [31f 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [372 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +peer1.org1.example.com | [40f 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [2f6 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:60930 +orderer.example.com | [212 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +peer1.org2.example.com | [320 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [373 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [410 06-12 02:14:22.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [2f7 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:60930 +orderer.example.com | [213 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer1.org2.example.com | [321 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [374 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +peer1.org1.example.com | [411 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [2f8 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [214 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer1.org2.example.com | [322 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [375 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org1.example.com | [412 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [2f9 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [215 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org2.example.com | [323 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [376 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org1.example.com | [413 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [2fa 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [216 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org2.example.com | [324 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [414 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [377 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org2.example.com | [2fb 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [217 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +peer1.org2.example.com | [325 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [415 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [378 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org2.example.com | [2fc 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [218 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [326 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [416 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [379 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2fd 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [219 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +peer1.org2.example.com | [327 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [417 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [37a 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org2.example.com | [2fe 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +orderer.example.com | [21a 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [328 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [418 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [37b 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [2ff 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:60930 disconnected +orderer.example.com | [21b 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [329 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [419 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [300 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [37c 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [41a 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [32a 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [301 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:60934 +peer0.org1.example.com | [37d 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [41b 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [32b 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [302 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:60934 +peer0.org1.example.com | [37e 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [41c 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [32c 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [303 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:60934 +peer0.org1.example.com | [37f 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer1.org1.example.com | [41d 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [32d 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [304 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:60934 +peer0.org1.example.com | [380 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [41e 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [32e 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [381 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [305 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:7245653790603494465 tag:EMPTY mem_req:&<\030M\\\307\265)\021\034\336u\315E\006\350\036\325\203\256\025\"+/C\002 m\367\312\036\007\262\252\351\037\005\350\360\264b\316\360a\226\217\276,\307\224K0\264\240n_\340\235\034" > > , Envelope: 982 bytes, Signature: 0 bytes +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | [41f 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [32f 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [382 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [306 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +peer1.org1.example.com | [420 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [330 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [383 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +peer0.org2.example.com | [307 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +peer1.org1.example.com | [421 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [331 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [36e 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42254c7c0 env 0xc4222c1da0 txn 0 +peer0.org2.example.com | [308 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer1.org1.example.com | [422 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [332 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [384 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] +peer0.org2.example.com | [309 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:7245653790603494465 tag:EMPTY mem_req:&<\030M\\\307\265)\021\034\336u\315E\006\350\036\325\203\256\025\"+/C\002 m\367\312\036\007\262\252\351\037\005\350\360\264b\316\360a\226\217\276,\307\224K0\264\240n_\340\235\034" > > , Envelope: 982 bytes, Signature: 0 bytes +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +peer1.org1.example.com | [423 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [333 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [30a 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +peer0.org1.example.com | [385 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x71, 0x5a, 0x51, 0xe9, 0xa2, 0xaf, 0xec, 0xef, 0x2d, 0x90, 0x9d, 0xf1, 0x4a, 0x14, 0x48, 0x4f, 0xc, 0x23, 0xa9, 0xe9, 0xf2, 0xac, 0x62, 0xe, 0xce, 0x9a, 0x5e, 0x31, 0xff, 0x8c, 0x6, 0xcb} txOffsets= +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +peer1.org1.example.com | [424 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [334 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [30b 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes]}, deadMembers={[]} peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12094 +orderer.example.com | 3BDFnYuSFYhOCexVkA== +peer1.org1.example.com | [425 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [335 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [30c 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes peer0.org1.example.com | ] -peer0.org1.example.com | [2af 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx ID: [] to index -peer0.org1.example.com | [2b0 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [2b1 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org1.example.com | [2b2 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] -peer0.org1.example.com | [2b3 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -peer0.org1.example.com | [2b4 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -peer0.org1.example.com | [2b5 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -peer0.org1.example.com | [2b6 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [2b7 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [2b8 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org1.example.com | [2b9 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [2ba 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] -peer0.org1.example.com | [2bb 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer0.org1.example.com | [2bc 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -orderer.example.com | [15a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -orderer.example.com | [15b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eb00 gate 1527744094184904900 evaluation starts -orderer.example.com | [15c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eb00 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [15d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eb00 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [15e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [15f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eb00 principal matched by identity 0 -orderer.example.com | [160 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 49 ce 47 74 98 57 38 6e 13 d1 ac 5a 7f 7a 79 b9 |I.Gt.W8n...Z.zy.| -orderer.example.com | 00000010 20 88 08 98 c4 cf 03 5e 06 a2 89 96 e5 9c f7 bf | ......^........| -orderer.example.com | [161 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5e 8d 73 b5 45 2a 8a 4c 77 6f 5d 11 |0D. ^.s.E*.Lwo].| -orderer.example.com | 00000010 12 44 0a f2 a7 64 42 f2 c7 b0 0c 58 96 f5 6a 77 |.D...dB....X..jw| -orderer.example.com | 00000020 80 c9 fc 14 02 20 7c bd c9 3a 8e 04 24 8c f5 e2 |..... |..:..$...| -orderer.example.com | 00000030 10 e7 3b 7e 15 d4 8c 8b ac 4c 92 55 4d 8e 75 0f |..;~.....L.UM.u.| -orderer.example.com | 00000040 3f 21 46 df 1b 51 |?!F..Q| -orderer.example.com | [162 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eb00 principal evaluation succeeds for identity 0 -orderer.example.com | [163 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eb00 gate 1527744094184904900 evaluation succeeds -orderer.example.com | [164 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [165 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [166 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -orderer.example.com | [167 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -orderer.example.com | [168 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [120 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [121 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1075 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [122 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1075 bytes, Signature: 0 bytes -peer1.org2.example.com | [123 05-31 05:21:34.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [124 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer1.org2.example.com | [125 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer1.org2.example.com | [126 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [127 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer1.org2.example.com | [128 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [129 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [12a 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bd 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [2be 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org1.example.com | [2bf 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [2c0 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [2c1 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [2c2 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [2c3 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [2c4 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [2c5 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [2c6 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [2c7 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [2c8 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [2c9 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [2ca 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [2cb 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b47e00 env 0xc422ba1230 txn 0 -peer0.org1.example.com | [2cc 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422ba1230 -peer0.org1.example.com | [2cd 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -peer0.org1.example.com | [2ce 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [2cf 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [2d0 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer0.org1.example.com | [2d1 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [2d2 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [2d3 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422c00000, header channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -peer0.org1.example.com | [2d4 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org1.example.com | [2d5 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [2d6 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [2d7 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [2d8 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [2d9 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [2da 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [2db 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [2dc 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [2dd 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [2de 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [2df 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [2e0 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [2e1 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [2e2 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [2e3 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [2e4 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [2e5 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer0.org1.example.com | [2e6 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [2e7 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [2e8 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [2e9 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [2ea 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2eb 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2ec 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2ed 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2ee 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2ef 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f0 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f1 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f2 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f3 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f4 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f5 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f6 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f7 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f8 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [2f9 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [2fa 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [2fb 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [2fc 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [2fd 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [2fe 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [2ff 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [300 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [301 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org1.example.com | [302 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [303 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [304 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [305 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [306 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [307 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [308 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [309 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [30a 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [30b 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [30c 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [30d 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [30e 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [30f 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [310 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [311 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [312 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [313 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [314 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [315 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [316 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [317 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [318 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [319 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [31a 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [31b 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [31c 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [31d 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [31e 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [31f 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [320 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [321 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [322 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [323 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [324 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [325 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [326 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [327 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [328 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [329 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [32a 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [32b 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org1.example.com | [32c 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [32d 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [32e 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [32f 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [330 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [331 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [251 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [252 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [253 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [254 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [255 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [256 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [257 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [258 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [259 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [25a 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [25b 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [25c 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [25d 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [25e 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [25f 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [260 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [261 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [262 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [263 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [264 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [265 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [266 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [267 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [268 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [269 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [26a 05-31 05:21:41.15 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [26b 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [26c 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [26d 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [26e 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [26f 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [248 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [249 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer0.org2.example.com | [24a 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [24b 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24c 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to peer1.org2.example.com:7051 -peer0.org2.example.com | [24d 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [24e 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -peer0.org2.example.com | [24f 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [250 05-31 05:21:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 5822868558107296677, Envelope: 937 bytes, Signature: 0 bytes -peer0.org2.example.com | [251 05-31 05:21:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 5822868558107296677, Envelope: 937 bytes, Signature: 0 bytes -peer0.org2.example.com | [252 05-31 05:21:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 146 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 68 67 67 65 98 43 103 65 119 73 66 65 103 73 81 68 55 78 84 87 68 110 51 118 56 117 51 98 83 114 117 51 65 107 65 57 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 83 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 120 86 104 55 77 65 117 65 106 86 121 98 110 114 88 100 97 74 75 81 75 56 75 81 108 49 54 108 113 56 107 70 10 52 67 89 67 83 53 53 104 114 114 77 106 122 121 120 99 117 108 98 52 84 88 118 77 55 75 106 78 81 71 112 97 120 115 50 78 87 85 110 90 114 111 81 78 120 47 107 57 78 79 99 78 118 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 82 119 65 119 82 65 73 103 82 49 121 68 68 120 77 115 10 83 103 48 49 68 73 75 97 108 114 69 102 98 76 112 67 70 99 72 66 83 121 70 113 88 86 49 57 84 110 90 109 71 83 111 67 73 71 83 120 65 75 67 98 106 108 53 114 72 101 106 115 86 83 49 101 117 55 104 53 53 50 98 89 10 50 69 100 70 69 122 87 103 111 82 85 72 113 119 105 57 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer0.org2.example.com | [253 05-31 05:21:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [254 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [255 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [256 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [257 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [258 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1074 bytes, Signature: 0 bytes -peer0.org2.example.com | [259 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25a 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1074 bytes, Signature: 0 bytes -peer0.org2.example.com | [25b 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [25c 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [12b 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [12c 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [12d 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [12e 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [12f 05-31 05:21:34.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [130 05-31 05:21:34.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [131 05-31 05:21:34.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [132 05-31 05:21:34.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [133 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49034 -peer1.org2.example.com | [134 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4224047e0 -peer1.org2.example.com | [135 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [136 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [137 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer1.org2.example.com | [138 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [139 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [13a 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422402870, header 0xc422404c00 -peer1.org2.example.com | [13b 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -peer1.org2.example.com | [13c 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][89aa0983] processing txid: 89aa0983e4525aec8a4c5f9991095678c1237670eb23169caeed0ca7a4c2821f -peer1.org2.example.com | [13d 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][89aa0983] Entry chaincode: name:"cscc" -peer1.org2.example.com | [13e 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][89aa0983e4525aec8a4c5f9991095678c1237670eb23169caeed0ca7a4c2821f] Entry chaincode: name:"cscc" version: 1.2.0 -peer1.org2.example.com | [13f 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=89aa0983e4525aec8a4c5f9991095678c1237670eb23169caeed0ca7a4c2821f,syscc=true,proposal=0xc422402870,canname=cscc:1.2.0) -peer1.org2.example.com | [140 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer1.org2.example.com | [141 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [142 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89aa0983]Received message TRANSACTION from peer -peer1.org2.example.com | [143 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [89aa0983] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [144 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [89aa0983] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org2.example.com | [145 05-31 05:21:35.56 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -peer1.org2.example.com | [146 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -peer1.org2.example.com | [147 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org2.example.com | [148 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -peer1.org2.example.com | [149 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -peer1.org2.example.com | [14a 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -peer1.org2.example.com | [14b 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer1.org2.example.com | [14c 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org2.example.com | [14d 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org2.example.com | [14e 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer1.org2.example.com | [14f 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer1.org2.example.com | [150 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer1.org2.example.com | [151 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42244b5e0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -peer1.org2.example.com | [152 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -peer1.org2.example.com | [153 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -peer1.org2.example.com | [154 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false -peer1.org2.example.com | [155 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -peer1.org2.example.com | [156 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -peer1.org2.example.com | [157 05-31 05:21:35.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -peer1.org2.example.com | [158 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [159 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -peer1.org2.example.com | [15a 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [15b 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org2.example.com | [15c 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org2.example.com | [15d 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org2.example.com | [15e 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [15f 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org2.example.com | [160 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [161 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -orderer.example.com | [169 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [16a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [16b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [16c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [16d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [16e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [16f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [170 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [171 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [172 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [173 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [174 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [175 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [176 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [177 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [178 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [179 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [17a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [17b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [17c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [17d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608DE8CBED80522...345479FE885EA0EDE00FB47E6B148E02 -orderer.example.com | [17e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 818BC7CC75AC138820D7BA5E48D1E8E29AD587D3BCF1C2077AA23469338BC260 -orderer.example.com | [17f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [180 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [181 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608DE8CBED80522...DABA190D5D8AA6987727253B8229DA84 -orderer.example.com | [182 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: CE9C954BCBACE73012C415779E27D563E5EABC0C927A523C9110A25BDD228D30 -orderer.example.com | [183 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [184 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [185 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [186 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [187 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [188 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [189 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO -orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o -orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR -orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [18a 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000ec08 gate 1527744094190614500 evaluation starts -orderer.example.com | [18b 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ec08 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [332 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [333 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [334 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [335 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [336 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [270 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [271 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [272 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [273 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [274 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [275 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [276 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [277 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [278 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [279 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [27a 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [27b 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [27c 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [27d 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [27e 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [27f 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [280 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [281 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [282 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [283 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [284 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [285 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [286 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [287 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [288 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [289 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [28a 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [28b 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [28c 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [28d 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [28e 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [28f 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [290 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org1.example.com | [291 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer0.org2.example.com | [25d 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [25e 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [25f 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [260 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [261 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [262 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [263 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [264 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [265 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer0.org2.example.com | [266 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes -peer0.org2.example.com | [267 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [268 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [18c 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ec08 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [18d 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [18e 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [18f 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ec08 principal matched by identity 0 -orderer.example.com | [190 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ce 9c 95 4b cb ac e7 30 12 c4 15 77 9e 27 d5 63 |...K...0...w.'.c| -orderer.example.com | 00000010 e5 ea bc 0c 92 7a 52 3c 91 10 a2 5b dd 22 8d 30 |.....zR<...[.".0| -orderer.example.com | [191 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 50 2f be 36 92 b5 85 de 08 bf c2 04 |0D. P/.6........| -orderer.example.com | 00000010 3b a8 99 72 e2 5e 91 39 19 bb 10 f4 7b 65 83 c1 |;..r.^.9....{e..| -orderer.example.com | 00000020 4d c4 ef 81 02 20 4c 16 5a 84 f1 ce e9 0f 68 55 |M.... L.Z.....hU| -orderer.example.com | 00000030 8c a1 2c 31 2c 7c 00 ce 12 19 7f ad 5a 83 2b 2e |..,1,|......Z.+.| -orderer.example.com | 00000040 e2 ed 5c f5 f3 08 |..\...| -orderer.example.com | [192 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ec08 principal evaluation succeeds for identity 0 -orderer.example.com | [193 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000ec08 gate 1527744094190614500 evaluation succeeds -orderer.example.com | [194 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [195 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [196 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -orderer.example.com | [197 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [198 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [199 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [19a 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [19b 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [19c 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [19d 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [19e 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [337 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [338 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [339 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [33a 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [33b 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [33c 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [33d 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [33e 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [33f 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [340 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [341 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [342 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [343 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [344 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [345 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [346 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [347 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [348 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org1.example.com | [349 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [34a 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -peer0.org1.example.com | [34b 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer0.org1.example.com | [34c 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org1.example.com | [34d 05-31 05:21:41.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer0.org1.example.com | [34e 05-31 05:21:41.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer0.org1.example.com | [34f 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer0.org1.example.com | [350 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [351 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [269 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [26a 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [26b 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 1 items, Envelope: 198 bytes, Signature: 0 bytes -peer0.org2.example.com | [26c 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26d 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [26e 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [26f 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [270 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [271 05-31 05:21:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [272 05-31 05:21:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [273 05-31 05:21:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [274 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [275 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [276 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [277 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [278 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [279 05-31 05:21:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -peer0.org2.example.com | [27a 05-31 05:21:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [27b 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [27c 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [27d 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [27e 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [27f 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\253\247$\020\222\202rk\301/\340\002 Th\267\033\245FI\221\002\361\351\332\240\254\036\227\0258p)\037R@\220\241\307F\267\271Iv\343" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [280 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\253\247$\020\222\202rk\301/\340\002 Th\267\033\245FI\221\002\361\351\332\240\254\036\227\0258p)\037R@\220\241\307F\267\271Iv\343" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes -peer0.org2.example.com | [281 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [282 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer0.org2.example.com | [283 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer0.org2.example.com | [284 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [285 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer0.org2.example.com | [286 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [287 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer0.org2.example.com | [288 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [289 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [28a 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [28b 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [28c 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [28d 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [28e 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" -peer0.org2.example.com | [28f 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [290 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [291 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [292 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [293 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [294 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [295 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [296 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [297 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [298 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [299 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [352 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [353 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [354 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [355 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b47e00 env 0xc422ba1230 txn 0 -peer0.org1.example.com | [356 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [357 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [358 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [359 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer0.org1.example.com | [35a 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [35b 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer0.org1.example.com | [35c 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [35d 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org1.example.com | [35e 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org1.example.com | [35f 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org1.example.com | [360 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [361 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org1.example.com | [362 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -orderer.example.com | [19f 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [1a0 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [1a1 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [1a2 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [1a3 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [1a4 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [1a5 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [1a6 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [1a7 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [1a8 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [1a9 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [1aa 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [1ab 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [1ac 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [1ad 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1ae 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [292 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org1.example.com | [293 05-31 05:21:41.16 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [294 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [295 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [296 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [297 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [298 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [299 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42051ba00 env 0xc42055b170 txn 0 -peer1.org1.example.com | [29a 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [29b 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [29c 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [29d 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -peer1.org1.example.com | [29e 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [29f 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -peer1.org1.example.com | [2a0 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [2a1 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org1.example.com | [2a2 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org1.example.com | [2a3 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [2a4 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2a5 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [2a6 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [2a8 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer0.org1.example.com | [363 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org2.example.com | [162 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [163 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [164 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -peer1.org2.example.com | [165 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [166 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [167 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [168 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -peer1.org2.example.com | [169 05-31 05:21:35.58 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] -peer1.org2.example.com | [16a 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xc2, 0x1e, 0x64, 0xf2, 0xd9, 0x85, 0xf0, 0xf7, 0x6d, 0x68, 0x53, 0xa1, 0x96, 0x61, 0x4a, 0xbd, 0xd0, 0xa2, 0x78, 0x7b, 0x4d, 0xb0, 0x42, 0x49, 0x2a, 0xcc, 0x56, 0x48, 0xa7, 0x2, 0x5, 0x73} txOffsets= -peer1.org2.example.com | txId= locPointer=offset=38, bytesLength=12077 -peer1.org2.example.com | ] -peer1.org2.example.com | [16b 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -peer1.org2.example.com | [16c 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [16d 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -peer1.org2.example.com | [16e 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] -peer1.org2.example.com | [16f 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] -peer1.org2.example.com | [171 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] -peer1.org2.example.com | [172 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} -peer1.org2.example.com | [173 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] -peer1.org2.example.com | [174 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage -peer1.org2.example.com | [175 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished -peer1.org2.example.com | [170 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -peer1.org2.example.com | [176 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -peer1.org2.example.com | [177 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] -peer1.org2.example.com | [178 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [179 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [17a 05-31 05:21:35.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org2.example.com | [17b 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [17c 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] -peer1.org2.example.com | [17d 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -peer1.org2.example.com | [17e 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -peer1.org2.example.com | [17f 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [180 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -peer1.org2.example.com | [181 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -peer1.org2.example.com | [182 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [75be5709-f374-4a9f-8859-3afc2863d605] -peer1.org2.example.com | [183 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -peer1.org2.example.com | [184 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [75be5709-f374-4a9f-8859-3afc2863d605] -peer1.org2.example.com | [185 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [186 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [187 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [188 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [189 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [18a 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [18b 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [18c 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [18d 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [18e 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [18f 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [190 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [191 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [192 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [193 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [194 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [195 05-31 05:21:35.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [196 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org2.example.com | [29a 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [29b 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [29c 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [29d 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [29e 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [29f 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a0 05-31 05:21:41.04 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:60252 -peer0.org2.example.com | [2a1 05-31 05:21:41.04 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:60252 -peer0.org2.example.com | [2a2 05-31 05:21:41.04 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:60252 -peer0.org2.example.com | [2a3 05-31 05:21:41.04 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:60252 -peer0.org2.example.com | [2a4 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org2.example.com | [2a5 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:60252 disconnected -peer0.org2.example.com | [2a6 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [2a7 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:60254 -peer0.org2.example.com | [2a8 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:60254 -peer0.org2.example.com | [2a9 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:60254 -peer0.org2.example.com | [2aa 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:60254 -peer0.org2.example.com | [2ab 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60254 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: nonce:2109433561894600604 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\013\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 W\267I\367R\037/>\016U\223\244\317WY\223\020\315\312B<{\234\216\266_\010f\245?P\311\002 >\350\202\203;\323:\347\353S\344\361&\220\364\244\373I!\223(\206\005bX+\251\317\217\037\273\301" > > , Envelope: 982 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ac 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2ad 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:2109433561894600604 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\013\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 W\267I\367R\037/>\016U\223\244\317WY\223\020\315\312B<{\234\216\266_\010f\245?P\311\002 >\350\202\203;\323:\347\353S\344\361&\220\364\244\373I!\223(\206\005bX+\251\317\217\037\273\301" > > , Envelope: 982 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ae 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer0.org2.example.com | [2af 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes]}, deadMembers={[]} -peer0.org2.example.com | [2b0 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b1 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer0.org2.example.com | [2b2 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b3 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b4 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [2b5 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 2109433561894600604, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 2110 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2b7 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 2109433561894600604, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 2110 bytes, Signature: 0 bytes -peer0.org2.example.com | [2b8 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2b6 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\013\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 W\267I\367R\037/>\016U\223\244\317WY\223\020\315\312B<{\234\216\266_\010f\245?P\311\002 >\350\202\203;\323:\347\353S\344\361&\220\364\244\373I!\223(\206\005bX+\251\317\217\037\273\301" > alive: -peer0.org2.example.com | [2b9 05-31 05:21:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:42736 -peer0.org2.example.com | [2ba 05-31 05:21:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:42738 -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1af 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [1b0 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [1b1 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [1b2 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [1b3 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [1b4 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [1b5 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [1b6 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [1b7 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [1b8 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [1b9 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [1ba 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [1bb 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [1bc 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [197 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [198 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [199 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [19a 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [19b 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [19c 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -peer1.org2.example.com | [19d 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [19e 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [19f 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [1a0 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [1a1 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [1a2 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [1a3 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [1a4 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [1a5 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [1a6 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [1a7 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [1a8 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [1a9 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [1aa 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [1ab 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [1ac 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [1ad 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [1ae 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [1af 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [1b0 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [1b1 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [364 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [365 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [366 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer0.org1.example.com | [367 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [368 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [369 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [36a 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -peer0.org1.example.com | [36b 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] -peer0.org1.example.com | [36c 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:2109433561894600604 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\013\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 W\267I\367R\037/>\016U\223\244\317WY\223\020\315\312B<{\234\216\266_\010f\245?P\311\002 >\350\202\203;\323:\347\353S\344\361&\220\364\244\373I!\223(\206\005bX+\251\317\217\037\273\301" > > , Envelope: 982 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [36d 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:2109433561894600604 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\013\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 W\267I\367R\037/>\016U\223\244\317WY\223\020\315\312B<{\234\216\266_\010f\245?P\311\002 >\350\202\203;\323:\347\353S\344\361&\220\364\244\373I!\223(\206\005bX+\251\317\217\037\273\301" > > , Envelope: 982 bytes, Signature: 0 bytes -peer0.org1.example.com | [36e 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [36f 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x1c, 0x89, 0x5b, 0x8a, 0xa8, 0xc6, 0x73, 0x3c, 0xac, 0x1f, 0xe1, 0x55, 0x12, 0x70, 0xf, 0x84, 0xef, 0xfb, 0xa4, 0xcc, 0xbe, 0x67, 0x8, 0xce, 0x57, 0xdf, 0x28, 0x5b, 0xd, 0x99, 0x90, 0xd4} txOffsets= -peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12152 +orderer.example.com | -----END CERTIFICATE----- +peer1.org1.example.com | [426 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [336 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [30d 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer0.org1.example.com | [386 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx ID: [] to index +orderer.example.com | [21c 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420151298 gate 1528769655452667700 evaluation starts +peer1.org1.example.com | [427 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [337 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [30e 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [387 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [21d 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151298 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [428 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [338 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [30f 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [388 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] +peer1.org1.example.com | [429 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [21e 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151298 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [339 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [389 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +peer0.org2.example.com | [310 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [42a 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [21f 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +peer1.org2.example.com | [33a 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [38a 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] +peer0.org2.example.com | [311 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [42b 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [220 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151298 principal matched by identity 0 +peer1.org2.example.com | [33b 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [38b 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +peer0.org2.example.com | [312 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [221 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bf 00 74 70 c2 fd 54 51 db af 93 ff e3 4e fe 3f |..tp..TQ.....N.?| +peer1.org1.example.com | [42c 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [33c 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [38c 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +peer0.org2.example.com | [313 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | 00000010 7a a3 f9 cd dc 58 3c 56 43 04 b8 af fb 47 b8 ca |z....X DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [33d 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [38d 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [314 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [222 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f6 fd be ec 9d 50 e1 e4 17 a8 0b |0E.!......P.....| +peer1.org1.example.com | [42e 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [33e 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [38e 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org2.example.com | [315 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000010 c0 3b ea a8 5a 74 61 96 9b d6 89 2f 44 8f d4 39 |.;..Zta..../D..9| +peer1.org1.example.com | [42f 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [33f 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [38f 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [316 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | 00000020 61 cf ad 9d 70 02 20 0a 73 71 06 87 71 f1 ef d6 |a...p. .sq..q...| +peer1.org1.example.com | [430 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [340 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [390 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [317 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000030 84 1d a2 de 09 5d 60 3f ad 89 80 d5 b4 b8 b9 28 |.....]`?.......(| +peer1.org1.example.com | [431 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [341 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org1.example.com | [391 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [318 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 7245653790603494465, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | 00000040 58 7b 5f c4 50 80 45 |X{_.P.E| +peer1.org1.example.com | [432 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [342 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [392 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [2] +peer0.org2.example.com | [319 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\017" signature:"0E\002!\000\260B\351F\351\300(\034d\034\352\205I\301\323\276)\231\037)\212\352u\270\300\206\214\025\347\364\305A\002 4x0|\305\334F\263B0)\2021\205\243J4\334\235N\255\307\n\253\231\313\363~\202(p\352" > alive:&<\030M\\\307\265)\021\034\336u\315E\006\350\036\325\203\256\025\"+/C\002 m\367\312\036\007\262\252\351\037\005\350\360\264b\316\360a\226\217\276,\307\224K0\264\240n_\340\235\034" > alive: +orderer.example.com | [223 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151298 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [433 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [343 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [393 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +peer0.org2.example.com | [31a 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 7245653790603494465, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +orderer.example.com | [224 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420151298 gate 1528769655452667700 evaluation succeeds +peer1.org1.example.com | [434 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [344 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [395 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [31b 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [225 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [435 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [346 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes +peer0.org1.example.com | [396 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [31c 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [226 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [436 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [347 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes +peer0.org1.example.com | [394 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] +peer0.org2.example.com | [31d 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [227 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy +peer1.org1.example.com | [437 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [345 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [397 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [2] +peer0.org2.example.com | [31e 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [228 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +peer1.org1.example.com | [438 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [348 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [398 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org2.example.com | [31f 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [229 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [439 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [349 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [399 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [320 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [22a 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [43a 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [34b 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [39a 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [321 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [22b 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [43b 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org2.example.com | [34a 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [39b 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [322 06-12 02:14:22.57 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +orderer.example.com | [22c 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [43c 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [34c 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [39c 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [323 06-12 02:14:22.57 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.beLeader -> INFO [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Becoming a leader +orderer.example.com | [22d 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [43d 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [34d 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [39d 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [324 06-12 02:14:22.57 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel +orderer.example.com | [22e 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [43e 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [34e 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [39e 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [325 06-12 02:14:22.57 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +orderer.example.com | [22f 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [43f 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [34f 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [39f 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [326 06-12 02:14:22.57 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +orderer.example.com | [230 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [440 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org2.example.com | [350 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org1.example.com | [3a0 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [327 06-12 02:14:22.57 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +orderer.example.com | [231 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [441 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer1.org2.example.com | [351 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [3a1 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [328 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [232 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [442 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer1.org2.example.com | [352 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [3a2 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [329 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +orderer.example.com | [233 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [443 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +peer1.org2.example.com | [353 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [3a3 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [32a 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [234 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [444 06-12 02:14:22.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer1.org2.example.com | [354 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [3a4 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [32b 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +orderer.example.com | [235 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [445 06-12 02:14:22.41 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org2.example.com | [355 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [3a5 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422db8720 env 0xc4225fd0e0 txn 0 +peer0.org2.example.com | [32c 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +orderer.example.com | [236 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [446 06-12 02:14:22.41 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [356 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [3a6 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4225fd0e0 +peer0.org2.example.com | [32d 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +orderer.example.com | [237 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [447 06-12 02:14:22.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:7051 +peer1.org2.example.com | [357 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [3a7 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +peer0.org2.example.com | [32e 06-12 02:14:22.58 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 | [238 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [358 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [448 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer0.org1.example.com | [3a8 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [32f 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +orderer.example.com | [239 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [359 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [449 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org1.example.com | [3a9 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [330 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +orderer.example.com | [23a 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [35a 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [44a 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [3aa 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer0.org2.example.com | [331 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +orderer.example.com | [23b 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [35b 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [44b 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [3ab 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [332 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | [23c 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [35c 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [44c 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [3ac 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [333 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [35d 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [23d 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [44d 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer0.org1.example.com | [3ad 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422e71000, header channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +peer0.org2.example.com | [334 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422c536c0 env 0xc422c27020 txn 0 +peer1.org2.example.com | [35e 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [23e 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [44e 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [3ae 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org2.example.com | [335 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422c27020 +peer1.org2.example.com | [35f 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [23f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [44f 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f90f00 env 0xc422f5dfb0 txn 0 +peer0.org1.example.com | [3af 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [336 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +peer1.org2.example.com | [360 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [240 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [450 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [3b0 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [337 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [361 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [241 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [451 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [3b1 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [338 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [362 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [242 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [452 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:12028204755272296861 tag:EMPTY mem_req:\213\251\257^\277\030^\347l\222/i\255*3\255j" > > > , Envelope: 1088 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [3b2 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [339 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer1.org2.example.com | [363 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [243 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [453 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:12028204755272296861 tag:EMPTY mem_req:\213\251\257^\277\030^\347l\222/i\255*3\255j" > > > , Envelope: 1088 bytes, Signature: 0 bytes +peer0.org1.example.com | [3b3 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [33a 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +peer1.org2.example.com | [364 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [244 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [454 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [3b4 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [33b 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [365 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [245 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org1.example.com | [455 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [3b5 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [33d 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [366 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [246 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [456 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +peer0.org1.example.com | [3b6 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [33f 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [367 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [247 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [457 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [3b7 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [368 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [33e 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422cbd000, header channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +orderer.example.com | [248 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [458 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +peer0.org1.example.com | [3b8 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [369 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [341 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +orderer.example.com | [249 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [459 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [3b9 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [36a 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [340 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes +orderer.example.com | [24a 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [45a 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [3ba 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [36b 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [342 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [24b 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer1.org1.example.com | [45b 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org1.example.com | [3bb 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [36c 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [33c 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +orderer.example.com | [24c 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [3bc 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [45c 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org2.example.com | [36d 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [343 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [24d 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [3bd 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [45d 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [36e 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [344 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [24e 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [3be 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [45e 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org2.example.com | [36f 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [346 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [24f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer1.org1.example.com | [45f 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org1.example.com | [3bf 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +peer1.org2.example.com | [370 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [347 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [250 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [3c0 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [460 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org2.example.com | [371 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [348 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [3c1 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [461 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [372 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [349 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [3c2 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [462 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org2.example.com | [373 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [345 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [3c3 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [463 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +peer1.org2.example.com | [374 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [34a 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer0.org1.example.com | [3c4 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [464 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [375 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [34b 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org1.example.com | [3c5 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [465 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [376 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [34c 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org1.example.com | [3c6 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [466 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [377 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [34d 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [3c7 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [467 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +peer1.org2.example.com | [378 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [34f 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +peer0.org1.example.com | [3c8 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [379 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [468 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:7051 +peer0.org2.example.com | [350 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [3c9 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [37a 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [469 06-12 02:14:22.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer0.org2.example.com | [351 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +peer0.org1.example.com | [3ca 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [37b 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [46a 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer0.org2.example.com | [352 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +peer0.org1.example.com | [3cb 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [37c 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [46b 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:7245653790603494465 tag:EMPTY mem_req:&<\030M\\\307\265)\021\034\336u\315E\006\350\036\325\203\256\025\"+/C\002 m\367\312\036\007\262\252\351\037\005\350\360\264b\316\360a\226\217\276,\307\224K0\264\240n_\340\235\034" > > , Envelope: 982 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [353 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +peer0.org1.example.com | [3cc 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [37d 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [46c 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:7245653790603494465 tag:EMPTY mem_req:&<\030M\\\307\265)\021\034\336u\315E\006\350\036\325\203\256\025\"+/C\002 m\367\312\036\007\262\252\351\037\005\350\360\264b\316\360a\226\217\276,\307\224K0\264\240n_\340\235\034" > > , Envelope: 982 bytes, Signature: 0 bytes +peer0.org2.example.com | [354 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +orderer.example.com | CSJWn+U1 +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [3cd 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [3ce 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [46d 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +orderer.example.com | [251 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [3cf 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [37e 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [46e 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:7051 +peer1.org1.example.com | [46f 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer0.org2.example.com | [34e 06-12 02:14:22.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [37f 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [470 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer0.org2.example.com | [355 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +peer0.org1.example.com | [3d0 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [380 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer0.org2.example.com | [357 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [3d1 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [471 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +peer1.org2.example.com | [381 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer0.org2.example.com | [356 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [3d2 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [472 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +peer1.org1.example.com | [473 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer1.org2.example.com | [382 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer0.org2.example.com | [358 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [3d3 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [474 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +peer1.org2.example.com | [383 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer0.org2.example.com | [359 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [3d4 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [475 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 12028204755272296861, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1355 bytes, Signature: 0 bytes +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +peer1.org2.example.com | [384 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [35a 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [3d5 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [476 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +peer1.org2.example.com | [385 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.4:7051 +peer0.org2.example.com | [35b 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3d6 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [478 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +peer0.org2.example.com | [35c 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [386 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer0.org1.example.com | [3d7 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [477 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x11, 0x61, 0x9f, 0x74, 0x2a, 0x75, 0xba, 0x72, 0x46, 0x54, 0x9e, 0xb0, 0xdc, 0xb3, 0x98, 0xed, 0xeb, 0xfa, 0xa0, 0xae, 0xea, 0x73, 0x9a, 0x0, 0x40, 0x67, 0xea, 0x20, 0x7a, 0xc0, 0xec, 0x73} txOffsets= +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +peer0.org2.example.com | [35d 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [35e 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [3d8 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12151 +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +peer1.org2.example.com | [387 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer0.org1.example.com | [3d9 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [35f 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | ] +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [388 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:3147502396417204607 tag:EMPTY mem_req:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [3da 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [360 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [479 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx ID: [] to index +orderer.example.com | [252 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [389 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:3147502396417204607 tag:EMPTY mem_req:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org1.example.com | [3db 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [361 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [47a 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [253 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [38a 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [3dc 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [362 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [47b 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [254 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [38b 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org1.example.com | [3dd 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [363 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [47c 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 12028204755272296861, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1355 bytes, Signature: 0 bytes +orderer.example.com | [255 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [38c 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [3de 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [364 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [47d 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [256 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [38d 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [3df 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [365 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [47e 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [257 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +peer1.org2.example.com | [38e 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [3e0 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [366 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [47f 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [258 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [38f 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [3e1 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [480 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40098], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | [259 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org2.example.com | [390 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422c0afa0 env 0xc422bc9650 txn 0 +peer0.org1.example.com | [3e2 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [367 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [481 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] +orderer.example.com | [25a 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org2.example.com | [391 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [3e3 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [368 06-12 02:14:22.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [483 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] +orderer.example.com | [25b 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org2.example.com | [392 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [3e4 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [369 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [484 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +orderer.example.com | [25c 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [393 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [3e5 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org2.example.com | [36a 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [485 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [394 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +peer0.org1.example.com | [3e6 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [36b 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [486 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [395 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [3e7 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [36c 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [487 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [396 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +peer0.org1.example.com | [3e8 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [36d 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [488 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer1.org2.example.com | [397 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [398 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [3e9 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [482 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]}, deadMembers={[]} +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [399 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org1.example.com | [3ea 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [36e 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org1.example.com | [489 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org2.example.com | [39a 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org1.example.com | [3eb 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [36f 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org1.example.com | [48a 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [39b 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [3ec 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [370 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [48b 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +peer1.org2.example.com | [39c 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org1.example.com | [3ed 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [371 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +orderer.example.com | QKuzs3j8kg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [25d 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [372 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org2.example.com | [373 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [374 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [375 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [376 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [377 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [378 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [379 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [37a 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [37b 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [37c 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [37d 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +orderer.example.com | 3BDFnYuSFYhOCexVkA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [25e 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [25f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [260 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [261 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [262 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [263 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [264 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [265 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [266 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [267 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [268 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [269 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [26a 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [37e 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +peer0.org2.example.com | [37f 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [26b 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org2.example.com | [380 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [39d 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [26c 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [39e 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org2.example.com | [39f 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [3a0 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org2.example.com | [3a1 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +peer0.org2.example.com | [381 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [382 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [383 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [384 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [385 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [386 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [387 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [388 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [389 06-12 02:14:22.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [38a 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [38b 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [38c 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [38d 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [38e 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [38f 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [390 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [391 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [392 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [3a2 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [3a3 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [3a4 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [3a5 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +peer0.org2.example.com | [393 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [394 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [3a6 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] +peer1.org2.example.com | [3a7 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x71, 0x5a, 0x51, 0xe9, 0xa2, 0xaf, 0xec, 0xef, 0x2d, 0x90, 0x9d, 0xf1, 0x4a, 0x14, 0x48, 0x4f, 0xc, 0x23, 0xa9, 0xe9, 0xf2, 0xac, 0x62, 0xe, 0xce, 0x9a, 0x5e, 0x31, 0xff, 0x8c, 0x6, 0xcb} txOffsets= +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12094 +peer0.org2.example.com | [395 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [396 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [397 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [398 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [399 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [39a 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [39b 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | ] +peer0.org1.example.com | [3ee 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [3ef 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [3f0 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [3f1 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [3f2 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [3f3 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [3a8 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx ID: [] to index +peer1.org2.example.com | [3a9 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [3f4 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [3aa 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [39c 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [39d 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [39e 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [3ab 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +peer1.org2.example.com | [3ac 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] +peer1.org2.example.com | [3ad 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +peer1.org2.example.com | [3ae 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +peer1.org2.example.com | [3af 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [3b0 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org2.example.com | [3b1 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [3b2 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org2.example.com | [3b3 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [39f 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [3a0 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [3b5 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [2] +peer0.org2.example.com | [3a1 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [3a2 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [3a3 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [3a4 06-12 02:14:22.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [3a5 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [3a6 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +peer0.org2.example.com | [3a7 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [3a8 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [3a9 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [3aa 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [3ab 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [3ac 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [3ad 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [3ae 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +peer1.org2.example.com | [3b6 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] +peer1.org2.example.com | [3b7 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [2] +peer1.org2.example.com | [3b8 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +peer1.org2.example.com | [3b9 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer1.org2.example.com | [3ba 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [3b4 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.4:7051 +peer1.org2.example.com | [3bb 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer1.org2.example.com | [3bc 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [3be 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [3bf 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [3c0 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [3c1 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [3c2 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [3c3 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [3c4 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [26d 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [26e 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [26f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [270 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [271 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +orderer.example.com | [272 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +orderer.example.com | [273 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +orderer.example.com | [274 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [275 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [276 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [277 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +orderer.example.com | [278 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +orderer.example.com | [279 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +orderer.example.com | [27a 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [27b 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +orderer.example.com | [27c 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [27d 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [27e 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [27f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [280 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [281 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [282 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [283 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [284 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [285 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [286 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [287 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [288 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [289 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [28a 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [28b 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [28c 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [28d 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [28e 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [28f 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [290 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [291 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [292 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [293 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [294 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [295 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [296 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [297 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [298 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [299 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [29a 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [29b 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [29c 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [29d 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [29e 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [29f 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [2a0 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [2a1 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [2a2 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [2a3 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [2a4 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [2a5 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [2a6 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [2a7 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [2a8 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [2a9 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [2aa 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [2ab 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +orderer.example.com | [2ac 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.Supported -> DEBU Channel capability V1_1 is supported and is enabled +orderer.example.com | [2ad 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:35706 +orderer.example.com | [2ae 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [2b0 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:35704 because channel businesschannel not found +orderer.example.com | [2b1 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35704 +orderer.example.com | [2b2 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35704 +orderer.example.com | [2b3 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.7:35706, hangup +orderer.example.com | [2b4 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [2b5 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.7:35704, hangup +orderer.example.com | [2b6 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [2af 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [2b7 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [2b8 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [2b9 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [2ba 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [2bb 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [2bc 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [2bd 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [2be 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [2bf 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [2c0 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [48c 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [48d 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [48e 06-12 02:14:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 12028204755272296861, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1355 bytes, Signature: 0 bytes +peer1.org1.example.com | [48f 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [490 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [491 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [492 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [3] +peer1.org1.example.com | [493 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] +peer1.org1.example.com | [494 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [3] +peer1.org1.example.com | [495 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +peer1.org1.example.com | [496 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org1.example.com | [497 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [498 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [499 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [49a 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [49b 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [49c 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org1.example.com | [49d 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [49e 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [49f 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [4a0 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [3c5 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [3af 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [3b0 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [3b1 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [3b2 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [3b3 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org2.example.com | [3b4 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org2.example.com | [3b5 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org2.example.com | [3b6 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org2.example.com | [3b7 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org2.example.com | [3b8 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer0.org2.example.com | [3b9 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer0.org2.example.com | [3ba 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer0.org2.example.com | [3bb 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +orderer.example.com | [2c1 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [2c2 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [2c3 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [2c4 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [2c5 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [2c6 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [2c7 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [2c8 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2c9 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2ca 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [2cb 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [2cc 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +orderer.example.com | [2cd 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [2ce 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [2cf 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [2d0 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [2d1 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [2d3 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35708 +orderer.example.com | [2d4 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35708 +orderer.example.com | [2d2 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [2d5 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +orderer.example.com | [2d6 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [2d7 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [2d8 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [2d9 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [2da 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [3bd 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer1.org2.example.com | [3c6 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [3c7 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [3c9 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [3ca 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42307aac0 env 0xc423092b70 txn 0 +peer1.org2.example.com | [3cb 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423092b70 +peer1.org2.example.com | [3cc 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +peer1.org2.example.com | [3cd 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [3ce 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [3c8 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer1.org2.example.com | [3cf 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer1.org2.example.com | [3d0 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [3d1 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer1.org2.example.com | [3d2 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [3d3 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [3d4 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc423131000, header channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +peer1.org2.example.com | [3d5 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org2.example.com | [3d6 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [3d7 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [3d8 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [3d9 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [3da 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [3db 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [3dc 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [3dd 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [3de 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [3df 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [4a2 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [4a3 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [4a4 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [4a1 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Entering, AliveMessage: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes t: {1528769652088169500 16} +peer1.org1.example.com | [4a5 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [4a7 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [4a8 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [4a6 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Exiting +peer1.org1.example.com | [4a9 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [4aa 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [4ab 06-12 02:14:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +peer1.org1.example.com | [4ac 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [4ad 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4ae 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer1.org1.example.com | [4af 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer1.org1.example.com | [4b0 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer1.org1.example.com | [4b1 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [4b2 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [4b3 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 7245653790603494465, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +peer1.org1.example.com | [4b4 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 7245653790603494465, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +peer1.org1.example.com | [4b5 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [4b6 06-12 02:14:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 7245653790603494465, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +peer1.org1.example.com | [4b7 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [4b8 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: +peer0.org2.example.com | [3bc 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:7051 +peer0.org2.example.com | [3bd 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [3be 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [3bf 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [3c0 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [3c1 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [3c2 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422c536c0 env 0xc422c27020 txn 0 +peer0.org2.example.com | [3c3 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [3c4 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [3c5 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [3c6 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +peer0.org2.example.com | [3c7 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [3c8 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +peer0.org2.example.com | [3c9 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [3ca 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org2.example.com | [3cb 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org2.example.com | [3cc 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org2.example.com | [3cd 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [3ce 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org2.example.com | [3cf 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org2.example.com | [3e0 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [3e1 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [3e2 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [3e3 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [3e4 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [3e5 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [3e6 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +peer1.org2.example.com | [3e7 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [3e8 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3e9 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ea 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3eb 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ec 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ed 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ee 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [3ef 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3f0 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3f1 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3f2 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [3f3 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [3f4 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [3f5 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3f6 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3f7 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3f8 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [3f9 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3fa 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [3fb 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [3fc 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [3fd 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [4b9 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity +peer1.org1.example.com | [4ba 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [4bb 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [4bc 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [4bd 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 16 but got ts: inc_num:1528769652088169500 seq_num:15 +peer1.org1.example.com | [4be 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [4bf 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +peer1.org1.example.com | [4c0 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +peer1.org1.example.com | [4c1 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [4c2 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4c3 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [4c4 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [4c5 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [4c6 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [4c7 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [4c8 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [4c9 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [4ca 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [4cb 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [4cc 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +orderer.example.com | QKuzs3j8kg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2db 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +orderer.example.com | 3BDFnYuSFYhOCexVkA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2dc 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [2dd 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [2de 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [2df 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [2e0 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [2e1 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [2e2 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [2e3 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [2e4 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [2e5 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [2e6 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +orderer.example.com | CSJWn+U1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2e7 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +peer0.org2.example.com | [3d0 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org2.example.com | [3d1 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [3d2 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [3d3 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +peer0.org2.example.com | [3d4 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [3d5 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [3d7 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer0.org2.example.com | [3d6 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [3d8 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +peer0.org2.example.com | [3d9 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer0.org2.example.com | [3da 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) +peer0.org2.example.com | [3db 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:37308 disconnected +peer0.org2.example.com | [3dc 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] +peer0.org2.example.com | [3dd 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:5946037328689966164 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [3de 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:5946037328689966164 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org2.example.com | [3df 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [3e0 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x71, 0x5a, 0x51, 0xe9, 0xa2, 0xaf, 0xec, 0xef, 0x2d, 0x90, 0x9d, 0xf1, 0x4a, 0x14, 0x48, 0x4f, 0xc, 0x23, 0xa9, 0xe9, 0xf2, 0xac, 0x62, 0xe, 0xce, 0x9a, 0x5e, 0x31, 0xff, 0x8c, 0x6, 0xcb} txOffsets= +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12094 +peer0.org2.example.com | ] +peer0.org2.example.com | [3e1 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx ID: [] to index +peer1.org2.example.com | [3fe 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [3ff 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [400 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [401 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [402 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [403 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [404 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [405 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [406 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [407 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [408 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [409 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [40a 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [40b 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [40c 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org2.example.com | [40d 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [40e 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [40f 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [410 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [411 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [412 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [413 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [415 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [416 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [417 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [418 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [419 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org2.example.com | [41a 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [414 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 3147502396417204607, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +peer1.org2.example.com | [41c 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [41d 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [41e 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [41f 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [420 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [421 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [422 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [423 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [424 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [425 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [426 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [41b 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 3147502396417204607, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +peer1.org2.example.com | [427 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [428 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [429 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 3147502396417204607, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +peer1.org2.example.com | [42a 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [42c 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [42b 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [42e 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [42d 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [42f 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [430 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +peer1.org2.example.com | [431 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [432 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [4cd 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [4ce 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4d0 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [4cf 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4d1 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [4d2 06-12 02:14:23.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:59948 +peer1.org1.example.com | [4d3 06-12 02:14:23.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59948 +peer1.org1.example.com | [4d4 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59948 +peer1.org1.example.com | [4d5 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59948 +peer1.org1.example.com | [4d6 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4d7 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [4d8 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [4d9 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4da 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4db 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [4dc 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4dd 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [4de 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [4df 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [4e0 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [4e1 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4e2 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [4e3 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [4e4 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [4e5 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [4e6 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [4e7 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [4e8 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [4e9 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [4ea 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [4eb 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [4ec 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [4ed 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [4ee 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]}, deadMembers={[]} +peer1.org1.example.com | [4ef 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [4f0 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer1.org1.example.com | [4f1 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [4f3 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [4f2 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [4f4 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [4f6 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [4f5 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\020" signature:"0E\002!\000\235\2472\314c\020\236\275\241\217J\262\3543&vz+\reK\371L\341W4\315\031\344\\\240}\002 V\210w\361/\372\214\000\320\330F@D\331Q\241/\242\r\332y\027\242\326\326*\0235:{v\311" > alive:m\257x\313b\2054\375\234\326\265\206h\004\345\320E\304\035Pw%\247\002\361\224\356\341\002 M\020\222\004BO\254a\377\226\352,\372p\365\003\237AQL\330V\232\332B\304\030\037\272\272\260\330" > +peer1.org1.example.com | [4f7 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [4f8 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [4f9 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [4fa 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [4fb 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [4fc 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [4fd 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [4fe 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [4ff 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [500 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [501 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [502 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [503 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [504 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [505 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [3f5 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [3f6 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [3f7 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [3f8 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [3f9 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [3fa 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [3e2 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [3e3 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org2.example.com | [3e4 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +peer0.org2.example.com | [3e5 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] +peer0.org2.example.com | [3e6 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +peer0.org2.example.com | [3e7 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +peer0.org2.example.com | [3e8 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [3e9 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org2.example.com | [3ea 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [3eb 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [3ec 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [3ed 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [3ee 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [2] +peer0.org2.example.com | [3ef 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] +peer0.org2.example.com | [3f0 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [2] +peer0.org2.example.com | [3f1 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +peer0.org2.example.com | [3f2 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +peer0.org2.example.com | [3f3 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [3f4 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +peer0.org2.example.com | [3f5 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [3f6 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [3f7 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [3f8 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [3f9 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [3fa 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [3fb 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [3fc 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [3fd 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [3fe 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [3ff 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [400 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [401 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4230ed040 env 0xc423112bd0 txn 0 +peer0.org2.example.com | [402 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423112bd0 +peer0.org2.example.com | [403 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +peer0.org2.example.com | [404 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [405 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [406 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:7051 +peer0.org2.example.com | [407 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer0.org2.example.com | [408 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [409 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [40a 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4231ba000, header channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +peer0.org2.example.com | [40b 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org2.example.com | [40c 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [40d 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer0.org2.example.com | [40e 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [40f 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [410 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [411 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [412 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [413 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [414 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [416 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer0.org1.example.com | [3fb 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [3fc 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [3fd 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [3fe 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [3ff 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [400 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [401 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [402 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [403 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [404 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [405 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [406 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [407 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [408 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [409 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [40a 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [40b 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [40c 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [40d 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [40e 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [40f 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [410 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [411 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [412 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [413 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [414 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [415 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [416 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [417 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [418 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [419 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [41a 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [41b 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [41c 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [41d 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [41e 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [41f 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [420 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [421 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [422 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer0.org1.example.com | [423 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org1.example.com | [424 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +peer0.org1.example.com | [425 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer0.org1.example.com | [426 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [427 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +peer0.org1.example.com | [428 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer0.org1.example.com | [429 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer0.org1.example.com | [42a 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:13978198190710968351 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\017" signature:"0E\002!\000\260B\351F\351\300(\034d\034\352\205I\301\323\276)\231\037)\212\352u\270\300\206\214\025\347\364\305A\002 4x0|\305\334F\263B0)\2021\205\243J4\334\235N\255\307\n\253\231\313\363~\202(p\352" > > , Envelope: 177 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [42b 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:13978198190710968351 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\017" signature:"0E\002!\000\260B\351F\351\300(\034d\034\352\205I\301\323\276)\231\037)\212\352u\270\300\206\214\025\347\364\305A\002 4x0|\305\334F\263B0)\2021\205\243J4\334\235N\255\307\n\253\231\313\363~\202(p\352" > > , Envelope: 177 bytes, Signature: 0 bytes +peer0.org1.example.com | [42c 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [433 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes]}, deadMembers={[]} +peer1.org2.example.com | [435 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +peer1.org2.example.com | [436 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer1.org2.example.com | [437 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [438 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [434 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [43a 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [439 06-12 02:14:22.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [43b 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [43c 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [43d 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [43e 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [440 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]}, deadMembers={[]} +peer1.org2.example.com | [441 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [442 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer1.org2.example.com | [443 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [444 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [43f 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [445 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [446 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [447 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [448 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [449 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [44a 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [44b 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [44c 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [44d 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [44e 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [44f 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [450 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [451 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [452 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [453 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [454 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [455 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [456 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [457 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [458 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org2.example.com | [459 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [45a 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [45b 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [45c 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [45d 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org2.example.com | [45e 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer1.org2.example.com | [45f 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer1.org2.example.com | [460 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +peer1.org2.example.com | [461 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer1.org2.example.com | [462 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org2.example.com | [463 06-12 02:14:22.73 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [464 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [465 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [466 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [467 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [468 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [469 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42307aac0 env 0xc423092b70 txn 0 +peer1.org2.example.com | [46a 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [46b 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [46c 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org1.example.com | [42d 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org1.example.com | [42e 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [42f 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [430 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [431 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [432 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422db8720 env 0xc4225fd0e0 txn 0 +peer0.org1.example.com | [433 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [506 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [507 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [508 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [509 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [50a 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [50b 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [50c 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" secret_envelope: > alive: > +peer1.org1.example.com | [50d 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org1.example.com | [50e 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [50f 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [510 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [511 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [512 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [513 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org1.example.com | [514 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [515 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [516 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [517 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [518 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org1.example.com | [519 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [51a 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org1.example.com | [51b 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [2e8 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [2e9 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [2ea 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [2eb 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +orderer.example.com | [2ec 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [2ed 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [2ee 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [2ef 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [2f0 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [2f1 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [2f2 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +orderer.example.com | [2f3 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +orderer.example.com | [2f4 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +orderer.example.com | [2f5 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [2f6 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [2f7 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [2f8 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +orderer.example.com | [2f9 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +orderer.example.com | [2fa 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +orderer.example.com | [2fb 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [2fc 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [2fd 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [2fe 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [2ff 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [300 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [301 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [302 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [303 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [304 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [305 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [306 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [307 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [308 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [309 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [30a 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [30b 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [30c 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [30d 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [30e 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [30f 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [310 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [311 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [312 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [313 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [46d 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +peer1.org1.example.com | [51c 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers +orderer.example.com | [314 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [46e 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [46f 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +peer1.org2.example.com | [470 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [415 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [315 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [316 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [417 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [418 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [434 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [317 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [318 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [319 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [471 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org2.example.com | [472 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org1.example.com | [51e 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +orderer.example.com | [31a 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [473 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org2.example.com | [474 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [475 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org2.example.com | [476 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [31b 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [31c 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [419 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org1.example.com | [435 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [477 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org2.example.com | [478 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [479 06-12 02:14:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +orderer.example.com | [31d 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [31e 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [31f 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [47a 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +peer1.org2.example.com | [47b 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [47c 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [320 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [47d 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [47e 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +peer1.org1.example.com | [51d 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [321 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [41a 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [47f 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] +peer1.org1.example.com | [51f 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [521 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org1.example.com | [520 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +orderer.example.com | [322 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [480 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x11, 0x61, 0x9f, 0x74, 0x2a, 0x75, 0xba, 0x72, 0x46, 0x54, 0x9e, 0xb0, 0xdc, 0xb3, 0x98, 0xed, 0xeb, 0xfa, 0xa0, 0xae, 0xea, 0x73, 0x9a, 0x0, 0x40, 0x67, 0xea, 0x20, 0x7a, 0xc0, 0xec, 0x73} txOffsets= +peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12151 +peer1.org2.example.com | ] +peer1.org2.example.com | [481 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx ID: [] to index +peer0.org1.example.com | [436 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +peer1.org2.example.com | [482 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [323 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [41b 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [41c 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [41d 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [41e 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [483 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.4:7051 +peer1.org2.example.com | [484 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40098], isChainEmpty=[false], lastBlockNumber=[2] +peer1.org2.example.com | [485 06-12 02:14:22.75 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] +orderer.example.com | [324 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [325 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [326 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [327 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [328 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer1.org2.example.com | [486 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] +peer1.org2.example.com | [487 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +peer1.org2.example.com | [488 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +orderer.example.com | [329 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [32a 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [32b 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org2.example.com | [489 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | [32c 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [32d 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [522 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [48a 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org2.example.com | [48b 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [32e 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [523 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [524 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [525 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [527 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [48c 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org2.example.com | [48d 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +orderer.example.com | [32f 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [330 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer1.org2.example.com | [48e 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [48f 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [3] +peer1.org2.example.com | [490 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] +peer1.org2.example.com | [491 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [3] +orderer.example.com | [331 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer1.org2.example.com | [492 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +peer0.org2.example.com | [41f 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [420 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +orderer.example.com | [332 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [333 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +peer1.org1.example.com | [526 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [528 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [52a 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [529 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [493 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer1.org2.example.com | [494 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [495 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer1.org2.example.com | [496 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer0.org2.example.com | [421 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [437 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [422 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [424 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 5946037328689966164, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes +peer1.org2.example.com | [497 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [334 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +peer1.org2.example.com | [498 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [52b 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [52c 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [52d 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [52e 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [52f 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes +peer1.org1.example.com | [530 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [335 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [499 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [425 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 5946037328689966164, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes +peer0.org2.example.com | [426 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [336 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +peer0.org1.example.com | [438 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +peer1.org1.example.com | [531 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 3 peers +peer1.org2.example.com | [49a 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [427 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 5946037328689966164, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes +orderer.example.com | [337 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org2.example.com | [49b 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [49c 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [428 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [49d 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [439 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [338 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +peer0.org2.example.com | [429 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [532 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [49e 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [43a 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [43b 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org2.example.com | [42a 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [533 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [49f 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [43c 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +orderer.example.com | [339 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +peer0.org2.example.com | [42b 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [534 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [4a0 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [43d 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [33a 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +peer0.org2.example.com | [42c 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [535 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [4a1 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) +peer0.org1.example.com | [43e 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +orderer.example.com | [33b 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +peer0.org2.example.com | [42d 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [536 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [4a2 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [43f 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | [33c 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +peer0.org2.example.com | [42e 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [4a3 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes +peer1.org1.example.com | [538 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [33d 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +peer0.org1.example.com | [440 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org2.example.com | [42f 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [4a4 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [4a5 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer0.org1.example.com:7051, PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] isn't responsive: EOF +orderer.example.com | [33e 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +peer0.org1.example.com | [441 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [423 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4a6 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182]] +orderer.example.com | [33f 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +peer1.org1.example.com | [539 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [442 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [431 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4a7 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182], Metadata: [] +orderer.example.com | [340 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +peer1.org1.example.com | [53a 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [443 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +peer0.org2.example.com | [432 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [4a8 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] expireDeadMembers.CloseConn.CloseConn -> DEBU Closing connection for , PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +orderer.example.com | [341 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +peer1.org1.example.com | [537 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 551 bytes, Signature: 0 bytes +peer0.org1.example.com | [444 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [4a9 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +peer0.org2.example.com | [433 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [342 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc420c16940)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +peer1.org1.example.com | [53b 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [445 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [4aa 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.5:7051 +peer0.org2.example.com | [434 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [343 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +peer1.org1.example.com | [53c 06-12 02:14:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [446 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [4ab 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer0.org2.example.com | [435 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [344 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x81, 0xc5, 0xbd, 0x2f, 0xfe, 0x1f, 0xf2, 0xa7, 0x99, 0x11, 0xeb, 0x89, 0x2a, 0xfe, 0x78, 0x3e, 0xbf, 0xeb, 0x8f, 0x89, 0xbe, 0x14, 0xc1, 0x3d, 0xfa, 0x19, 0xe2, 0x63, 0x95, 0x7d, 0xd8, 0xa6} txOffsets= +peer1.org1.example.com | [53d 06-12 02:14:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [447 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +peer0.org2.example.com | [430 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [4ac 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +orderer.example.com | txId= locPointer=offset=38, bytesLength=12078 +peer1.org1.example.com | [53e 06-12 02:14:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [448 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] +peer0.org2.example.com | [436 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4ad 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:13941726900962254619 tag:EMPTY mem_req:\357\250}\311\033;<\014]\356\300t\002 o\350\335\256Z\212m\313\317\252\373\332\255\263\247\035`\266;\261\017\361\211\322\0102/\305]\312\234\314" > > > , Envelope: 282 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | ] +peer1.org1.example.com | [53f 06-12 02:14:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [449 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +peer0.org2.example.com | [438 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4ae 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:13941726900962254619 tag:EMPTY mem_req:\357\250}\311\033;<\014]\356\300t\002 o\350\335\256Z\212m\313\317\252\373\332\255\263\247\035`\266;\261\017\361\211\322\0102/\305]\312\234\314" > > > , Envelope: 282 bytes, Signature: 0 bytes +orderer.example.com | [345 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] +peer0.org1.example.com | [44a 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:35384 +peer0.org2.example.com | [439 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [4af 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [540 06-12 02:14:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 551 bytes, Signature: 0 bytes +orderer.example.com | [346 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer0.org1.example.com | [44b 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35384 +peer0.org2.example.com | [43a 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [4b0 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) +peer1.org1.example.com | [541 06-12 02:14:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [347 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +peer0.org1.example.com | [44c 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35384 +peer0.org2.example.com | [43b 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [4b1 06-12 02:14:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.5:56484 +peer1.org1.example.com | [542 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [348 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12121], Going to peek [8] bytes +peer0.org1.example.com | [44d 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35384 +peer0.org2.example.com | [43c 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [4b2 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:56484 +peer1.org2.example.com | [4b3 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:56484 +peer1.org1.example.com | [543 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [44e 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org2.example.com | [43d 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4b4 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:56484 +peer1.org1.example.com | [544 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [349 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org1.example.com | [44f 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35342 disconnected +peer0.org2.example.com | [43e 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [4b5 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer1.org1.example.com | [545 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +orderer.example.com | [34a 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +peer0.org1.example.com | [450 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing +peer0.org2.example.com | [43f 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4b6 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 13941726900962254619, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes +peer1.org1.example.com | [546 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [34b 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) +peer0.org1.example.com | [451 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [440 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [4b7 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [547 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [34c 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources +peer0.org1.example.com | [452 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org2.example.com | [441 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4b8 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 13941726900962254619, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes +peer1.org1.example.com | [548 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [34d 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel +peer0.org1.example.com | [453 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35384 disconnected +peer0.org2.example.com | [442 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [4b9 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [549 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [34e 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [454 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [443 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [4ba 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [54a 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [34f 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [455 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer0.org2.example.com | [444 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [4bb 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [54b 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [350 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...C41AD0F97C63411D4063E78ED819955B +peer0.org1.example.com | [456 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x11, 0x61, 0x9f, 0x74, 0x2a, 0x75, 0xba, 0x72, 0x46, 0x54, 0x9e, 0xb0, 0xdc, 0xb3, 0x98, 0xed, 0xeb, 0xfa, 0xa0, 0xae, 0xea, 0x73, 0x9a, 0x0, 0x40, 0x67, 0xea, 0x20, 0x7a, 0xc0, 0xec, 0x73} txOffsets= +peer0.org2.example.com | [445 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [4bc 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [54c 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [351 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: B2D71EAB5778BEB43141DE3EFF574CD0ECD49D911CB4AB80FEDE7B9066ADABE1 +peer0.org1.example.com | txId= locPointer=offset=70, bytesLength=12151 +peer0.org2.example.com | [446 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [54d 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [4bd 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | [352 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity peer0.org1.example.com | ] -peer0.org1.example.com | [370 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx ID: [] to index -peer0.org1.example.com | [371 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [372 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40097], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org1.example.com | [373 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] -peer0.org1.example.com | [374 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] -peer0.org2.example.com | [2bb 05-31 05:21:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:42738 -peer0.org2.example.com | [2bc 05-31 05:21:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:42738 -peer0.org2.example.com | [2bd 05-31 05:21:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:42738 -peer0.org2.example.com | [2be 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:5146316642977206224 tag:EMPTY mem_req:_\215\234\364\352&\t\003\254)\372x\302\360\341\223\210\232U\276\361" > > , Envelope: 983 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bf 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2c0 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:5146316642977206224 tag:EMPTY mem_req:_\215\234\364\352&\t\003\254)\372x\302\360\341\223\210\232U\276\361" > > , Envelope: 983 bytes, Signature: 0 bytes -peer0.org2.example.com | [2c1 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -peer0.org2.example.com | [2c2 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes]}, deadMembers={[]} -orderer.example.com | [1bd 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1be 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [1bf 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [1c0 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [1c1 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [1c2 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [1c3 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [1c4 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [1c5 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [1c6 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [1c7 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [1c8 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1c9 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -peer1.org2.example.com | [1b2 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [1b3 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [1b4 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [1b5 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [1b6 05-31 05:21:35.61 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [1b7 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [1b8 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [1b9 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [1ba 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [1bb 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [1bc 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [1bd 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [1be 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [1bf 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [1c0 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [1c1 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [1c2 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [1c3 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [1c4 05-31 05:21:35.62 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [1c5 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [1c6 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [1c7 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [1c8 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [1c9 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [1ca 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [1cb 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org2.example.com | [1cc 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [1cd 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [1ce 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [1cf 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [1d0 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [1d1 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [1d2 05-31 05:21:35.63 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [1d3 05-31 05:21:35.64 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [1d4 05-31 05:21:35.64 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [1d5 05-31 05:21:35.64 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [1d6 05-31 05:21:35.64 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [1d7 05-31 05:21:35.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -peer1.org2.example.com | [1d8 05-31 05:21:35.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -peer1.org2.example.com | [1d9 05-31 05:21:35.64 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -peer1.org2.example.com | [1da 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -peer1.org2.example.com | [1db 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [1dd 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [1dc 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain -peer1.org2.example.com | [1de 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [1df 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [9a38d870-3da9-46ce-a363-4e60c3592993] -peer1.org2.example.com | [1e0 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=9a38d870-3da9-46ce-a363-4e60c3592993,syscc=true,proposal=0x0,canname=cscc:1.2.0) -peer1.org2.example.com | [1e1 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -peer1.org2.example.com | [1e2 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [1e3 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a38d870]Received message INIT from peer -peer1.org2.example.com | [1e4 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9a38d870] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1e5 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [9a38d870] Received INIT, initializing chaincode -peer1.org2.example.com | [1e6 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -peer1.org2.example.com | [1e7 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a38d870] Init get response status: 200 -peer1.org2.example.com | [1e8 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9a38d870] Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1e9 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [9a38d870] send state message COMPLETED -peer1.org2.example.com | [1ea 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [9a38d870] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1eb 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [9a38d870] notifying Txid:9a38d870-3da9-46ce-a363-4e60c3592993, channelID:businesschannel -peer1.org2.example.com | [1ec 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [1ed 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -peer1.org2.example.com | [1ee 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [9a38d870-3da9-46ce-a363-4e60c3592993] -peer1.org2.example.com | [1ef 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [1f0 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [186dc9f7-6d10-46b4-b7f8-9742356bf8f7] -peer1.org2.example.com | [1f1 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=186dc9f7-6d10-46b4-b7f8-9742356bf8f7,syscc=true,proposal=0x0,canname=lscc:1.2.0) -peer1.org2.example.com | [1f2 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org2.example.com | [1f3 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [1f4 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [186dc9f7]Received message INIT from peer -peer1.org2.example.com | [1f5 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [186dc9f7] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [1f6 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [186dc9f7] Received INIT, initializing chaincode -peer1.org2.example.com | [1f7 05-31 05:21:35.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [186dc9f7] Init get response status: 200 -peer1.org2.example.com | [1f8 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [186dc9f7] Init succeeded. Sending COMPLETED -peer1.org2.example.com | [1f9 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [186dc9f7] send state message COMPLETED -peer1.org2.example.com | [1fa 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [186dc9f7] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1fb 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [186dc9f7] notifying Txid:186dc9f7-6d10-46b4-b7f8-9742356bf8f7, channelID:businesschannel -peer1.org2.example.com | [1fc 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [1fd 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -peer1.org2.example.com | [1fe 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [186dc9f7-6d10-46b4-b7f8-9742356bf8f7] -peer1.org2.example.com | [1ff 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [200 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a0296697-58f1-4371-8541-8a808d721580] -peer1.org2.example.com | [201 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=a0296697-58f1-4371-8541-8a808d721580,syscc=true,proposal=0x0,canname=qscc:1.2.0) -peer1.org2.example.com | [202 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer1.org2.example.com | [203 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [204 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a0296697]Received message INIT from peer -peer1.org2.example.com | [205 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a0296697] Handling ChaincodeMessage of type: INIT(state:ready) -peer1.org2.example.com | [206 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a0296697] Received INIT, initializing chaincode -peer1.org2.example.com | [207 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -peer1.org2.example.com | [208 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a0296697] Init get response status: 200 -peer1.org2.example.com | [209 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a0296697] Init succeeded. Sending COMPLETED -peer1.org2.example.com | [20a 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a0296697] send state message COMPLETED -peer1.org2.example.com | [20b 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a0296697] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [20c 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a0296697] notifying Txid:a0296697-58f1-4371-8541-8a808d721580, channelID:businesschannel -peer1.org2.example.com | [20d 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [20e 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -peer1.org2.example.com | [20f 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a0296697-58f1-4371-8541-8a808d721580] -peer1.org2.example.com | [210 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [2b5fc4e5-cb9a-4484-bcd9-3c1aad8ef1d6] -peer1.org2.example.com | [211 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] -peer1.org2.example.com | [212 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [2b5fc4e5-cb9a-4484-bcd9-3c1aad8ef1d6] -peer1.org2.example.com | [213 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -peer1.org2.example.com | [214 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [215 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [216 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -peer1.org2.example.com | [217 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [218 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -peer1.org2.example.com | [219 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -peer1.org1.example.com | [2a7 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [2a9 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [2aa 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [2ab 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -peer1.org1.example.com | [2ac 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [2ad 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [2ae 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [2af 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -peer1.org1.example.com | [2b0 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -peer1.org1.example.com | [2b1 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xb, 0x15, 0x74, 0xf2, 0x5c, 0x99, 0x28, 0x95, 0x1, 0xd7, 0x8a, 0x82, 0x2e, 0x8c, 0x80, 0x51, 0xbe, 0xff, 0x92, 0xb1, 0xb5, 0x58, 0x12, 0xa5, 0x7c, 0x17, 0x9a, 0x2a, 0xb5, 0x56, 0x83, 0x2f} txOffsets= -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12094 -peer1.org1.example.com | ] -peer1.org1.example.com | [2b2 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx ID: [] to index -peer1.org1.example.com | [2b3 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [2b4 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org1.example.com | [2b5 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org1.example.com | [2b6 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] -peer1.org1.example.com | [2b7 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org1.example.com | [2b8 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -peer1.org1.example.com | [2b9 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -peer1.org1.example.com | [2ba 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -peer1.org1.example.com | [2bb 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [2bc 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [2be 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org1.example.com | [2bd 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:8484881097075392753 tag:EMPTY mem_req: > > , Envelope: 1087 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2bf 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:8484881097075392753 tag:EMPTY mem_req: > > , Envelope: 1087 bytes, Signature: 0 bytes -peer1.org1.example.com | [2c0 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [2c1 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [2c2 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] -peer1.org1.example.com | [2c3 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer1.org1.example.com | [2c4 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer1.org1.example.com | [2c5 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [2c6 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org1.example.com | [2c7 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [2c8 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [2c9 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [2ca 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [2cb 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [2cc 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [2cd 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [2ce 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [2cf 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [2d0 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [2d1 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [2d2 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [2d3 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4204cdbc0 env 0xc420473680 txn 0 -peer1.org1.example.com | [2d4 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc420473680 -peer1.org1.example.com | [2d5 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -peer1.org1.example.com | [2d6 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [2d7 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [2d8 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer1.org1.example.com | [2d9 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [2da 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [2db 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422629000, header channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -peer1.org1.example.com | [2dc 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org1.example.com | [2dd 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [2de 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [2df 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [2e0 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [2e1 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [2e2 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [2e3 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [2e4 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [2e5 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [2e6 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [2e7 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [2e8 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [2e9 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [2ea 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [2eb 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [2ec 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [2ed 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer1.org1.example.com | [2ee 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [2ef 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2f0 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2f1 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2f2 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [375 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -peer0.org1.example.com | [376 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -peer0.org1.example.com | [377 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [378 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [379 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org1.example.com | [37a 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer0.org1.example.com | [37b 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [37c 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer0.org1.example.com | [37e 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer0.org1.example.com | [37f 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [380 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [381 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -peer0.org1.example.com | [382 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org1.example.com | [383 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [37d 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] -peer0.org1.example.com | [384 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 2109433561894600604, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 2110 bytes, Signature: 0 bytes -peer0.org1.example.com | [385 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 2109433561894600604, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 2110 bytes, Signature: 0 bytes -peer0.org1.example.com | [386 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [387 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 2109433561894600604, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 2110 bytes, Signature: 0 bytes -peer0.org1.example.com | [388 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [389 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: -peer0.org1.example.com | [38a 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity -peer0.org1.example.com | [38b 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [38c 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer0.org1.example.com | [38d 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org1.example.com | [38e 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [38f 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [390 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [391 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [393 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [394 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [395 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [396 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [397 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [398 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [392 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer0.org1.example.com | [399 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [39a 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -peer0.org1.example.com | [39b 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes]}, deadMembers={[]} -peer1.org2.example.com | [21a 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [89aa0983] Transaction completed. Sending COMPLETED -peer1.org2.example.com | [21b 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [89aa0983] send state message COMPLETED -peer1.org2.example.com | [21c 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [89aa0983] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [21d 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [89aa0983] notifying Txid:89aa0983e4525aec8a4c5f9991095678c1237670eb23169caeed0ca7a4c2821f, channelID: -peer1.org2.example.com | [21e 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [21f 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][89aa0983e4525aec8a4c5f9991095678c1237670eb23169caeed0ca7a4c2821f] Exit -peer1.org2.example.com | [220 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][89aa0983] Exit -peer1.org2.example.com | [221 05-31 05:21:35.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49034 -peer1.org2.example.com | [222 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [223 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to peer0.org2.example.com:7051 -peer1.org2.example.com | [224 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [225 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [226 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [227 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer1.org2.example.com | [228 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [229 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [22a 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 18229140685534142264, Envelope: 941 bytes, Signature: 0 bytes -peer1.org2.example.com | [22b 05-31 05:21:35.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 18229140685534142264, Envelope: 941 bytes, Signature: 0 bytes -peer1.org2.example.com | [22c 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 18229140685534142264, Envelope: 941 bytes, Signature: 0 bytes -peer1.org2.example.com | [22d 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 88 112 117 99 49 88 68 101 115 51 113 78 103 118 98 55 115 105 73 47 73 68 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 53 51 108 56 83 103 113 56 118 110 48 112 72 122 108 103 103 47 85 112 109 85 74 98 48 107 106 56 87 71 68 106 10 83 80 86 114 57 109 99 81 117 69 109 101 99 57 65 53 111 55 90 109 113 53 121 47 112 98 85 52 100 51 84 48 80 52 111 69 80 78 52 65 104 107 54 122 100 80 47 75 108 119 43 119 80 54 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 75 50 72 97 75 52 108 10 88 81 105 117 49 88 120 103 73 106 84 53 56 99 116 111 90 111 84 67 116 53 111 104 74 99 121 113 83 55 78 115 71 114 83 117 65 105 65 53 86 119 47 84 121 75 110 107 80 76 86 115 50 66 49 111 49 74 102 70 105 71 43 83 10 81 104 56 48 97 84 110 65 101 103 83 84 83 113 109 65 49 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer1.org2.example.com | [22e 05-31 05:21:35.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22f 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1077 bytes, Signature: 0 bytes -peer1.org2.example.com | [230 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1077 bytes, Signature: 0 bytes -peer1.org2.example.com | [231 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [232 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1077 bytes, Signature: 0 bytes -peer1.org2.example.com | [233 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [234 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [235 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [237 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [238 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [239 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [23a 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [23b 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [23c 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [23d 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [23e 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [23f 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [240 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer1.org2.example.com | [241 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [236 05-31 05:21:35.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [242 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [243 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [244 05-31 05:21:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [245 05-31 05:21:36.65 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting, peers found 1 -peer1.org2.example.com | [246 05-31 05:21:36.65 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [247 05-31 05:21:36.65 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [248 05-31 05:21:36.65 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [249 05-31 05:21:36.65 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [24a 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [24b 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [24c 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [1ca 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [1cb 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [1cc 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [1cd 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [1ce 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [1cf 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [1d0 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [1d1 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [1d2 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [1d3 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [1d4 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [1d5 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [1d6 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [1d7 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [1d8 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [1d9 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [1da 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -orderer.example.com | [1db 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -orderer.example.com | [1dc 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [1dd 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -orderer.example.com | [1de 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [1df 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -orderer.example.com | [1e0 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [1e1 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [1e2 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [1e3 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [1e4 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [1e5 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [1e6 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1e7 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [1e8 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [1e9 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [1ea 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [1eb 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [1ec 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [1ed 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [1ee 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [1ef 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [2c3 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -peer0.org2.example.com | [2c4 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer0.org2.example.com | [2c5 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2c6 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2c7 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [2c8 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 5146316642977206224, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 3077 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2c9 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\013\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 W\267I\367R\037/>\016U\223\244\317WY\223\020\315\312B<{\234\216\266_\010f\245?P\311\002 >\350\202\203;\323:\347\353S\344\361&\220\364\244\373I!\223(\206\005bX+\251\317\217\037\273\301" > alive:_\215\234\364\352&\t\003\254)\372x\302\360\341\223\210\232U\276\361" > alive: -peer0.org2.example.com | [2ca 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 5146316642977206224, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 3077 bytes, Signature: 0 bytes -peer0.org2.example.com | [2cb 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2cc 05-31 05:21:41.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [2cd 05-31 05:21:41.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.beLeader -> INFO [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Becoming a leader -peer0.org2.example.com | [2ce 05-31 05:21:41.37 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 | [2cf 05-31 05:21:41.37 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [2d0 05-31 05:21:41.37 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [2d1 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [2d2 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [24d 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [24e 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [24f 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [250 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [251 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [252 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [253 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [254 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [255 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [256 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -peer1.org2.example.com | [257 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -peer1.org2.example.com | [258 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -peer1.org2.example.com | [259 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25a 05-31 05:21:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [25b 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [25c 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [25d 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [25e 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [25f 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org2.example.com | [260 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org2.example.com | [261 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org2.example.com | [262 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [263 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1074 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [264 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 1074 bytes, Signature: 0 bytes -peer1.org2.example.com | [265 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [266 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes -peer1.org2.example.com | [267 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes -peer1.org2.example.com | [268 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [269 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2148 bytes, Signature: 0 bytes -peer1.org2.example.com | [26a 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [26b 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" > , Envelope: 885 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [26c 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [26d 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [26e 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [26f 05-31 05:21:38.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [270 05-31 05:21:38.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [271 05-31 05:21:38.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [272 05-31 05:21:38.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [273 05-31 05:21:38.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [274 05-31 05:21:38.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [275 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [276 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [277 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [278 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [279 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [27a 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage -> DEBU Don't have StateInfo message of peer 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [27b 05-31 05:21:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27c 05-31 05:21:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org2.example.com | [27d 05-31 05:21:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org2.example.com | [27e 05-31 05:21:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [280 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [281 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [282 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [27f 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [284 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [285 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [283 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [286 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes -peer1.org2.example.com | [287 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes -peer1.org2.example.com | [288 05-31 05:21:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [289 05-31 05:21:39.64 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [28a 05-31 05:21:39.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -peer1.org2.example.com | [28b 05-31 05:21:39.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [28c 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [28d 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\253\247$\020\222\202rk\301/\340\002 Th\267\033\245FI\221\002\361\351\332\240\254\036\227\0258p)\037R@\220\241\307F\267\271Iv\343" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes -peer1.org2.example.com | [28e 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [28f 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [290 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [291 05-31 05:21:39.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [292 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\253\247$\020\222\202rk\301/\340\002 Th\267\033\245FI\221\002\361\351\332\240\254\036\227\0258p)\037R@\220\241\307F\267\271Iv\343" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes -peer1.org2.example.com | [293 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [294 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\253\247$\020\222\202rk\301/\340\002 Th\267\033\245FI\221\002\361\351\332\240\254\036\227\0258p)\037R@\220\241\307F\267\271Iv\343" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes -peer1.org2.example.com | [295 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [296 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [297 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [298 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [299 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [29a 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [29b 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [29c 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [29d 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [29e 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [39c 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -peer0.org1.example.com | [39d 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer0.org1.example.com | [39e 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [39f 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [3a0 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:33210 -peer0.org1.example.com | [3a1 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33210 -peer0.org1.example.com | [3a2 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33210 -peer0.org1.example.com | [3a3 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33210 -peer0.org1.example.com | [3a4 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org1.example.com | [3a5 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33210 disconnected -peer0.org1.example.com | [3a6 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [3a7 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:33212 -peer0.org1.example.com | [3a8 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33212 -peer0.org1.example.com | [3a9 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33212 -peer0.org1.example.com | [3aa 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33212 -peer0.org1.example.com | [3ab 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:8484881097075392753 tag:EMPTY mem_req: > > , Envelope: 1087 bytes, Signature: 0 bytes -peer0.org1.example.com | [3ac 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [3ad 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:8484881097075392753 tag:EMPTY mem_req: > > , Envelope: 1087 bytes, Signature: 0 bytes -peer0.org1.example.com | [3ae 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [3af 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]}, deadMembers={[]} -peer0.org1.example.com | [3b0 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [3b1 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer0.org1.example.com | [3b2 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [1f0 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [1f1 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [1f2 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [1f3 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [1f4 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [1f5 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [1f6 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [1f7 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [1f8 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [1f9 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [1fa 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [1fb 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [1fc 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -orderer.example.com | [1fd 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [1fe 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [1ff 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [200 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [201 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [202 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [203 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [204 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [205 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [206 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [207 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [208 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [209 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [20a 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [20b 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [20c 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [20d 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [20e 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [20f 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [210 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [211 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [212 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [213 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -orderer.example.com | [214 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -orderer.example.com | [215 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [29f 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\253\247$\020\222\202rk\301/\340\002 Th\267\033\245FI\221\002\361\351\332\240\254\036\227\0258p)\037R@\220\241\307F\267\271Iv\343" secret_envelope: > alive: > -peer1.org2.example.com | [2a0 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2147 bytes, Signature: 0 bytes -peer1.org2.example.com | [2a1 05-31 05:21:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2a2 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [2a3 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org2.example.com | [2a4 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [2a5 05-31 05:21:40.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2a6 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [2a7 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [2a8 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2a9 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [2aa 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [2ab 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> INFO [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Some peer is already a leader -peer1.org2.example.com | [2ac 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [2ad 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [2ae 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [2af 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13971 bytes, seq: 1}, Envelope: 14001 bytes, Signature: 0 bytes -peer1.org2.example.com | [2b0 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13971 bytes, seq: 1}, Envelope: 14001 bytes, Signature: 0 bytes -peer1.org2.example.com | [2b1 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2b2 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [2b3 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [2b4 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4222c5c00 env 0xc422205560 txn 0 -peer1.org2.example.com | [2b5 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422205560 -peer1.org2.example.com | [2b6 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -peer1.org2.example.com | [2b7 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [2b8 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [2b9 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer1.org2.example.com | [2ba 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [2bb 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [2bc 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4221dd000, header channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -peer1.org2.example.com | [2bd 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org2.example.com | [2be 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [2bf 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [2c0 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [2c1 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [2c2 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [2c3 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [2c4 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [2c5 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [2c6 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [2c7 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [2c8 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [2c9 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [2ca 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [2cb 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [2cc 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [2cd 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -orderer.example.com | [216 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -orderer.example.com | [217 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [218 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -orderer.example.com | [219 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -orderer.example.com | [21a 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [21b 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [21c 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [21d 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [21e 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [21f 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [220 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [221 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [222 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -orderer.example.com | [223 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [224 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -orderer.example.com | [225 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [226 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [227 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8b8 gate 1527744094211728700 evaluation starts -peer1.org1.example.com | [2f3 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [2f4 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [2f5 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2f6 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2f7 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2f8 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2f9 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2fa 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2fb 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [2fc 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [2fd 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [2fe 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [3b4 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [3b5 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 8484881097075392753, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2160 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [3b6 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\014\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\336H%\310N\316\010\3763\220q,\271\236\377\263\265\257K@\"\257\340H\320\t\363\3756\350%f\002 \0355\210\021\035|\324ge\321\321\335\333\244C\2400^!0pG\302\334\016\362\255,1\327t\356" secret_envelope: > -peer0.org1.example.com | [3b7 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 8484881097075392753, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2160 bytes, Signature: 0 bytes -peer0.org1.example.com | [3b8 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [3b3 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [3b9 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:33218 -peer0.org1.example.com | [3ba 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:13494080481624671681 tag:EMPTY mem_req:\367\364\330\274\334\257)Q%\232\341\252\002 p\341F\316\302\205\010\304\330\022U\336\004\002\350\004\325\361\246\203\\]\211\213wI\361\356\305\220\023\375" secret_envelope: > > , Envelope: 1090 bytes, Signature: 0 bytes -peer0.org1.example.com | [3bb 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2d3 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [2d4 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2d5 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -peer0.org2.example.com | [2d6 05-31 05:21:41.38 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 | [2d7 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -peer0.org2.example.com | [2d8 05-31 05:21:41.38 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 | [2d9 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -peer0.org2.example.com | [2da 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] -peer0.org2.example.com | [2db 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] -peer0.org2.example.com | [2dc 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [2dd 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [2de 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42263b400 env 0xc422492b70 txn 0 -peer0.org2.example.com | [2df 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422492b70 -peer0.org2.example.com | [2e0 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -peer0.org2.example.com | [2e1 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [2e2 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [2e3 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer0.org2.example.com | [2e4 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [2e5 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [2e6 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422683000, header channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -peer0.org2.example.com | [2e7 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org2.example.com | [2e8 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [2e9 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [2ea 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [2eb 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [2ec 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [2ed 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [2ee 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [2ef 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [2f0 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [2ff 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [300 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [301 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [302 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [303 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [304 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [305 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [307 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:7051 -peer1.org1.example.com | [306 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [308 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [30a 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org1.example.com | [30b 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org1.example.com | [309 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [30c 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer1.org1.example.com | [30e 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer1.org1.example.com | [30f 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [30d 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [310 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [311 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 8484881097075392753, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2160 bytes, Signature: 0 bytes -peer1.org1.example.com | [313 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 8484881097075392753, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2160 bytes, Signature: 0 bytes -peer1.org1.example.com | [314 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [315 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 8484881097075392753, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2160 bytes, Signature: 0 bytes -peer1.org2.example.com | [2ce 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer1.org2.example.com | [2cf 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [2d0 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d1 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d2 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d3 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d4 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d5 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d6 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2d7 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [2d8 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [2d9 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [2da 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2db 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2dc 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2dd 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2de 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2df 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2e0 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2e1 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [2e2 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [2e3 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [2e4 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [2e5 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [2e6 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [2e7 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [2e8 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [2e9 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [2ea 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [2eb 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [2ec 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [2ed 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [2ee 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [2ef 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [2f0 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [2f1 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2f2 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [2f3 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [2f4 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer1.org2.example.com | [2f5 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [2f6 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [2f7 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [2f8 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [2f9 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [2fa 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [2fb 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [2fc 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [2fd 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [2fe 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [2ff 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [300 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [301 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [302 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [303 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [304 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [305 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [306 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [307 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [308 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [309 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [228 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [229 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [22a 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [22b 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 principal evaluation fails -orderer.example.com | [22c 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8b8 gate 1527744094211728700 evaluation fails -orderer.example.com | [22d 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [22e 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [22f 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -orderer.example.com | [230 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8c8 gate 1527744094213283900 evaluation starts -orderer.example.com | [231 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [232 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [2f1 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [2f2 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [2f3 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [2f4 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [2f5 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [2f6 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [2f7 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [2f8 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer0.org2.example.com | [2f9 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [2fa 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2fb 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2fc 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [2fd 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2fe 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2ff 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [300 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [301 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [302 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [303 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [304 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [305 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [306 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [307 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [308 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [309 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [30a 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [30b 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [30c 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [30d 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [30e 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [3bc 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:13494080481624671681 tag:EMPTY mem_req:\367\364\330\274\334\257)Q%\232\341\252\002 p\341F\316\302\205\010\304\330\022U\336\004\002\350\004\325\361\246\203\\]\211\213wI\361\356\305\220\023\375" secret_envelope: > > , Envelope: 1090 bytes, Signature: 0 bytes -peer0.org1.example.com | [3bd 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [3be 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [3bf 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" -peer0.org1.example.com | [3c0 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" -peer0.org1.example.com | [3c1 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [3c2 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [3c3 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [3c4 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [3c5 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [3c6 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 13494080481624671681, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2162 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [3c7 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\367\364\330\274\334\257)Q%\232\341\252\002 p\341F\316\302\205\010\304\330\022U\336\004\002\350\004\325\361\246\203\\]\211\213wI\361\356\305\220\023\375" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\r\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 \"\327\031Q*b\216\343\034\217\007;\231\r\n+\315R\336\311h\023\273tN\231\223\377co\314_\002 \025>\244\251T\177\261\353\036\341\316\340lF\262\232Gy\230\220;\304L\215Y\323\357H\351~\320\365" secret_envelope:j\211\253\027\316\010\260\\5wv\274\320\270c\241\236\3734Y\225\006>\002 k[\216\024\235\022i\210eJ7\032K\347\333\303\001\027\261\340e\215\320\304b\247\240\221\311gJ\t" > > -peer0.org1.example.com | [3c8 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 13494080481624671681, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2162 bytes, Signature: 0 bytes -peer0.org1.example.com | [3c9 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [3ca 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:52868 -peer0.org1.example.com | [3cb 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:52868 -peer0.org1.example.com | [3cc 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:52868 -peer0.org1.example.com | [3cd 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:52868 -peer0.org1.example.com | [3ce 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org1.example.com | [3cf 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:52868 disconnected -peer0.org1.example.com | [3d0 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [3d1 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:36220 -peer0.org1.example.com | [3d2 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36220 -peer0.org1.example.com | [3d3 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36220 -peer0.org1.example.com | [3d4 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36220 -peer0.org1.example.com | [3d5 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [3d6 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -peer0.org1.example.com | [3d7 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing -peer0.org1.example.com | [3d8 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:52870 -peer0.org1.example.com | [3d9 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:52870 -peer0.org1.example.com | [3da 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:52870 -peer0.org1.example.com | [3db 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:52870 -peer0.org1.example.com | [3dc 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org1.example.com | [3dd 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36220 disconnected -peer0.org1.example.com | [3de 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [3df 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [3e0 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [3e1 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [3e2 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [3e3 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [3e4 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [3e5 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [3e6 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [3e7 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [3e8 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [3e9 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [3ea 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [3eb 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [3ec 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [3ed 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [3ee 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [3ef 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:52870 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:6652470269808512777 tag:EMPTY mem_req: > , Envelope: 175 bytes, Signature: 0 bytes -peer0.org1.example.com | [3f0 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [3f1 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:6652470269808512777 tag:EMPTY mem_req: > , Envelope: 175 bytes, Signature: 0 bytes -peer0.org1.example.com | [3f2 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [3f3 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [3f4 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]}, deadMembers={[]} -peer0.org1.example.com | [3f5 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [3f6 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer0.org1.example.com | [3f7 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [3f8 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [3f9 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [3fa 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 6652470269808512777, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 2270 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [3fb 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\016\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 f\301\314\300\215F-\310j\306\014\333e\220o\001\222\032OX/\342\024 \273\3548]a-.~\002 5\004\252\014\374k\340^\207\302\354\203\330\2523v\207b=\310\200\371\300\340{\250)\001\204\241\340\177" > -peer0.org1.example.com | [3fc 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 6652470269808512777, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 2270 bytes, Signature: 0 bytes -peer0.org1.example.com | [3fd 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [3fe 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:36226 -peer0.org1.example.com | [400 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36226 -peer1.org2.example.com | [30a 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [30b 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [30c 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [30d 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [30e 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [30f 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [310 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [311 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [312 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [313 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [314 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [315 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [316 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [317 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [318 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [319 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [31a 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [31b 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [31c 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [31d 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [31e 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [31f 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [320 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [321 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [322 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [323 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [324 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [325 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [326 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [327 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [328 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [329 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [32a 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [32b 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [32c 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [32d 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [32e 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [32f 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [330 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org2.example.com | [331 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer1.org2.example.com | [332 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org2.example.com | [333 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | [334 05-31 05:21:41.42 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [335 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [336 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [337 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [338 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [339 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [33a 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4222c5c00 env 0xc422205560 txn 0 -peer1.org2.example.com | [33b 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [33c 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [33e 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org2.example.com | [33f 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -peer1.org2.example.com | [340 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [341 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -peer1.org2.example.com | [342 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [343 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org2.example.com | [344 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org2.example.com | [345 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org2.example.com | [346 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [316 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [312 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [318 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [319 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [31a 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [317 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [31b 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [31c 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org1.example.com | [31d 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [31e 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [31f 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [320 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [321 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [322 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [323 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [324 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org1.example.com | [325 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [326 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [327 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [328 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [329 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [32a 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [32b 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [32c 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [32d 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [32e 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [32f 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [331 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]}, deadMembers={[]} -peer1.org1.example.com | [330 05-31 05:21:41.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [333 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [334 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [335 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [336 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [337 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [338 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [339 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [33a 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [33b 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [33c 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [33d 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [33e 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [33f 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [340 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [341 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [342 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [343 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [344 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [345 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [346 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [347 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [348 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [349 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [34a 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [34b 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [34c 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [34d 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [34e 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [34f 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [350 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [351 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [352 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [353 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [354 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [355 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [356 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [357 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [358 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [359 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [233 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [234 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c8 principal matched by identity 0 -orderer.example.com | [235 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 49 ce 47 74 98 57 38 6e 13 d1 ac 5a 7f 7a 79 b9 |I.Gt.W8n...Z.zy.| -orderer.example.com | 00000010 20 88 08 98 c4 cf 03 5e 06 a2 89 96 e5 9c f7 bf | ......^........| -orderer.example.com | [236 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5e 8d 73 b5 45 2a 8a 4c 77 6f 5d 11 |0D. ^.s.E*.Lwo].| -orderer.example.com | 00000010 12 44 0a f2 a7 64 42 f2 c7 b0 0c 58 96 f5 6a 77 |.D...dB....X..jw| -orderer.example.com | 00000020 80 c9 fc 14 02 20 7c bd c9 3a 8e 04 24 8c f5 e2 |..... |..:..$...| -orderer.example.com | 00000030 10 e7 3b 7e 15 d4 8c 8b ac 4c 92 55 4d 8e 75 0f |..;~.....L.UM.u.| -orderer.example.com | 00000040 3f 21 46 df 1b 51 |?!F..Q| -orderer.example.com | [237 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c8 principal evaluation succeeds for identity 0 -orderer.example.com | [238 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8c8 gate 1527744094213283900 evaluation succeeds -orderer.example.com | [239 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [23a 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [23b 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -orderer.example.com | [23c 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -orderer.example.com | [23d 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [23e 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [23f 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [240 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [241 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [242 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [35a 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [35b 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [35c 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [35d 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [35e 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [35f 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org1.example.com | [332 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [360 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer1.org1.example.com | [362 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [363 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [361 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -peer1.org1.example.com | [364 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org1.example.com | [365 05-31 05:21:41.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer1.org1.example.com | [366 05-31 05:21:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:7051 -peer1.org1.example.com | [368 05-31 05:21:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer1.org1.example.com | [369 05-31 05:21:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer1.org1.example.com | [36a 05-31 05:21:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:5146316642977206224 tag:EMPTY mem_req:_\215\234\364\352&\t\003\254)\372x\302\360\341\223\210\232U\276\361" > > , Envelope: 983 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [36b 05-31 05:21:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:5146316642977206224 tag:EMPTY mem_req:_\215\234\364\352&\t\003\254)\372x\302\360\341\223\210\232U\276\361" > > , Envelope: 983 bytes, Signature: 0 bytes -peer1.org1.example.com | [36c 05-31 05:21:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [367 05-31 05:21:41.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org1.example.com | [36d 05-31 05:21:41.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [36e 05-31 05:21:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer1.org1.example.com | [36f 05-31 05:21:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer1.org1.example.com | [370 05-31 05:21:41.26 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [372 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [373 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [374 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [375 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [376 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4204cdbc0 env 0xc420473680 txn 0 -peer1.org1.example.com | [377 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [378 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [379 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [37a 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer1.org1.example.com | [37b 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [37c 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer1.org1.example.com | [37d 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [37e 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org1.example.com | [37f 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org1.example.com | [380 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [381 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [382 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [383 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [30f 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [310 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [311 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [312 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [313 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [314 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org2.example.com | [315 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [316 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [317 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [318 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [319 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [31a 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer0.org2.example.com | [31b 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [31c 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [31d 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [31e 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [31f 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [320 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [321 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [322 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [323 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [324 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [325 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [326 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [327 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [328 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [329 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [32a 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [32b 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [32c 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [32d 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [32e 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [32f 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [330 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [331 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [332 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [333 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [334 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [335 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [336 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [337 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [338 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [339 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [33a 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [33b 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [33c 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [33d 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [33e 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [33f 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [340 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [341 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [342 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [343 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [344 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [345 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [346 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [347 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [348 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [349 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [34a 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [34b 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [34c 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [34d 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [34e 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [34f 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [350 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [351 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [352 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [353 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [354 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [355 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [356 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [357 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [358 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [359 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [35a 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org2.example.com | [35b 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer0.org2.example.com | [35c 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer0.org2.example.com | [35d 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13971 bytes, seq: 1}, Envelope: 14001 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [35e 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13971 bytes, seq: 1}, Envelope: 14001 bytes, Signature: 0 bytes -peer0.org2.example.com | [35f 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [360 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] -peer0.org2.example.com | [361 05-31 05:21:41.40 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] -peer0.org2.example.com | [362 05-31 05:21:41.41 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [347 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org2.example.com | [348 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [349 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org2.example.com | [33d 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.6:7051 -peer1.org2.example.com | [34a 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [34c 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [34d 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -peer1.org2.example.com | [34e 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [34f 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [350 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [351 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -peer1.org2.example.com | [34b 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org2.example.com | [352 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -peer1.org2.example.com | [353 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org2.example.com | [354 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:6652470269808512777 tag:EMPTY mem_req: > , Envelope: 175 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [355 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:6652470269808512777 tag:EMPTY mem_req: > , Envelope: 175 bytes, Signature: 0 bytes -peer1.org2.example.com | [356 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [357 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xb, 0x15, 0x74, 0xf2, 0x5c, 0x99, 0x28, 0x95, 0x1, 0xd7, 0x8a, 0x82, 0x2e, 0x8c, 0x80, 0x51, 0xbe, 0xff, 0x92, 0xb1, 0xb5, 0x58, 0x12, 0xa5, 0x7c, 0x17, 0x9a, 0x2a, 0xb5, 0x56, 0x83, 0x2f} txOffsets= -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12094 -peer1.org2.example.com | ] -peer1.org2.example.com | [358 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx ID: [] to index -peer1.org2.example.com | [359 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [35a 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] -peer1.org2.example.com | [35b 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] -peer1.org2.example.com | [35c 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14027 bytes, seq: 2}, Envelope: 14057 bytes, Signature: 0 bytes -peer1.org2.example.com | [35d 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14027 bytes, seq: 2}, Envelope: 14057 bytes, Signature: 0 bytes -peer1.org2.example.com | [35e 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [35f 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -peer1.org2.example.com | [360 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -peer1.org2.example.com | [361 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -peer1.org2.example.com | [362 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [363 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [364 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org2.example.com | [365 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [366 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] -peer1.org2.example.com | [367 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer1.org2.example.com | [368 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer1.org2.example.com | [369 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [36a 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer1.org2.example.com | [36b 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [36c 05-31 05:21:41.48 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [36d 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [36e 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [36f 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [370 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [371 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [372 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [373 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [374 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [375 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [376 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [377 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422c09cc0 env 0xc4225c5d70 txn 0 -peer1.org2.example.com | [378 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4225c5d70 -peer1.org2.example.com | [379 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -peer1.org2.example.com | [37a 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [37b 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [37c 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer1.org2.example.com | [37d 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [37e 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [37f 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422d90000, header channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -peer1.org2.example.com | [380 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org2.example.com | [381 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [382 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [383 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [384 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [385 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [386 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [387 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [388 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [389 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [38a 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [38b 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [38c 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [38d 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [38e 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [38f 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [390 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [391 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer1.org2.example.com | [393 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.6:7051 -peer1.org2.example.com | [392 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [363 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [364 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [365 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [366 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [367 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [368 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42263b400 env 0xc422492b70 txn 0 -peer0.org2.example.com | [369 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [36a 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [36b 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [36c 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -peer0.org2.example.com | [36d 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [36e 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -peer0.org2.example.com | [36f 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [370 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [371 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [372 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org2.example.com | [373 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [374 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [375 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [376 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org2.example.com | [377 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [378 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [379 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [37a 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [37b 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [37c 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [37d 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -peer0.org2.example.com | [37e 05-31 05:21:41.43 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -peer0.org2.example.com | [37f 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xb, 0x15, 0x74, 0xf2, 0x5c, 0x99, 0x28, 0x95, 0x1, 0xd7, 0x8a, 0x82, 0x2e, 0x8c, 0x80, 0x51, 0xbe, 0xff, 0x92, 0xb1, 0xb5, 0x58, 0x12, 0xa5, 0x7c, 0x17, 0x9a, 0x2a, 0xb5, 0x56, 0x83, 0x2f} txOffsets= -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12094 -peer0.org2.example.com | ] -peer0.org2.example.com | [380 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx ID: [] to index -peer0.org2.example.com | [381 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [382 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org2.example.com | [383 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] -peer0.org2.example.com | [384 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -peer0.org2.example.com | [385 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -peer0.org2.example.com | [386 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -peer0.org2.example.com | [387 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [388 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [389 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org2.example.com | [38a 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [38b 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] -peer0.org2.example.com | [38c 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -peer0.org2.example.com | [38d 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -peer0.org2.example.com | [38e 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [38f 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -peer0.org2.example.com | [390 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [391 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [392 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [393 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [394 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [395 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [396 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [397 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [398 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [399 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [39a 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [39b 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [39c 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422ec8180 env 0xc422e7e930 txn 0 -peer0.org2.example.com | [39d 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422e7e930 -peer0.org2.example.com | [39e 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -peer0.org2.example.com | [39f 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [3a0 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [3a1 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer0.org2.example.com | [3a2 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [3a3 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [3a4 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422ed2000, header channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -peer0.org2.example.com | [3a5 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org2.example.com | [3a6 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [3a7 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [3a8 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [3a9 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [3aa 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [3ab 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [3ac 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [3ad 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [3ae 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [3ff 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer0.org1.example.com | [402 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer0.org1.example.com | [403 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer0.org1.example.com | [404 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [405 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [401 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:36230 -peer0.org1.example.com | [406 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36230 -peer0.org1.example.com | [407 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36230 -peer0.org1.example.com | [408 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36230 -peer0.org1.example.com | [409 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36226 -peer0.org1.example.com | [40a 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36226 -peer0.org1.example.com | [40b 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36230 disconnected -peer0.org1.example.com | [40c 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -peer0.org1.example.com | [40d 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [40e 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing -peer0.org1.example.com | [40f 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org1.example.com | [410 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36226 disconnected -peer0.org1.example.com | [411 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [412 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:52878 -peer0.org1.example.com | [413 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:52878 -peer0.org1.example.com | [415 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:52878 -peer0.org1.example.com | [416 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:52878 -peer0.org1.example.com | [414 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:52870 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -peer0.org1.example.com | [417 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [418 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -peer0.org1.example.com | [419 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [41a 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [41e 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [41f 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [420 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [421 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [422 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [423 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [424 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [425 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [426 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [428 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes -peer0.org1.example.com | [429 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [42a 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [42b 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [42c 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [42d 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [41b 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [42e 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org1.example.com | [42f 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:52870 disconnected -peer0.org1.example.com | [430 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [431 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [432 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [41c 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org1.example.com | [41d 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:52878 disconnected -peer0.org1.example.com | [433 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [427 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\020" signature:"0E\002!\000\323\025\231TM`p\225\n\236\300\265\036\2745\207Y\245WP\\<\332.\377\251s\237E\201\307\260\002 VeL\323\363\272\342*\001\246\017!#=\337\365`i\356'#\210\304\241\371\363A\360\272F\024Y" > -peer1.org2.example.com | [394 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [395 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [396 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [397 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [398 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [39a 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [399 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org2.example.com | [39b 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [39c 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [39d 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [39e 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [39f 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a0 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a1 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a2 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a3 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a4 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a5 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a6 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a7 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [3a8 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [3a9 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [3aa 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [3ab 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [3ac 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [3ad 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [3ae 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [3af 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer1.org2.example.com | [3b0 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [3b1 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [3b2 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [3b3 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [3b4 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3b5 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org2.example.com | [3b6 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [3b7 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [3b8 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [3b9 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [3ba 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3bb 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [3bc 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [3bd 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org2.example.com | [3be 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer1.org2.example.com | [3bf 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [3c0 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 6652470269808512777, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 2270 bytes, Signature: 0 bytes -peer1.org2.example.com | [3c1 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 6652470269808512777, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 2270 bytes, Signature: 0 bytes -peer1.org2.example.com | [3c2 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [3c3 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 6652470269808512777, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 2270 bytes, Signature: 0 bytes -peer1.org2.example.com | [3c4 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -peer1.org2.example.com | [3c5 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [3c6 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [3c7 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [3c8 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [3c9 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [3ca 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [3cb 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [3cc 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: -peer1.org2.example.com | [3cd 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity -peer1.org2.example.com | [3ce 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [3cf 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [3d0 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [3d1 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [3d2 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [3d3 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer1.org2.example.com | [3d4 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes]}, deadMembers={[]} -peer1.org2.example.com | [3d5 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer1.org2.example.com | [3d6 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer1.org2.example.com | [3d7 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [3d8 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [3d9 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [3da 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [3db 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [3dc 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [3dd 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [3de 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [3df 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [3e0 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [3e1 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [3e2 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [3e3 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [3e4 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [3e5 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [3e6 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [3e7 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [3e8 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [3e9 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [3ea 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [3eb 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [3ec 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [3ed 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [3ee 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [3ef 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [3f0 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [3f1 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [3f2 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [3f3 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [3f4 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [3f5 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [3f6 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [3f7 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [3f8 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [3f9 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [3fa 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [3fb 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [3fc 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [3fd 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [3fe 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [3ff 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [400 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [401 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [402 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [403 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [405 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [406 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [407 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: -peer1.org2.example.com | [408 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes isn't valid -peer1.org2.example.com | [409 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [404 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [40a 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [40b 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [40c 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [40d 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [40e 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [40f 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org2.example.com | [410 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [411 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [412 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [413 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [414 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [415 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [416 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [417 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org2.example.com | [418 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer1.org2.example.com | [419 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org2.example.com | [41a 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -peer1.org2.example.com | [41b 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org2.example.com | [41c 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | [41d 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [41e 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer1.org2.example.com | [41f 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org2.example.com | [420 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org2.example.com | [421 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [422 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -peer1.org2.example.com | [423 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [424 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org2.example.com | [425 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [426 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [427 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [428 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [42a 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [42b 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [3af 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [3b0 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [3b1 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [3b2 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [3b3 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [3b4 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [3b5 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [3b6 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -peer0.org2.example.com | [3b7 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [3b8 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14027 bytes, seq: 2}, Envelope: 14057 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [3b9 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14027 bytes, seq: 2}, Envelope: 14057 bytes, Signature: 0 bytes -peer0.org2.example.com | [3ba 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [3bb 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [3bc 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [3bd 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [3be 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3bf 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c0 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c1 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c2 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c3 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c4 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c5 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c6 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c7 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c8 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3c9 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [3ca 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3cb 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3cc 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [3cd 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [3ce 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [3cf 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [3d0 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [3d1 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [3d2 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [3d3 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3d4 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [3d5 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org2.example.com | [3d6 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3d7 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [434 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [435 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [436 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing -peer0.org1.example.com | [437 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [438 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:7051 -peer0.org1.example.com | [439 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:7051 -peer0.org1.example.com | [43a 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:7051 -peer0.org1.example.com | [43b 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [43c 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [43d 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:7051 -peer0.org1.example.com | [43e 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer0.org1.example.com | [43f 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer0.org1.example.com | [440 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [441 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [442 05-31 05:21:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:36240 -peer0.org1.example.com | [443 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36240 -peer0.org1.example.com | [444 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36240 -peer0.org1.example.com | [445 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36240 -peer0.org1.example.com | [446 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -peer0.org1.example.com | [447 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [448 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing -peer0.org1.example.com | [449 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org1.example.com | [44a 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36240 disconnected -peer0.org1.example.com | [44b 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [44c 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [44d 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [44e 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [450 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [451 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [452 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [453 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [454 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [455 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [456 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [457 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [458 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [42c 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org2.example.com | [42d 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer1.org2.example.com | [42e 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [42f 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer1.org2.example.com | [430 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [431 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org2.example.com | [432 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org2.example.com | [433 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org2.example.com | [434 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [435 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org2.example.com | [436 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org2.example.com | [429 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422c09cc0 env 0xc4225c5d70 txn 0 -peer1.org2.example.com | [437 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org2.example.com | [438 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [43a 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [439 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer1.org2.example.com | [43b 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer1.org2.example.com | [43c 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [43d 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [43e 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [43f 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -peer1.org2.example.com | [440 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] -peer1.org2.example.com | [441 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x1c, 0x89, 0x5b, 0x8a, 0xa8, 0xc6, 0x73, 0x3c, 0xac, 0x1f, 0xe1, 0x55, 0x12, 0x70, 0xf, 0x84, 0xef, 0xfb, 0xa4, 0xcc, 0xbe, 0x67, 0x8, 0xce, 0x57, 0xdf, 0x28, 0x5b, 0xd, 0x99, 0x90, 0xd4} txOffsets= -peer1.org2.example.com | txId= locPointer=offset=70, bytesLength=12152 -peer1.org2.example.com | ] -peer1.org2.example.com | [442 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx ID: [] to index -peer1.org2.example.com | [443 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [444 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40097], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org2.example.com | [445 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] -peer1.org2.example.com | [446 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] -peer1.org2.example.com | [447 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -peer1.org2.example.com | [448 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -peer1.org2.example.com | [449 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [44a 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [44b 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org2.example.com | [44c 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [44d 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] -peer1.org2.example.com | [44e 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -peer1.org2.example.com | [44f 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer1.org2.example.com | [450 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [451 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) -peer1.org2.example.com | [452 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer1.org2.example.com | [453 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [454 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [455 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [456 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [457 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [458 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [459 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [45a 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [45b 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [45c 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [45d 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.6:40614 -peer1.org2.example.com | [45e 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:40614 -peer1.org2.example.com | [45f 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:40614 -peer1.org2.example.com | [460 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:40614 -peer1.org2.example.com | [461 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer1.org2.example.com | [462 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer1.org2.example.com | [463 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer1.org2.example.com | [464 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:11426622408762612881 tag:EMPTY mem_req: > > , Envelope: 283 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [465 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:11426622408762612881 tag:EMPTY mem_req: > > , Envelope: 283 bytes, Signature: 0 bytes -peer1.org2.example.com | [466 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [467 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 11426622408762612881, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1356 bytes, Signature: 0 bytes -peer1.org2.example.com | [468 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 11426622408762612881, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1356 bytes, Signature: 0 bytes -peer1.org2.example.com | [46a 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 11426622408762612881, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1356 bytes, Signature: 0 bytes -peer1.org2.example.com | [46b 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [46c 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [46d 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [459 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [44f 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [45a 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [45b 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [45c 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [45d 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [45e 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [45f 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [460 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [461 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [462 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [463 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [464 05-31 05:21:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [465 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:36244 -peer0.org1.example.com | [466 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36244 -peer0.org1.example.com | [467 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36244 -peer0.org1.example.com | [468 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36244 -peer0.org1.example.com | [469 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [46a 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [46b 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [384 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org2.example.com | [3d8 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [3d9 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3da 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3db 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [3dc 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [3dd 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [3de 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [3df 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3e0 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3e1 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [3e2 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [3e3 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [3e4 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [3e5 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [3e6 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [3e7 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [3e8 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [3e9 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [3ea 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [3eb 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [3ec 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [3ed 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [3ee 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [3ef 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [3f0 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [3f1 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [3f2 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [3f3 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [3f4 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [3f5 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [3f6 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [3f7 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [3f8 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [3f9 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [3fa 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [3fb 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [3fc 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [3fd 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [3fe 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [3ff 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [400 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [401 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [402 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [403 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [404 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [385 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [386 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [387 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer1.org1.example.com | [388 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [389 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [38a 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [38b 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -peer1.org1.example.com | [38c 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer1.org1.example.com | [38d 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer1.org1.example.com | [38e 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [38f 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] -peer1.org1.example.com | [390 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 5146316642977206224, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 3077 bytes, Signature: 0 bytes -peer1.org1.example.com | [391 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 5146316642977206224, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 3077 bytes, Signature: 0 bytes -peer1.org1.example.com | [392 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [393 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 5146316642977206224, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 3077 bytes, Signature: 0 bytes -peer1.org1.example.com | [394 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [395 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: -peer1.org1.example.com | [396 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity -peer1.org1.example.com | [397 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [398 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer1.org1.example.com | [399 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 12 but got ts: inc_num:1527744091618763800 seq_num:11 -peer1.org1.example.com | [39b 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x1c, 0x89, 0x5b, 0x8a, 0xa8, 0xc6, 0x73, 0x3c, 0xac, 0x1f, 0xe1, 0x55, 0x12, 0x70, 0xf, 0x84, 0xef, 0xfb, 0xa4, 0xcc, 0xbe, 0x67, 0x8, 0xce, 0x57, 0xdf, 0x28, 0x5b, 0xd, 0x99, 0x90, 0xd4} txOffsets= -peer1.org1.example.com | txId= locPointer=offset=70, bytesLength=12152 -peer1.org1.example.com | ] -peer1.org1.example.com | [39c 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx ID: [] to index -peer1.org1.example.com | [39d 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [39a 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [39e 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -peer1.org1.example.com | [39f 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -peer1.org1.example.com | [3a0 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [3a1 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer1.org1.example.com | [3a2 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40097], isChainEmpty=[false], lastBlockNumber=[2] -peer1.org1.example.com | [3a3 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] -peer1.org1.example.com | [3a4 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes]}, deadMembers={[]} -peer1.org1.example.com | [3a5 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -peer1.org1.example.com | [3a6 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer1.org1.example.com | [3a7 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [3a8 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [3a9 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] -peer1.org1.example.com | [3aa 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -peer1.org1.example.com | [3ab 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -peer1.org1.example.com | [3ac 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [3ad 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [3ae 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org1.example.com | [371 05-31 05:21:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer1.org1.example.com | [3af 05-31 05:21:41.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org2.example.com | [46e 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [46f 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [470 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [471 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [472 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" -peer1.org2.example.com | [473 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [474 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [475 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [476 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [469 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [477 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) -peer1.org2.example.com | [478 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [479 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [47b 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [47c 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [47d 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [47e 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [47f 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [480 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [481 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [482 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [483 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [484 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [46c 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer0.org1.example.com | [46d 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [46e 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [46f 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer0.org1.example.com | [470 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer0.org1.example.com | [471 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [472 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [473 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55318 -peer0.org1.example.com | [474 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42378aab0 -peer0.org1.example.com | [475 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [476 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [477 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [478 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [479 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [47a 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423717c70, header 0xc42378ae10 -peer0.org1.example.com | [47b 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [47c 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][62cb79fd] processing txid: 62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed -peer0.org1.example.com | [47d 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][62cb79fd] Entry chaincode: name:"lscc" -peer0.org1.example.com | [47e 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled -peer0.org1.example.com | [47f 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org1.example.com | [480 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed,syscc=true,proposal=0xc423717c70,canname=lscc:1.2.0) -peer0.org1.example.com | [481 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [482 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [483 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [62cb79fd]Received message TRANSACTION from peer -peer0.org1.example.com | [484 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [62cb79fd] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [485 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [62cb79fd] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [486 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -peer0.org1.example.com | [487 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} -peer0.org1.example.com | [488 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] -peer0.org1.example.com | [489 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [5b7fecf3-1ad3-40f4-9752-165c3b66b320] -peer0.org1.example.com | [48a 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [48b 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [5b7fecf3-1ad3-40f4-9752-165c3b66b320] -peer0.org1.example.com | [48c 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. -peer0.org1.example.com | [48d 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer0.org1.example.com | [48e 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [62cb79fd] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [48f 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [62cb79fd] send state message COMPLETED -peer0.org1.example.com | [490 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [62cb79fd] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [491 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [62cb79fd] notifying Txid:62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed, channelID: -peer0.org1.example.com | [492 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [493 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed] Exit -peer0.org1.example.com | [494 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][62cb79fd] Exit -peer0.org1.example.com | [495 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55318 -peer0.org1.example.com | [496 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [497 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [498 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [499 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [49a 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [47a 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [485 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [486 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [487 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [488 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer0.org2.example.com:7051, PKIid:[209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] isn't responsive: EOF -peer1.org2.example.com | [489 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165]] -peer1.org2.example.com | [48a 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165], Metadata: [] -peer1.org2.example.com | [48b 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] expireDeadMembers.CloseConn.CloseConn -> DEBU Closing connection for , PKIid:[209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [48c 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting -peer1.org2.example.com | [48d 05-31 05:21:41.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.5:45420 -peer1.org2.example.com | [48e 05-31 05:21:41.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:45420 -peer1.org2.example.com | [48f 05-31 05:21:41.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:45420 -peer1.org2.example.com | [490 05-31 05:21:41.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:45420 -peer1.org2.example.com | [491 05-31 05:21:41.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [492 05-31 05:21:41.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [493 05-31 05:21:41.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [494 05-31 05:21:41.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [495 05-31 05:21:41.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [496 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [497 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [498 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [499 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [49a 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [49b 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [49c 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Entering, AliveMessage: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes t: {1527744091840124700 21} -peer1.org2.example.com | [49d 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Exiting -peer1.org2.example.com | [49e 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [49f 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [4a0 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [4a1 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [4a2 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [4a3 05-31 05:21:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [4a4 05-31 05:21:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [4a5 05-31 05:21:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4a6 05-31 05:21:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [4a7 05-31 05:21:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [4a8 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [4a9 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [4aa 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4ab 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [4ac 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [4ad 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [4ae 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [4af 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [4b0 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [4b1 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [4b2 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [4b3 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [4b4 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [4b5 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [4b6 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [4b7 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [4b8 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [4b9 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes -peer1.org2.example.com | [4bb 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes -peer1.org2.example.com | [4bc 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4bd 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [4be 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [4ba 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [4bf 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4c0 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [4c1 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [4c3 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [4c2 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4c4 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [4c5 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: -peer1.org2.example.com | [4c6 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity -peer1.org2.example.com | [4c8 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [4c7 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [4c9 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [4ca 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [4cb 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [4cc 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [4cd 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [4ce 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [4cf 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [4d0 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [4d1 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [243 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [244 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [245 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [246 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [247 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [248 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [249 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [24a 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [24b 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [24c 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [24d 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [24e 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [24f 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [250 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [251 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [252 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [253 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [4d2 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [4d3 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [4d4 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [4d5 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [4d6 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [4d8 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [4d9 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [4d7 05-31 05:21:42.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4da 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [4db 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [4dc 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [4dd 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [4de 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [4df 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [4e0 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [4e1 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [4e2 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [4e3 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [4e4 05-31 05:21:42.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [4e5 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [4e6 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4e7 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org2.example.com | [4e8 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4e9 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [4ea 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org2.example.com | [4eb 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [4ec 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org2.example.com | [4ed 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4ee 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org2.example.com | [4ef 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg -> WARN StateInfo message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes is found invalid: PKIID wasn't found -peer1.org2.example.com | [4f0 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> WARN Message GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes isn't valid -peer1.org2.example.com | [4f1 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4f2 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [4f3 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4f4 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [4f5 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [4f6 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [4f7 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4f8 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org2.example.com | [4f9 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [4fa 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [4fb 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org2.example.com | [4fc 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [4fd 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [4fe 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [4ff 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [500 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [501 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 2 peers -peer1.org2.example.com | [502 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [503 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [504 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [505 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [506 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [508 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer )�4&��i׉��Ÿ&�F�P�)�����.��� message sent from ц�����hIF�zJl`qB���.�������+� -peer1.org2.example.com | [507 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [509 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [50a 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [50b 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [50c 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [50d 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [50e 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -peer1.org1.example.com | [3b0 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org1.example.com | [3b1 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [3b2 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] -peer1.org1.example.com | [3b3 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -peer1.org1.example.com | [3b4 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer1.org1.example.com | [3b5 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [3b6 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:13494080481624671681 tag:EMPTY mem_req:\367\364\330\274\334\257)Q%\232\341\252\002 p\341F\316\302\205\010\304\330\022U\336\004\002\350\004\325\361\246\203\\]\211\213wI\361\356\305\220\023\375" secret_envelope: > > , Envelope: 1090 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [50f 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [510 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [512 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer )�4&��i׉��Ÿ&�F�P�)�����.��� message sent from 3ҟ ���Y��޴�ރCW�;��>���#f�s� -peer1.org2.example.com | [513 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [511 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -peer1.org2.example.com | [514 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [515 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [516 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [517 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [519 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [51a 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [51b 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [51c 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [51d 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [518 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [51e 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [520 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [51f 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [521 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [522 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [523 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [524 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [525 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 486 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [526 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\356\363R\205\330" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > alive: -peer1.org2.example.com | [527 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 486 bytes, Signature: 0 bytes -peer1.org2.example.com | [528 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [529 05-31 05:21:43.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to peer0.org1.example.com:7051 -peer1.org2.example.com | [52a 05-31 05:21:43.81 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [52b 05-31 05:21:43.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [52c 05-31 05:21:43.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [52d 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15005900852538981304, Envelope: 942 bytes, Signature: 0 bytes -peer1.org2.example.com | [52e 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15005900852538981304, Envelope: 942 bytes, Signature: 0 bytes -peer1.org2.example.com | [52f 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 84 68 78 89 119 109 47 116 81 73 53 102 82 68 79 109 111 115 48 103 82 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 90 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 90 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 120 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 90 73 84 86 87 54 99 48 115 120 47 115 121 102 101 112 106 75 72 56 110 71 104 114 68 120 55 56 85 75 101 74 10 74 54 50 103 70 108 107 121 48 65 75 55 53 69 74 74 110 47 81 101 68 71 99 82 71 118 120 108 74 47 111 105 47 88 55 67 70 53 109 113 74 65 101 108 88 116 72 119 54 109 117 51 109 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 101 67 98 122 68 48 99 81 102 43 118 51 10 105 114 48 85 53 53 52 97 103 114 116 75 88 54 50 107 84 120 79 77 52 83 68 98 107 55 69 67 77 48 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 78 106 119 113 110 104 121 10 122 97 56 117 112 88 116 110 111 52 87 47 116 111 118 80 75 122 113 47 83 104 68 82 68 114 101 56 65 67 52 87 83 77 109 48 65 105 66 109 112 67 87 115 81 90 106 78 106 100 76 47 75 78 114 48 109 113 109 106 100 120 98 88 10 102 118 53 89 83 57 47 121 115 100 56 106 121 52 97 43 112 103 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer1.org2.example.com | [530 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [531 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [532 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [533 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [534 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [535 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [536 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [537 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [538 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [539 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [53a 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [53b 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [53c 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [53d 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [53e 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [53f 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [540 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [541 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [542 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:A\213\222\316\273\274\262\271c\002 S\203\367\225\026(\355\022\367\267\2709p'\244D\352\023\232\302>\037\025k\266?\270\344\264\315\002\006" > > -peer1.org2.example.com | [543 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [544 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [545 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [546 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49098 -peer1.org2.example.com | [547 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423591920 -peer1.org2.example.com | [548 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [49b 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [49c 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [49d 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [49e 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [49f 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [4a0 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [4a1 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [4a2 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [4a3 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [4a4 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [4a5 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [4a6 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [4a7 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [4a8 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [4a9 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [4aa 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\021" signature:"0E\002!\000\352\335\214\227\253z\023\213T\350\264\202\277\226\t\263A\370\236\250\215l\335\366\031^\211\212?\202!\311\002 U\210y]\254*\302]\017\357\325j\356 -peer0.org1.example.com | [4ab 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [4ac 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4ad 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [4ae 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [4af 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4b0 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [4b1 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4b2 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [4b3 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4b4 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes -peer0.org1.example.com | [4b5 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4b6 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 3 peers -peer0.org1.example.com | [4b7 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4b8 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4b9 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4ba 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4bb 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 1 items, Envelope: 199 bytes, Signature: 0 bytes -peer0.org1.example.com | [4bc 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes -peer0.org1.example.com | [4be 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4bf 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4c0 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [254 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [255 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [256 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [257 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [258 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [259 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [25a 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [25b 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [25c 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [25d 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [25e 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [25f 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [260 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [261 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [262 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [263 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [264 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org2.example.com | [549 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [54a 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer1.org2.example.com | [54b 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [54c 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [54d 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4234e1ef0, header 0xc423591c80 -peer1.org2.example.com | [54e 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [54f 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][fb81b83d] processing txid: fb81b83dda0d0ea65e09ed84a18866467c0067f8ca21c623f43b2bb7a221fe92 -peer1.org2.example.com | [550 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][fb81b83d] Entry chaincode: name:"lscc" -peer1.org2.example.com | [551 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled -peer1.org2.example.com | [552 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][fb81b83dda0d0ea65e09ed84a18866467c0067f8ca21c623f43b2bb7a221fe92] Entry chaincode: name:"lscc" version: 1.2.0 -peer1.org2.example.com | [553 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=fb81b83dda0d0ea65e09ed84a18866467c0067f8ca21c623f43b2bb7a221fe92,syscc=true,proposal=0xc4234e1ef0,canname=lscc:1.2.0) -peer1.org2.example.com | [554 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org2.example.com | [555 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [556 05-31 05:21:44.42 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb81b83d]Received message TRANSACTION from peer -peer1.org2.example.com | [557 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [fb81b83d] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [558 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [fb81b83d] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org2.example.com | [559 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -peer1.org2.example.com | [55a 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} -peer1.org2.example.com | [55b 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] -peer1.org2.example.com | [55c 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [8b3d2dee-1aa3-4e53-905b-7c0bdb8dad11] -peer1.org2.example.com | [55d 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [55e 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [8b3d2dee-1aa3-4e53-905b-7c0bdb8dad11] -peer1.org2.example.com | [55f 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. -peer1.org2.example.com | [560 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer1.org2.example.com | [561 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [fb81b83d] Transaction completed. Sending COMPLETED -peer1.org2.example.com | [562 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [fb81b83d] send state message COMPLETED -peer1.org2.example.com | [563 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [fb81b83d] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [564 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [fb81b83d] notifying Txid:fb81b83dda0d0ea65e09ed84a18866467c0067f8ca21c623f43b2bb7a221fe92, channelID: -peer1.org2.example.com | [565 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [566 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][fb81b83dda0d0ea65e09ed84a18866467c0067f8ca21c623f43b2bb7a221fe92] Exit -peer1.org2.example.com | [567 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][fb81b83d] Exit -peer1.org2.example.com | [568 05-31 05:21:44.43 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49098 -peer1.org2.example.com | [569 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org2.example.com | [56a 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org2.example.com | [56b 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [56c 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 2 IDENTITY_MSG items to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [56d 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer1.org2.example.com | [56e 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer1.org2.example.com | [56f 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [570 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [571 05-31 05:21:45.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [572 05-31 05:21:45.82 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [573 05-31 05:21:45.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [575 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [574 05-31 05:21:45.82 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [576 05-31 05:21:45.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [577 05-31 05:21:45.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [578 05-31 05:21:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.4:35736 -peer1.org2.example.com | [579 05-31 05:21:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:35736 -peer1.org2.example.com | [57a 05-31 05:21:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:35736 -peer1.org2.example.com | [57b 05-31 05:21:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:35736 -peer1.org2.example.com | [57c 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [57d 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [57e 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [57f 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [580 05-31 05:21:45.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [581 05-31 05:21:45.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [582 05-31 05:21:45.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [583 05-31 05:21:45.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [584 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [585 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [586 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [4c1 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes -peer0.org1.example.com | [4c2 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4bd 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4c3 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4c4 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4c5 05-31 05:21:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4c6 05-31 05:21:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4c7 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [4c8 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4c9 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [4ca 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [4cb 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [4cc 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4cd 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4ce 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4cf 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4d0 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4d1 05-31 05:21:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.4:33218, reason: Timed out waiting for connection message from 172.18.0.4:33218 -peer0.org1.example.com | [4d2 05-31 05:21:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> ERRO Authentication failed: Timed out waiting for connection message from 172.18.0.4:33218 -peer0.org1.example.com | [4d3 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [4d4 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4d5 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4d6 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4d7 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4d8 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org1.example.com | [4d9 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4da 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [4db 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [4dc 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [4dd 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4de 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [4df 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4e0 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [4e1 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [4e2 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [4e3 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [4e4 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [4e5 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [4e6 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [4e7 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [4e8 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [4e9 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [4ea 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [4eb 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [4ec 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\022" signature:"0D\002 N\007\240>2`7\023\305\212A\221\253S9\324\260\0070j\370\327\331\352\220\3778\023Z\032\273\370\002 \036\026\235\013\005\325\034\364\204Q\363w\304\002\025|\273\251i\312\370\203`\364\2509\213\370QX\245S" secret_envelope: > -peer0.org1.example.com | [4ed 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [4ee 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4ef 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [4f0 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [4f1 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [4f2 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [3b7 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:13494080481624671681 tag:EMPTY mem_req:\367\364\330\274\334\257)Q%\232\341\252\002 p\341F\316\302\205\010\304\330\022U\336\004\002\350\004\325\361\246\203\\]\211\213wI\361\356\305\220\023\375" secret_envelope: > > , Envelope: 1090 bytes, Signature: 0 bytes -peer1.org1.example.com | [3b8 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer1.org1.example.com | [3b9 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [3ba 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [3bb 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [3bc 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [3bd 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [3be 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [3bf 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [3c0 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [3c1 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [3c2 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [3c3 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [3c4 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 13494080481624671681, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2162 bytes, Signature: 0 bytes -peer1.org1.example.com | [3c5 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 13494080481624671681, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2162 bytes, Signature: 0 bytes -peer1.org1.example.com | [3c6 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [3c7 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 13494080481624671681, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2162 bytes, Signature: 0 bytes -peer1.org1.example.com | [3c8 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [3c9 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [3ca 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [265 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [266 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [267 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [268 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [269 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [26a 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [26b 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [26c 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [26d 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [26e 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [26f 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [270 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [271 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [272 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [273 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [274 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [275 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [276 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [277 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [278 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [279 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [27a 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [27b 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [27c 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [27d 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [27e 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [27f 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [405 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [406 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [407 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [408 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org2.example.com | [409 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [40a 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [40b 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [40c 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [40d 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [40e 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [40f 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [410 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [411 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [412 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [413 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [414 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [415 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [416 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [417 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [418 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [419 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [41a 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [41b 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [41c 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org2.example.com | [41d 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org2.example.com | [41e 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer0.org2.example.com | [41f 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer0.org2.example.com | [420 05-31 05:21:41.47 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [421 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer0.org2.example.com | [422 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org2.example.com | [423 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:60254 disconnected -peer0.org2.example.com | [424 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer0.org2.example.com | [425 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer0.org2.example.com | [426 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:9200526324220404161 tag:EMPTY mem_req: > , Envelope: 982 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [428 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [429 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [42a 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [42b 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [42d 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [42e 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422ec8180 env 0xc422e7e930 txn 0 -peer0.org2.example.com | [42f 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [430 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [431 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [432 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -peer0.org2.example.com | [433 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [434 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -peer0.org2.example.com | [435 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [436 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [437 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [438 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org2.example.com | [43a 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [43b 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [43c 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [439 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [427 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:9200526324220404161 tag:EMPTY mem_req: > , Envelope: 982 bytes, Signature: 0 bytes -peer0.org2.example.com | [42c 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [4f3 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -orderer.example.com | [280 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [281 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [282 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [283 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [284 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [285 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [286 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [287 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [288 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [289 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [28a 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [28b 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [28c 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [28d 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [28e 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [28f 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [290 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [291 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [292 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [293 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [294 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [295 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer1.org2.example.com | [587 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [588 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [589 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [58a 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [58b 05-31 05:21:46.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [58c 05-31 05:21:46.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [58d 05-31 05:21:46.39 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [58e 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [58f 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [590 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [591 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [592 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [593 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [43d 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [43e 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org1.example.com | [4f4 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [4f5 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [4f6 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4f7 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [4f8 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4f9 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [4fa 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [4fb 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer0.org1.example.com | [4fc 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer0.org1.example.com | [4fd 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [4fe 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer0.org1.example.com | [4ff 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [500 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer0.org1.example.com | [501 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer0.org1.example.com | [502 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [503 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [504 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [505 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes -peer0.org1.example.com | [506 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes -peer0.org1.example.com | [507 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [508 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -peer0.org1.example.com | [509 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -peer0.org1.example.com | [50a 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [50b 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [50c 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [50d 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [50e 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [50f 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [510 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [511 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [512 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [513 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [514 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [515 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [516 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [518 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [517 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [51a 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [519 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [51b 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [51c 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [51d 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [51e 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [51f 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [520 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [521 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [522 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [524 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 486 bytes, Signature: 0 bytes -peer0.org1.example.com | [523 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [525 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [526 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [527 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [529 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 486 bytes, Signature: 0 bytes -peer0.org1.example.com | [528 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [52a 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [52b 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [52c 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [52d 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [52e 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [52f 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 19 but got ts: inc_num:1527744091508552400 seq_num:18 -peer0.org1.example.com | [530 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [531 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3cb 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [3cc 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [3cd 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" -peer1.org1.example.com | [3ce 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" -peer1.org1.example.com | [3cf 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [3d0 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [3d1 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [3d2 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [3d3 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [3d4 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org1.example.com | [3d5 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [532 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [533 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [534 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [535 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [536 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [537 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [538 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [3d6 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3d7 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [3d8 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3d9 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [3da 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [3db 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [3dc 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [3dd 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [3de 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [3df 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [3e0 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [3e1 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [3e2 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [3e3 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [3e4 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [3e5 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [3e6 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [3e7 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [3e8 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [3e9 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [3ea 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [3eb 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [296 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [297 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [298 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [299 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [29a 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [29b 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [29c 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [29d 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [29e 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [29f 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [2a0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [2a1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [2a2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [2a3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [2a4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [2a5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [2a6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [2a7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [2a8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [594 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]}, deadMembers={[]} -peer1.org2.example.com | [595 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [596 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer1.org2.example.com | [597 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [598 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [599 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [59a 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [59b 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [59c 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [59d 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [59e 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [59f 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5a0 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [5a1 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5a2 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5a3 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [5a4 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5a5 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [5a6 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5a7 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5a8 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5a9 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [5aa 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [5ab 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [3ec 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3ed 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [3ee 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [3ef 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3f0 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3f1 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [3f2 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [3f3 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [3f4 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [3f5 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [3f6 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [3f7 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [3f8 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [3f9 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [3fa 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3fb 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [3fc 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3fd 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [3fe 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [3ff 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [400 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [401 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [402 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [403 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [404 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [405 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [406 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [407 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [408 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [409 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [40a 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [40b 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [40c 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [40d 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [40e 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55354 -peer1.org1.example.com | [40f 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42314d9b0 -peer1.org1.example.com | [410 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [411 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [412 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org1.example.com | [413 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [414 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [415 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4231be870, header 0xc42314dd10 -peer1.org1.example.com | [416 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org1.example.com | [417 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][5bfa4769] processing txid: 5bfa47697044d44432a526244bc50560c2220b41942e12459f6ecc8bc6d67ae9 -peer1.org1.example.com | [418 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][5bfa4769] Entry chaincode: name:"lscc" -peer1.org1.example.com | [419 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled -peer1.org1.example.com | [41a 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][5bfa47697044d44432a526244bc50560c2220b41942e12459f6ecc8bc6d67ae9] Entry chaincode: name:"lscc" version: 1.2.0 -peer1.org1.example.com | [41b 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=5bfa47697044d44432a526244bc50560c2220b41942e12459f6ecc8bc6d67ae9,syscc=true,proposal=0xc4231be870,canname=lscc:1.2.0) -peer1.org1.example.com | [41c 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org1.example.com | [41d 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [41e 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5bfa4769]Received message TRANSACTION from peer -peer1.org1.example.com | [41f 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5bfa4769] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [420 05-31 05:21:43.01 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5bfa4769] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org1.example.com | [421 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -peer1.org1.example.com | [422 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} -orderer.example.com | [2a9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [2aa 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [2ab 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [2ac 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [2ad 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [2ae 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [2af 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [2b0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [2b1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [2b2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [2b3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [2b4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [2b5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [2b6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [2b7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [2b8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [2b9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [2ba 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [2bb 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [2bc 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [2bd 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -orderer.example.com | [2be 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.Supported -> DEBU Channel capability V1_1 is supported and is enabled -orderer.example.com | [2bf 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:41272 -orderer.example.com | [2c0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [2c1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [2c2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [2c3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [2c4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [2c5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [2c6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [2c7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [2c8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [2c9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [2ca 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [2cb 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [2cc 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [2cd 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [2ce 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [2cf 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [2d0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [2d1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [2d2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [2d3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [2d4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer0.org1.example.com | [539 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [53a 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [53b 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [53c 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [53e 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [53d 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 486 bytes, Signature: 0 bytes -peer0.org1.example.com | [53f 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [540 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [541 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 24 but got ts: inc_num:1527744091840124700 seq_num:22 -peer0.org1.example.com | [542 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [543 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [544 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [545 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [546 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [547 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [548 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [549 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [54a 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [54b 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [54c 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [54d 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [54e 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [54f 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [550 05-31 05:21:43.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -peer0.org1.example.com | [551 05-31 05:21:43.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -peer0.org1.example.com | [552 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -peer0.org1.example.com | [553 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [554 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [555 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [556 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [557 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [558 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [559 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [55a 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [55b 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [55c 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [55d 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [55e 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [55f 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [560 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [562 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [561 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [564 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [565 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [563 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [566 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [567 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\207\021~\006x.\270T" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\024" signature:"0E\002!\000\236.\240\300\272b\245\003\251\233\357E\032\252\276\302j\0021\365H\344P\357\223\017\242\241\275\246n\025\002 \023\211\214y\233+'+\\\242\255\030:\244f\003*JaS\314\2618\262U\030\271\217\314I\204\375" > -peer1.org2.example.com | [5ac 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [5ad 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [5ae 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [5af 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [5b0 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [5b1 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [5b2 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [5b3 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5b4 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [5b5 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5b6 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [5b7 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5b8 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [5b9 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5ba 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5bb 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [5bc 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5bd 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [5be 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5bf 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5c0 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [5c1 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [5c2 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [5c3 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [5c4 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [5c5 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [5c6 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [5c7 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [5c8 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [5c9 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [5ca 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [5cb 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [5cc 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [5ce 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\313\367\036\242\217\342\301\255q_A\213b\307\002 \030\201\247\374\t\024\007\022\2638\235[\207*\\\374t\222\375\314\305\304C'V\300!D]O?\235" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [5cf 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [5d0 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [5d1 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [5d2 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [5d3 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [5d4 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [5d5 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [5d6 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [5cd 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [5d7 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [5d8 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5d9 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [2d5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [2d6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [2d7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [2d8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [2d9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [2da 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [2db 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [2dc 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [2dd 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -orderer.example.com | [2de 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [2df 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [2e0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [2e1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [2e2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [2e3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -peer1.org2.example.com | [5da 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [5db 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5dc 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [5dd 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [5de 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5df 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [5e0 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5e1 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [5e2 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [5e3 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [5e4 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [5e5 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [5e6 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [5e7 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [5e8 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org2.example.com | [5e9 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [5ea 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [5eb 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [5ec 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [5ed 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [5ee 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [5ef 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [5f1 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [5f0 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org2.example.com | [5f2 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5f3 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [5f4 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 26 but got ts: inc_num:1527744091840124700 seq_num:25 -peer1.org2.example.com | [5f5 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [5f6 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5f7 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [5f8 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5f9 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [5fa 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [5fb 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [5fc 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [5fd 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [5ff 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [600 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [5fe 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [601 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [602 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [603 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [604 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [606 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [605 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [607 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [608 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [43f 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org2.example.com | [440 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [441 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [442 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [444 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [445 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [446 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [447 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [448 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [449 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -peer0.org2.example.com | [443 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [44a 05-31 05:21:41.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [44b 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [423 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] -peer1.org1.example.com | [424 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [9eb8cd30-31f8-4501-a014-9f7cfc56dcda] -peer1.org1.example.com | [425 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [426 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [9eb8cd30-31f8-4501-a014-9f7cfc56dcda] -peer1.org1.example.com | [427 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. -peer1.org1.example.com | [428 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer1.org1.example.com | [429 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5bfa4769] Transaction completed. Sending COMPLETED -peer1.org1.example.com | [42a 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [5bfa4769] send state message COMPLETED -peer1.org1.example.com | [42b 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5bfa4769] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [42c 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [5bfa4769] notifying Txid:5bfa47697044d44432a526244bc50560c2220b41942e12459f6ecc8bc6d67ae9, channelID: -peer1.org1.example.com | [42d 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [42e 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][5bfa47697044d44432a526244bc50560c2220b41942e12459f6ecc8bc6d67ae9] Exit -peer1.org1.example.com | [42f 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][5bfa4769] Exit -peer1.org1.example.com | [430 05-31 05:21:43.02 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55354 -peer1.org1.example.com | [431 05-31 05:21:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 2 peers -peer1.org1.example.com | [432 05-31 05:21:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [434 05-31 05:21:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [433 05-31 05:21:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [435 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [436 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [438 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [437 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [439 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [43a 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [43b 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [43c 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer1.org1.example.com | [43d 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer 6G����wl����s��m�6��4:�����u�� message sent from 3ҟ ���Y��޴�ރCW�;��>���#f�s� -peer1.org1.example.com | [43e 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [43f 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer1.org1.example.com | [440 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/channel] handleMessage.HandleMessage.handleStateInfSnapshot -> DEBU Channel businesschannel : Couldn't find org identity of peer 6G����wl����s��m�6��4:�����u�� message sent from ц�����hIF�zJl`qB���.�������+� -peer1.org1.example.com | [441 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [442 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [443 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [444 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [445 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [446 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers -peer1.org1.example.com | [447 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [448 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [449 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [44a 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [44b 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [44c 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [44d 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [44e 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [44f 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [450 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [451 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [452 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [453 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [454 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [455 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [456 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [457 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [458 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [459 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org1.example.com | [45a 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org1.example.com | [45b 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org1.example.com | [45c 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [45d 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer0.org2.example.com | [44c 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [45f 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer1.org1.example.com | [460 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer1.org1.example.com | [461 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [45e 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [462 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [463 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [464 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [465 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [466 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [467 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [468 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [469 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [46a 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [46b 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [46c 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: -peer1.org1.example.com | [46d 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity -peer1.org1.example.com | [46e 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [46f 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [470 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [471 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [472 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [474 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [475 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [476 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [473 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [477 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [478 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [479 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [47a 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [47b 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [47c 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [47d 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [47e 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [2e4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [2e5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [2e6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [2e7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [2e8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [2e9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [2ea 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [2eb 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [2ec 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [2ed 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [2ee 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [2ef 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -peer0.org2.example.com | [44d 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [44e 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [44f 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [450 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [451 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [452 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] -peer0.org2.example.com | [453 05-31 05:21:41.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer0.org2.example.com | [454 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [455 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [456 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [457 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [458 05-31 05:21:41.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [459 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x1c, 0x89, 0x5b, 0x8a, 0xa8, 0xc6, 0x73, 0x3c, 0xac, 0x1f, 0xe1, 0x55, 0x12, 0x70, 0xf, 0x84, 0xef, 0xfb, 0xa4, 0xcc, 0xbe, 0x67, 0x8, 0xce, 0x57, 0xdf, 0x28, 0x5b, 0xd, 0x99, 0x90, 0xd4} txOffsets= -peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12152 -peer0.org2.example.com | ] -peer0.org2.example.com | [45a 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx ID: [] to index -peer0.org2.example.com | [45b 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [568 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [569 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [56a 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer0.org1.example.com | [56b 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer0.org1.example.com | [56c 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [56d 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [56e 05-31 05:21:44.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to peer1.org2.example.com:7051 -peer0.org1.example.com | [56f 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [570 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to peer1.org1.example.com:7051 -peer0.org1.example.com | [571 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [573 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -peer0.org1.example.com | [572 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes -peer0.org1.example.com | [575 05-31 05:21:44.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [574 05-31 05:21:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [576 05-31 05:21:44.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 15808184565854768567, Envelope: 1861 bytes, Signature: 0 bytes -peer0.org1.example.com | [577 05-31 05:21:44.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 15808184565854768567, Envelope: 1861 bytes, Signature: 0 bytes -peer0.org1.example.com | [578 05-31 05:21:44.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 15808184565854768567, Envelope: 1861 bytes, Signature: 0 bytes -peer0.org1.example.com | [579 05-31 05:21:44.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 146 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 68 67 67 65 98 43 103 65 119 73 66 65 103 73 81 68 55 78 84 87 68 110 51 118 56 117 51 98 83 114 117 51 65 107 65 57 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 83 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 120 86 104 55 77 65 117 65 106 86 121 98 110 114 88 100 97 74 75 81 75 56 75 81 108 49 54 108 113 56 107 70 10 52 67 89 67 83 53 53 104 114 114 77 106 122 121 120 99 117 108 98 52 84 88 118 77 55 75 106 78 81 71 112 97 120 115 50 78 87 85 110 90 114 111 81 78 120 47 107 57 78 79 99 78 118 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 82 119 65 119 82 65 73 103 82 49 121 68 68 120 77 115 10 83 103 48 49 68 73 75 97 108 114 69 102 98 76 112 67 70 99 72 66 83 121 70 113 88 86 49 57 84 110 90 109 71 83 111 67 73 71 83 120 65 75 67 98 106 108 53 114 72 101 106 115 86 83 49 101 117 55 104 53 53 50 98 89 10 50 69 100 70 69 122 87 103 111 82 85 72 113 119 105 57 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer0.org1.example.com | [57a 05-31 05:21:44.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 88 112 117 99 49 88 68 101 115 51 113 78 103 118 98 55 115 105 73 47 73 68 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 53 51 108 56 83 103 113 56 118 110 48 112 72 122 108 103 103 47 85 112 109 85 74 98 48 107 106 56 87 71 68 106 10 83 80 86 114 57 109 99 81 117 69 109 101 99 57 65 53 111 55 90 109 113 53 121 47 112 98 85 52 100 51 84 48 80 52 111 69 80 78 52 65 104 107 54 122 100 80 47 75 108 119 43 119 80 54 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 75 50 72 97 75 52 108 10 88 81 105 117 49 88 120 103 73 106 84 53 56 99 116 111 90 111 84 67 116 53 111 104 74 99 121 113 83 55 78 115 71 114 83 117 65 105 65 53 86 119 47 84 121 75 110 107 80 76 86 115 50 66 49 111 49 74 102 70 105 71 43 83 10 81 104 56 48 97 84 110 65 101 103 83 84 83 113 109 65 49 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer0.org1.example.com | [57b 05-31 05:21:44.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [57c 05-31 05:21:44.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 5403497654771159045, Envelope: 940 bytes, Signature: 0 bytes -peer0.org1.example.com | [57d 05-31 05:21:44.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 5403497654771159045, Envelope: 940 bytes, Signature: 0 bytes -peer0.org1.example.com | [57e 05-31 05:21:44.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 106 67 67 65 99 67 103 65 119 73 66 65 103 73 82 65 79 51 85 114 78 82 115 80 53 106 75 77 75 47 120 84 74 43 54 106 108 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 103 119 77 84 77 119 77 68 99 48 77 68 73 50 87 104 99 78 77 106 103 119 77 84 73 52 77 68 99 48 77 68 73 50 10 87 106 66 98 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 102 77 66 48 71 65 49 85 69 65 120 77 87 99 71 86 108 99 106 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 10 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 78 73 116 103 106 85 116 105 107 55 88 99 114 47 84 115 56 118 114 108 70 85 82 85 67 78 111 83 55 114 99 10 50 72 118 107 106 67 53 100 72 56 69 55 70 88 97 117 70 119 76 101 81 106 65 82 65 112 80 56 85 70 52 79 112 116 70 82 87 120 120 70 104 48 66 71 109 76 72 101 86 43 113 57 111 120 54 106 84 84 66 76 77 65 52 71 10 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 72 103 68 65 77 66 103 78 86 72 82 77 66 65 102 56 69 65 106 65 65 77 67 115 71 65 49 85 100 73 119 81 107 77 67 75 65 73 72 103 109 56 119 57 72 69 72 47 114 10 57 52 113 57 70 79 101 101 71 111 75 55 83 108 43 116 112 69 56 84 106 79 69 103 50 53 79 120 65 106 78 72 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 100 50 81 72 76 10 112 75 80 79 118 116 87 106 88 69 66 111 55 104 72 51 108 66 117 51 120 97 76 78 66 107 75 112 52 66 115 72 56 97 115 86 57 119 73 103 85 110 82 89 43 47 53 70 114 66 49 52 84 83 49 43 67 56 79 55 115 113 49 120 10 70 105 47 75 52 86 85 107 99 114 116 50 47 74 72 76 101 50 77 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer0.org1.example.com | [57f 05-31 05:21:44.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [580 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55374 -peer0.org1.example.com | [581 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42210f740 -peer0.org1.example.com | [582 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [583 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [584 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org2.example.com | [609 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [60a 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [60b 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [60c 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [60d 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [60e 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [60f 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [610 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [611 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [612 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [613 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [614 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [615 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [616 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [617 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [618 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [619 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [61a 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [61b 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [61c 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [61d 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [61e 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [61f 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [620 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [621 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [622 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [623 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [624 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [625 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [626 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [627 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [628 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [629 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [62a 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [62b 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [62c 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [62d 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [62e 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [62f 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [630 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [631 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [632 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [633 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [634 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [635 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [636 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [637 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [480 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [47f 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [481 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [482 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [483 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [484 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [485 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [486 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [487 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [488 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [489 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [48a 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [48b 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [48c 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [48d 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [48e 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [48f 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [490 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [491 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [492 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [493 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [494 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [495 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [45c 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:60278 -peer0.org2.example.com | [45d 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:7051 -peer0.org2.example.com | [45e 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40097], isChainEmpty=[false], lastBlockNumber=[2] -peer0.org2.example.com | [45f 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] -peer0.org2.example.com | [460 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] -peer0.org2.example.com | [461 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -peer0.org2.example.com | [462 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -peer0.org2.example.com | [463 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [464 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [465 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org2.example.com | [466 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:60278 -peer0.org2.example.com | [467 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:60278 -peer0.org2.example.com | [468 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:60278 -peer0.org2.example.com | [469 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [46a 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] -peer0.org2.example.com | [46b 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -peer0.org2.example.com | [470 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -peer0.org2.example.com | [471 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [46c 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60278 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [585 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [586 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [587 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42218b860, header 0xc42210faa0 -peer0.org1.example.com | [588 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [589 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][82a11985] processing txid: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 -peer0.org1.example.com | [58a 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -peer0.org1.example.com | [58b 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [58c 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -peer0.org1.example.com | [58d 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][82a11985] Entry chaincode: name:"lscc" -peer0.org1.example.com | [58e 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled -peer0.org1.example.com | [58f 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org1.example.com | [590 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031,syscc=true,proposal=0xc42218b860,canname=lscc:1.2.0) -peer0.org1.example.com | [591 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [592 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [593 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a11985]Received message TRANSACTION from peer -peer0.org1.example.com | [594 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82a11985] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [595 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [82a11985] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [596 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [82a11985] Sending GET_STATE -peer0.org1.example.com | [597 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [598 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] handling GET_STATE from chaincode -peer0.org1.example.com | [599 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [82a11985] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [59a 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [59b 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [82a11985] No state associated with key: +peer0.org2.example.com | [447 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [54e 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [4be 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [353 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +peer0.org1.example.com | [457 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx ID: [] to index +peer0.org2.example.com | [448 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4bf 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [54f 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [354 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [458 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [449 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [4c0 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [550 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [355 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...C41AD0F97C63411D4063E78ED819955B +peer0.org1.example.com | [459 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40098], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | [44a 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [4c1 06-12 02:14:22.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [551 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [356 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 380545BFF6336C0B001E35594560386B22876E29E4357AB849FAA5E6198C5EA7 +peer0.org1.example.com | [45a 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] +peer0.org2.example.com | [44b 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [4c2 06-12 02:14:22.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [552 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [357 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x7d, 0x53, 0xa7, 0x6, 0xee, 0x57, 0xd3, 0x5a, 0xf3, 0xea, 0x28, 0x42, 0xef, 0x79, 0x1e, 0x48, 0x16, 0x69, 0x46, 0xdd, 0x5c, 0x35, 0xf5, 0x1e, 0x78, 0xd7, 0x4f, 0xda, 0x68, 0x25, 0x81, 0xad} txOffsets= +peer0.org1.example.com | [45b 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer0.org2.example.com | [44c 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [4c3 06-12 02:14:22.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [553 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | txId= locPointer=offset=70, bytesLength=13000 +peer0.org1.example.com | [45c 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org2.example.com | [44d 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [4c4 06-12 02:14:22.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [554 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +orderer.example.com | ] +peer0.org1.example.com | [45d 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [44e 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [4c5 06-12 02:14:22.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [555 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [358 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24013], isChainEmpty=[false], lastBlockNumber=[1] +peer0.org1.example.com | [45e 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] +peer0.org2.example.com | [44f 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4c6 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [556 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > alive: alive: +orderer.example.com | [359 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 +peer0.org1.example.com | [45f 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +peer0.org2.example.com | [450 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [4c7 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [557 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org1.example.com | [460 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +orderer.example.com | [35a 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org2.example.com | [451 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [4c8 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [558 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [461 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +orderer.example.com | [35b 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [452 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [4c9 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [559 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [462 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +orderer.example.com | [35c 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org2.example.com | [453 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:52938 +peer1.org2.example.com | [4ca 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [55a 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [463 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [35d 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [454 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [4cb 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [55b 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [464 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +orderer.example.com | [35e 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org2.example.com | [456 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org2.example.com | [4cc 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [55c 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [465 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | [35f 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [457 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [4cd 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [55d 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [466 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [3] +orderer.example.com | [360 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [458 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [4ce 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [55e 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [468 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [459 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [4cf 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [55f 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [469 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [3] +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [45a 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [4d0 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [560 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [467 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [45b 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [4d1 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [46a 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer0.org2.example.com | [45c 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [45d 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [4d2 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [46b 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer0.org2.example.com | [437 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [46c 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer1.org2.example.com | [4d3 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [561 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:45956 +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [45e 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [46d 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [4d4 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [562 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422be38f0 +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | [45f 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [46e 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [4d5 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org1.example.com:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [563 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +peer0.org2.example.com | [460 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +peer0.org1.example.com | [46f 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [4d6 06-12 02:14:23.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.6:7051 +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +peer1.org1.example.com | [564 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [461 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [470 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [4d7 06-12 02:14:23.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:7051 +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer1.org1.example.com | [565 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org1.example.com | [566 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [462 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [471 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +peer1.org1.example.com | [567 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [463 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [4d8 06-12 02:14:23.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 +peer0.org1.example.com | [472 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +peer1.org1.example.com | [568 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4237edb30, header 0xc422be3c50 +peer1.org2.example.com | [4d9 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org2.example.com | [464 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [473 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | 3BDFnYuSFYhOCexVkA== +peer1.org1.example.com | [569 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org1.example.com | [56a 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][bc30602f] processing txid: bc30602f2ce2c078d7c20efa4d4037bdead745767cabfa352c1e56dce6905f36 +peer1.org1.example.com | [56b 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][bc30602f] Entry chaincode: name:"lscc" +peer0.org2.example.com | [465 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [4da 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [56c 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled +peer1.org1.example.com | [56d 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][bc30602f2ce2c078d7c20efa4d4037bdead745767cabfa352c1e56dce6905f36] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org1.example.com | [474 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [4db 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.4:41508 +peer1.org1.example.com | [56e 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=bc30602f2ce2c078d7c20efa4d4037bdead745767cabfa352c1e56dce6905f36,syscc=true,proposal=0xc4237edb30,canname=lscc:1.2.0) +peer0.org2.example.com | [466 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [467 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 18 but got ts: inc_num:1528769653227426900 seq_num:17 +peer0.org1.example.com | [475 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [4dc 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:41508 +peer1.org1.example.com | [56f 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org2.example.com | [468 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [4dd 06-12 02:14:23.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:41508 +orderer.example.com | [361 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150258 gate 1528769655694736700 evaluation starts +peer1.org1.example.com | [570 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [46a 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [476 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [4de 06-12 02:14:23.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:41508 +orderer.example.com | [362 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150258 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [571 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc30602f]Received message TRANSACTION from peer +peer0.org2.example.com | [46b 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [477 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 13978198190710968351, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 1305 bytes, Signature: 0 bytes +peer1.org2.example.com | [4df 06-12 02:14:23.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [363 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150258 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [572 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bc30602f] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [478 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 13978198190710968351, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 1305 bytes, Signature: 0 bytes +orderer.example.com | [364 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150258 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +peer1.org1.example.com | [573 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bc30602f] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org2.example.com | [46c 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [479 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [4e0 06-12 02:14:23.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [4e1 06-12 02:14:23.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [574 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +peer0.org2.example.com | [46d 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [47a 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 13978198190710968351, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 1305 bytes, Signature: 0 bytes +orderer.example.com | [365 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150258 principal evaluation fails +peer1.org2.example.com | [4e2 06-12 02:14:23.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [575 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} +peer0.org2.example.com | [46e 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [47b 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [366 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150258 gate 1528769655694736700 evaluation fails +peer1.org2.example.com | [4e3 06-12 02:14:23.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [576 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] +peer0.org2.example.com | [46f 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [47c 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: +orderer.example.com | [367 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [4e4 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [577 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [0c6e0cfe-1014-4c89-b7d0-d7b8daebc2ce] +peer0.org2.example.com | [470 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [47d 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity +orderer.example.com | [368 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [4e5 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [578 06-12 02:14:24.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [471 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [47e 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [369 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +peer1.org2.example.com | [4e6 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [579 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [0c6e0cfe-1014-4c89-b7d0-d7b8daebc2ce] +peer0.org2.example.com | [472 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [47f 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [4e7 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [36a 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +peer1.org1.example.com | [57a 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. +peer0.org2.example.com | [473 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [480 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [4e8 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [36b 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [57b 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer0.org2.example.com | [474 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [481 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [4e9 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [36c 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org1.example.com | [57c 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bc30602f] Transaction completed. Sending COMPLETED +peer0.org2.example.com | [475 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [482 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [4ea 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [4eb 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [57d 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [bc30602f] send state message COMPLETED +peer0.org2.example.com | [476 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [483 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +peer1.org2.example.com | [4ec 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +orderer.example.com | [36d 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [57e 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bc30602f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [477 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [484 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes]}, deadMembers={[]} +peer1.org2.example.com | [4ed 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +orderer.example.com | [36e 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org1.example.com | [57f 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [bc30602f] notifying Txid:bc30602f2ce2c078d7c20efa4d4037bdead745767cabfa352c1e56dce6905f36, channelID: +peer0.org2.example.com | [478 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [4ee 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [485 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +orderer.example.com | [36f 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769655696078300 evaluation starts +peer1.org1.example.com | [580 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [479 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [4ef 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer0.org1.example.com | [486 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer0.org1.example.com | [487 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [488 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [489 06-12 02:14:22.41 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:35390 +peer0.org1.example.com | [48a 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35390 +peer0.org1.example.com | [48b 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35390 +orderer.example.com | [370 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [581 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][bc30602f2ce2c078d7c20efa4d4037bdead745767cabfa352c1e56dce6905f36] Exit +peer0.org2.example.com | [47a 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [4f0 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer0.org1.example.com | [48c 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35390 +orderer.example.com | [371 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [582 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][bc30602f] Exit +peer0.org2.example.com | [47b 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [4f1 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer0.org1.example.com | [48d 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org1.example.com | [48e 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35390 disconnected +peer0.org1.example.com | [48f 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer1.org1.example.com | [583 06-12 02:14:24.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:45956 +peer1.org2.example.com | [4f2 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [372 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +peer1.org1.example.com | [584 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [47c 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [4f3 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [373 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [490 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [585 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [47d 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [4f4 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [374 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 principal matched by identity 0 +peer0.org1.example.com | [491 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [586 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +peer0.org2.example.com | [47e 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [4f6 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [375 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 3e 7b e0 37 9c 3f 09 f5 81 15 9a cc 15 56 5e 1a |>{.7.?.......V^.| +peer0.org1.example.com | [492 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [587 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [47f 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [4f7 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | 00000010 46 86 fb 85 3a 5c 68 4d 59 4a 48 23 16 71 23 78 |F...:\hMYJH#.q#x| +peer0.org1.example.com | [493 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [588 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer0.org2.example.com | [480 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [4f5 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [376 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6b 4a ed 07 3f 64 4e 82 8c d0 08 8c |0D. kJ..?dN.....| +peer1.org1.example.com | [589 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer0.org2.example.com | [469 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [4f8 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [494 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000010 13 44 e0 5f a9 f1 3b 47 8e f4 8e 17 0f 70 d9 4c |.D._..;G.....p.L| +peer1.org1.example.com | [58a 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [482 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [495 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [4f9 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +orderer.example.com | 00000020 58 03 f7 78 02 20 69 b6 ee 17 31 c3 3a 52 41 cf |X..x. i...1.:RA.| +peer1.org1.example.com | [58b 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 2 IDENTITY_MSG items to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [496 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [483 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [4fa 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000030 e3 74 86 06 3b b6 e4 ca 34 cf 15 25 65 10 f7 a3 |.t..;...4..%e...| +peer1.org1.example.com | [58c 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [497 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [4fb 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +orderer.example.com | 00000040 d3 d5 25 cb 3b 36 |..%.;6| +peer1.org1.example.com | [58d 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [498 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [484 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [4fc 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [377 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [58e 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org1.example.com | [499 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [485 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [4fd 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [378 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769655696078300 evaluation succeeds +peer1.org1.example.com | [58f 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [49b 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [486 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [4fe 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [379 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [590 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [49a 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:35394 +peer0.org2.example.com | [487 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [4ff 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [37a 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [591 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [49c 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [488 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [500 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [37b 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +peer0.org1.example.com | [49d 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [489 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [501 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [37c 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org1.example.com | [592 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [49e 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [48a 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:52866 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:13941726900962254619 tag:EMPTY mem_req:\357\250}\311\033;<\014]\356\300t\002 o\350\335\256Z\212m\313\317\252\373\332\255\263\247\035`\266;\261\017\361\211\322\0102/\305]\312\234\314" > > > , Envelope: 282 bytes, Signature: 0 bytes +peer1.org2.example.com | [502 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [37d 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org1.example.com | [593 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [49f 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35394 +peer0.org2.example.com | [48b 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [504 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +orderer.example.com | [37e 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org1.example.com | [594 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [4a0 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35394 +peer0.org2.example.com | [48c 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:13941726900962254619 tag:EMPTY mem_req:\357\250}\311\033;<\014]\356\300t\002 o\350\335\256Z\212m\313\317\252\373\332\255\263\247\035`\266;\261\017\361\211\322\0102/\305]\312\234\314" > > > , Envelope: 282 bytes, Signature: 0 bytes +peer1.org2.example.com | [503 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [37f 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420519400) start: > stop: > from 172.18.0.7:35708 +peer1.org1.example.com | [595 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [4a1 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35394 +peer0.org2.example.com | [48d 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [505 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [380 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +peer1.org1.example.com | [596 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [4a2 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:12028204755272296861 tag:EMPTY mem_req:\213\251\257^\277\030^\347l\222/i\255*3\255j" > > > , Envelope: 1088 bytes, Signature: 0 bytes +peer0.org2.example.com | [48e 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [506 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [381 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +peer1.org1.example.com | [597 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [4a3 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [48f 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [507 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +orderer.example.com | [382 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12121], Going to peek [8] bytes +peer1.org1.example.com | [598 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [4a4 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:12028204755272296861 tag:EMPTY mem_req:\213\251\257^\277\030^\347l\222/i\255*3\255j" > > > , Envelope: 1088 bytes, Signature: 0 bytes +peer0.org2.example.com | [490 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [508 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [383 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org1.example.com | [599 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [4a5 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [491 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [509 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [384 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +peer1.org1.example.com | [59a 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [4a6 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [50a 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [50b 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [50c 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [385 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420519400) for 172.18.0.7:35708 +peer0.org2.example.com | [492 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [50d 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [386 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35708 for (0xc420519400) +peer1.org1.example.com | [59b 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [4a7 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +peer0.org2.example.com | [493 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [50e 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [387 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35708 +orderer.example.com | [388 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35708 +orderer.example.com | [389 06-12 02:14:15.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.7:35708, hangup +orderer.example.com | [38a 06-12 02:14:15.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [38b 06-12 02:14:15.70 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35708: read: connection reset by peer +orderer.example.com | [38c 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org2.example.com | [494 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [495 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [50f 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [4a8 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +peer0.org1.example.com | [4a9 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +orderer.example.com | [38d 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35734 +orderer.example.com | [38e 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35734 +orderer.example.com | [38f 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [390 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35736 +orderer.example.com | [391 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:35736 +orderer.example.com | [392 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +peer1.org1.example.com | [59c 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [4aa 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [455 06-12 02:14:22.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:52938 +orderer.example.com | [393 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer0.org1.example.com | [4ab 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [59d 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [496 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | [394 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [510 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [4ac 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [59e 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [481 06-12 02:14:22.80 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [395 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +peer1.org2.example.com | [511 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [4ad 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [59f 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [497 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [396 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [512 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [5a0 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [4ae 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [498 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [397 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +peer1.org2.example.com | [513 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 22 but got ts: inc_num:1528769652429776900 seq_num:11 +peer1.org2.example.com | [514 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [4b0 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [499 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [398 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150398 gate 1528769658542031800 evaluation starts +peer1.org2.example.com | [515 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [5a1 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [4af 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 12028204755272296861, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1355 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [49a 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [399 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150398 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [516 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [5a2 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [4b1 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\213\251\257^\277\030^\347l\222/i\255*3\255j" > > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\020" signature:"0E\002!\000\235\2472\314c\020\236\275\241\217J\262\3543&vz+\reK\371L\341W4\315\031\344\\\240}\002 V\210w\361/\372\214\000\320\330F@D\331Q\241/\242\r\332y\027\242\326\326*\0235:{v\311" secret_envelope: > +peer0.org1.example.com | [4b3 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [39a 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150398 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [517 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastDeadTS: 1528769652088169500, 17 but got ts: inc_num:1528769652088169500 seq_num:16 +peer1.org1.example.com | [5a3 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [4b2 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 12028204755272296861, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1355 bytes, Signature: 0 bytes +peer0.org2.example.com | [49b 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [39b 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150398 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +peer1.org2.example.com | [518 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5a4 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [4b4 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [49c 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [39c 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150398 principal evaluation fails +peer1.org2.example.com | [519 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [5a5 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [4b5 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [49d 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [39d 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150398 gate 1528769658542031800 evaluation fails +peer1.org2.example.com | [51a 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [5a6 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [4b6 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [49e 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [39e 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [51b 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [5a7 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [4b7 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [49f 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [39f 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [51c 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [5a8 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [4b8 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [4a0 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [3a0 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +peer1.org2.example.com | [51d 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [5a9 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [4b9 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [4a1 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [3a1 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +peer1.org2.example.com | [51e 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [5aa 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [4ba 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [4a2 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [3a2 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +peer1.org2.example.com | [51f 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [5ab 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [4bb 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:59720 +peer0.org2.example.com | [4a3 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [3a3 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +peer1.org2.example.com | [520 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5ac 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [4a4 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [4bc 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59720 +orderer.example.com | [3a4 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [521 06-12 02:14:23.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [5ae 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [4a5 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [4bd 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59720 +orderer.example.com | [3a5 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +peer1.org2.example.com | [522 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [5ad 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [4a6 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [4be 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59720 +orderer.example.com | [3a6 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503a0 gate 1528769658545914300 evaluation starts +peer1.org2.example.com | [523 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [5af 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org2.example.com | [4a7 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [4bf 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +orderer.example.com | [3a7 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503a0 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [524 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [5b1 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [4a8 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [4c0 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59720 disconnected +orderer.example.com | [3a8 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [4a9 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [3a9 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503a0 principal matched by identity 0 +peer1.org2.example.com | [525 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5b0 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [4aa 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [4c1 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +orderer.example.com | [3aa 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ee 2d 8f 70 76 96 cc 02 35 88 3a 75 70 00 bd 62 |.-.pv...5.:up..b| +peer1.org2.example.com | [526 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [5b3 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [5b2 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [5b4 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5b5 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [5b6 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +peer1.org1.example.com | [5b8 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [4ab 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [4c2 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:59724 +peer1.org2.example.com | [527 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5b9 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | 00000010 d4 10 50 38 d3 e0 03 c9 c0 92 dd cf 1e 48 aa 41 |..P8.........H.A| +peer0.org2.example.com | [4ac 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [4c3 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59724 +peer1.org2.example.com | [528 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [5ba 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [3ab 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 15 57 d8 d1 6e ce 41 b5 cb 42 be ae |0D. .W..n.A..B..| +peer0.org2.example.com | [4ad 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [4c4 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59724 +peer1.org2.example.com | [529 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [5bb 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | 00000010 e2 7c 57 60 d5 0f e7 e0 cb bb 8b a4 7b 31 0d 9e |.|W`........{1..| +peer0.org2.example.com | [4ae 06-12 02:14:22.81 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer0.org1.example.com | [4c5 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59724 +peer1.org1.example.com | [5bc 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [52a 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | 00000020 55 51 99 6b 02 20 0b ce 03 7f 3c 91 d6 ec f8 0c |UQ.k. ....<.....| +peer0.org2.example.com | [4af 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:52938 +peer0.org2.example.com | [4b0 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:52938 +peer0.org2.example.com | [4b1 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 13941726900962254619, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [4b2 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [4b4 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org1.example.com | [4c6 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59724 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:3147502396417204607 tag:EMPTY mem_req:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org1.example.com | [4c7 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [4c8 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:3147502396417204607 tag:EMPTY mem_req:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org1.example.com | [4c9 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [4ca 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [4cb 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]}, deadMembers={[]} +peer0.org1.example.com | [4cc 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [4cd 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +peer0.org1.example.com | [4ce 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [4cf 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [5bd 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [5be 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [5bf 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [5c0 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5c1 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [5c2 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [5c3 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [5c4 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [5b7 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [5c5 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5c6 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +peer1.org1.example.com | [5c7 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +peer1.org1.example.com | [5c8 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5c9 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [5ca 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [5cb 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5cc 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [5cd 06-12 02:14:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [5ce 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [5cf 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [5d0 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [5d1 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [5d2 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [5d3 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5d4 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [5d5 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5d6 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [5d7 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [5d8 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [5d9 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 24 but got ts: inc_num:1528769651824440500 seq_num:23 +peer1.org1.example.com | [5da 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5db 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [5dc 06-12 02:14:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [5dd 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 21 but got ts: inc_num:1528769652088169500 seq_num:20 +orderer.example.com | 00000030 d8 84 3d 45 3c a4 e8 d0 a8 57 7c c5 a7 df 8d 7d |..=E<....W|....}| +orderer.example.com | 00000040 cf 21 f1 99 cc 1b |.!....| +orderer.example.com | [3ac 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503a0 principal evaluation succeeds for identity 0 +orderer.example.com | [3ad 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503a0 gate 1528769658545914300 evaluation succeeds +orderer.example.com | [3ae 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [3af 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [3b0 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [3b1 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [3b2 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [3b3 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [3b4 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [3b5 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [3b6 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [3b7 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [3b8 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [4d0 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [4d1 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:58578 +peer0.org1.example.com | [4d2 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 3147502396417204607, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [4d3 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\021" signature:"0E\002!\000\267\246\357\rg\252\250\275\007\261\347/\246\210\035\177X\030\310.:!\245\352>S\337\266\311/UD\002 @QV +peer0.org1.example.com | [4d5 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 3147502396417204607, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +peer0.org1.example.com | [4d4 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58578 +peer0.org1.example.com | [4d6 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [4d7 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58578 +peer0.org1.example.com | [4d8 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58578 +peer0.org1.example.com | [4d9 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [4db 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +peer0.org1.example.com | [4da 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing +peer0.org1.example.com | [4dc 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org1.example.com | [4dd 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:58578 disconnected +peer0.org1.example.com | [4de 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer1.org2.example.com | [52b 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Entering, AliveMessage: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes t: {1528769652088169500 19} +peer1.org2.example.com | [52c 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Exiting +peer1.org2.example.com | [52d 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [52e 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [52f 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [530 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [532 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [533 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [531 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:m\257x\313b\2054\375\234\326\265\206h\004\345\320E\304\035Pw%\247\002\361\224\356\341\002 M\020\222\004BO\254a\377\226\352,\372p\365\003\237AQL\330V\232\332B\304\030\037\272\272\260\330" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > alive: +peer1.org2.example.com | [534 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [535 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [536 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [537 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [538 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [539 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [53b 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [53a 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [53c 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [53d 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [53e 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5de 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5df 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [5e0 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [5e1 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [5e2 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5e3 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [5e4 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [5e5 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [5e6 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [5e7 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [5e8 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [5e9 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [5ea 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [5eb 06-12 02:14:25.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [5ec 06-12 02:14:25.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer1.org1.example.com | [5ed 06-12 02:14:25.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer1.org1.example.com | [5ee 06-12 02:14:25.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer1.org1.example.com | [5ef 06-12 02:14:25.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5f0 06-12 02:14:25.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 2 IDENTITY_MSG items to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [5f1 06-12 02:14:26.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to peer1.org2.example.com:7051 +peer1.org1.example.com | [5f2 06-12 02:14:26.23 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [5f3 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to peer0.org1.example.com:7051 +peer1.org1.example.com | [5f4 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org1.example.com | [5f5 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [5f6 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [4b3 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\357\250}\311\033;<\014]\356\300t\002 o\350\335\256Z\212m\313\317\252\373\332\255\263\247\035`\266;\261\017\361\211\322\0102/\305]\312\234\314" > > alive:\276\317\006" > > +peer0.org2.example.com | [4b5 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:52866 disconnected +peer0.org2.example.com | [4b6 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 13941726900962254619, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes +peer0.org2.example.com | [4b8 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing +peer0.org2.example.com | [4b7 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [4b9 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org2.example.com | [4ba 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:52938 disconnected +peer0.org2.example.com | [4bb 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [4bc 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org2.example.com | [4bd 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer0.org2.example.com | [4be 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer0.org2.example.com | [4bf 06-12 02:14:22.82 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [4c0 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:7051 +peer0.org2.example.com | [4c1 06-12 02:14:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) +peer0.org2.example.com | [4c2 06-12 02:14:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer0.org2.example.com | [4c3 06-12 02:14:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer0.org2.example.com | [4c4 06-12 02:14:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [4c5 06-12 02:14:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org2.example.com | [4c6 06-12 02:14:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [4c7 06-12 02:14:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer0.org1.example.com:7051, PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] isn't responsive: EOF +peer0.org2.example.com | [4c8 06-12 02:14:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182]] +peer0.org2.example.com | [4c9 06-12 02:14:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182], Metadata: [] +peer0.org2.example.com | [4ca 06-12 02:14:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] expireDeadMembers.CloseConn.CloseConn -> DEBU Closing connection for , PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [4cb 06-12 02:14:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +peer0.org2.example.com | [4cc 06-12 02:14:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:7051 +peer0.org2.example.com | [4cd 06-12 02:14:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:7051 +peer0.org2.example.com | [4ce 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:7051 +peer0.org2.example.com | [4cf 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org2.example.com | [4d0 06-12 02:14:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [4d1 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [4d2 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [4d3 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [4d4 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [4d5 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [4d6 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4230ed040 env 0xc423112bd0 txn 0 +peer0.org2.example.com | [4d7 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [4d8 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [4d9 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [4da 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +peer0.org2.example.com | [4db 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [4dc 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +peer0.org2.example.com | [4dd 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [4de 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org2.example.com | [4df 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org2.example.com | [4e0 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org2.example.com | [4e1 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +orderer.example.com | [3b9 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [3ba 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [3bb 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [3bc 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [3bd 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [3be 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [3bf 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [3c0 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [3c1 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [3c2 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [3c3 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +orderer.example.com | [3c4 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +orderer.example.com | [3c5 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [3c6 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [3c7 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [3c8 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [3c9 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [3ca 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [3cb 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +orderer.example.com | [3cc 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [3cd 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [3ce 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +orderer.example.com | [3cf 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +orderer.example.com | [3d0 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420150628 gate 1528769658553052600 evaluation starts +orderer.example.com | [3d1 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150628 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [3d2 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150628 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [3d3 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [3d4 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150628 principal matched by identity 0 +orderer.example.com | [3d5 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 be 34 c2 33 46 64 a0 de 11 5b 45 b1 e6 9c bb 65 |.4.3Fd...[E....e| +orderer.example.com | 00000010 b3 75 73 fa 14 94 7c 73 d4 7d 46 c4 3e 48 ea c2 |.us...|s.}F.>H..| +orderer.example.com | [3d6 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 ed 96 b0 ac 8b ad c8 67 d3 4a |0E.!.........g.J| +orderer.example.com | 00000010 e7 fe 6c 0d 70 0e eb 0d 09 6e ca a4 01 86 2d 58 |..l.p....n....-X| +orderer.example.com | 00000020 39 5c 13 20 df 02 20 7e 6e e6 30 f4 5c 8f 6f ae |9\. .. ~n.0.\.o.| +orderer.example.com | 00000030 f4 7b 2d 60 fc 7b f7 3f 50 91 37 9f 99 c5 6c 55 |.{-`.{.?P.7...lU| +orderer.example.com | 00000040 ff 2e 3f b2 8f d5 f6 |..?....| +orderer.example.com | [3d7 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150628 principal evaluation succeeds for identity 0 +orderer.example.com | [3d8 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420150628 gate 1528769658553052600 evaluation succeeds +orderer.example.com | [3d9 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [3da 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [3db 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [3dc 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [3dd 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [3de 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [3df 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [3e0 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [3e1 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [3e2 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [3e3 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [3e4 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [3e5 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [3e6 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [4df 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:58584 +peer0.org1.example.com | [4e0 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58584 +peer0.org1.example.com | [4e1 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58584 +peer0.org1.example.com | [4e2 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58584 +peer0.org1.example.com | [4e3 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:59726 +peer0.org1.example.com | [4e4 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59726 +peer0.org1.example.com | [4e5 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59726 +peer0.org1.example.com | [4e6 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59726 +peer0.org1.example.com | [4e7 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org1.example.com | [4e8 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59724 disconnected +peer0.org1.example.com | [4ea 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing +peer0.org1.example.com | [4e9 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [4eb 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org1.example.com | [4ed 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [4ec 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59726 disconnected +peer0.org1.example.com | [4ee 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing +peer0.org1.example.com | [4ef 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58584 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:5946037328689966164 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +peer1.org2.example.com | [53f 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [540 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [541 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [542 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [543 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [544 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [545 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [546 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [547 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [548 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [549 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [54a 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [54b 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [54c 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [54d 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [54e 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [54f 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [550 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [551 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [552 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5f7 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org1.example.com | [5f8 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [5f9 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 13652521759945457288, Envelope: 938 bytes, Signature: 0 bytes +peer1.org1.example.com | [5fa 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 13652521759945457288, Envelope: 938 bytes, Signature: 0 bytes +peer1.org1.example.com | [5fb 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 11826775994970389184, Envelope: 942 bytes, Signature: 0 bytes +peer1.org1.example.com | [5fc 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 146 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 68 67 67 65 98 43 103 65 119 73 66 65 103 73 81 68 55 78 84 87 68 110 51 118 56 117 51 98 83 114 117 51 65 107 65 57 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 83 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 120 86 104 55 77 65 117 65 106 86 121 98 110 114 88 100 97 74 75 81 75 56 75 81 108 49 54 108 113 56 107 70 10 52 67 89 67 83 53 53 104 114 114 77 106 122 121 120 99 117 108 98 52 84 88 118 77 55 75 106 78 81 71 112 97 120 115 50 78 87 85 110 90 114 111 81 78 120 47 107 57 78 79 99 78 118 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 82 119 65 119 82 65 73 103 82 49 121 68 68 120 77 115 10 83 103 48 49 68 73 75 97 108 114 69 102 98 76 112 67 70 99 72 66 83 121 70 113 88 86 49 57 84 110 90 109 71 83 111 67 73 71 83 120 65 75 67 98 106 108 53 114 72 101 106 115 86 83 49 101 117 55 104 53 53 50 98 89 10 50 69 100 70 69 122 87 103 111 82 85 72 113 119 105 57 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer1.org1.example.com | [5fd 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [5fe 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 11826775994970389184, Envelope: 942 bytes, Signature: 0 bytes +peer1.org1.example.com | [5ff 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 11826775994970389184, Envelope: 942 bytes, Signature: 0 bytes +peer1.org1.example.com | [600 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 88 112 117 99 49 88 68 101 115 51 113 78 103 118 98 55 115 105 73 47 73 68 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 53 51 108 56 83 103 113 56 118 110 48 112 72 122 108 103 103 47 85 112 109 85 74 98 48 107 106 56 87 71 68 106 10 83 80 86 114 57 109 99 81 117 69 109 101 99 57 65 53 111 55 90 109 113 53 121 47 112 98 85 52 100 51 84 48 80 52 111 69 80 78 52 65 104 107 54 122 100 80 47 75 108 119 43 119 80 54 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 75 50 72 97 75 52 108 10 88 81 105 117 49 88 120 103 73 106 84 53 56 99 116 111 90 111 84 67 116 53 111 104 74 99 121 113 83 55 78 115 71 114 83 117 65 105 65 53 86 119 47 84 121 75 110 107 80 76 86 115 50 66 49 111 49 74 102 70 105 71 43 83 10 81 104 56 48 97 84 110 65 101 103 83 84 83 113 109 65 49 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer1.org1.example.com | [601 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [4f0 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [4f1 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:5946037328689966164 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org1.example.com | [4f2 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [4f3 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [4f4 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [4f5 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [4f6 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [4f7 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [4f8 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [4f9 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [4fa 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [4fb 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [4fc 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 5946037328689966164, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [4fd 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\022" signature:"0E\002!\000\200@%\033\376g\344\220,?\036\365\262\212\334Nv\307,\337\267\256\030\307\240J\361\321`\327\257\231\002 i\"\373\213s \345\217\366R%\326B\360\202\301y\216\235\271\014 &\354\177\307\261\t\375\320P\225" > +peer0.org1.example.com | [4fe 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 5946037328689966164, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes +peer0.org1.example.com | [4ff 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [500 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:58590 +peer0.org1.example.com | [501 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58590 +peer0.org1.example.com | [502 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58590 +peer0.org1.example.com | [503 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58590 +peer0.org1.example.com | [504 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org1.example.com | [505 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:58584 disconnected +peer0.org1.example.com | [506 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:58590 disconnected +peer0.org1.example.com | [508 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [507 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing +peer0.org1.example.com | [509 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [50a 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [50b 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [50c 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [50d 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [50e 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [50f 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [510 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [511 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [512 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [513 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [3e7 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [3e8 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [3e9 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [3ea 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [3eb 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [3ec 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [3ed 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [3ee 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [3ef 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [3f0 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [3f1 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [3f2 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [3f3 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [3f4 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [3f5 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [3f6 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [3f7 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [3f8 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [3f9 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [3fa 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [3fb 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [3fc 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [3fd 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [3fe 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [3ff 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [400 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [401 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [402 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [403 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +peer1.org2.example.com | [553 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [554 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [555 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [556 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [557 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [558 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [559 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [55a 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [55b 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [55c 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [55d 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [55e 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [55f 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [560 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [562 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [563 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [561 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:sB\267\032\021" secret_envelope: > +peer1.org2.example.com | [564 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [565 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [566 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [567 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [4e2 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org2.example.com | [4e3 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [404 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [405 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [406 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +orderer.example.com | [407 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [408 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [409 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [40a 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [40b 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [40c 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [40d 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [40e 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [40f 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [410 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org1.example.com | [602 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [603 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [604 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [605 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [606 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [607 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [608 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [609 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [60a 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [60b 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [60c 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [60d 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [60e 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [60f 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [610 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [611 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [612 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [613 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [614 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [615 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [616 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [618 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [617 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [619 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [568 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [569 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [56a 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [56b 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [56c 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [56d 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [56e 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [570 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [56f 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [571 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [572 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [573 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [574 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [575 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [576 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [577 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [578 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [579 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [57a 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [57b 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [57c 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [57d 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [57e 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes to 3 peers +peer1.org2.example.com | [57f 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +peer1.org2.example.com | [580 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [581 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +peer1.org2.example.com | [583 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [582 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +peer1.org2.example.com | [584 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [585 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [586 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [587 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [588 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [589 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [58a 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org2.example.com | [58b 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org2.example.com | [58c 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [58d 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to peer1.org1.example.com:7051 +peer1.org2.example.com | [58e 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [58f 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer1.org2.example.com | [590 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [591 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 8305754499538340902, Envelope: 1864 bytes, Signature: 0 bytes +peer1.org2.example.com | [592 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 8305754499538340902, Envelope: 1864 bytes, Signature: 0 bytes +peer1.org2.example.com | [593 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 8305754499538340902, Envelope: 1864 bytes, Signature: 0 bytes +peer1.org2.example.com | [594 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 106 67 67 65 99 67 103 65 119 73 66 65 103 73 82 65 79 51 85 114 78 82 115 80 53 106 75 77 75 47 120 84 74 43 54 106 108 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 103 119 77 84 77 119 77 68 99 48 77 68 73 50 87 104 99 78 77 106 103 119 77 84 73 52 77 68 99 48 77 68 73 50 10 87 106 66 98 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 102 77 66 48 71 65 49 85 69 65 120 77 87 99 71 86 108 99 106 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 10 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 78 73 116 103 106 85 116 105 107 55 88 99 114 47 84 115 56 118 114 108 70 85 82 85 67 78 111 83 55 114 99 10 50 72 118 107 106 67 53 100 72 56 69 55 70 88 97 117 70 119 76 101 81 106 65 82 65 112 80 56 85 70 52 79 112 116 70 82 87 120 120 70 104 48 66 71 109 76 72 101 86 43 113 57 111 120 54 106 84 84 66 76 77 65 52 71 10 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 72 103 68 65 77 66 103 78 86 72 82 77 66 65 102 56 69 65 106 65 65 77 67 115 71 65 49 85 100 73 119 81 107 77 67 75 65 73 72 103 109 56 119 57 72 69 72 47 114 10 57 52 113 57 70 79 101 101 71 111 75 55 83 108 43 116 112 69 56 84 106 79 69 103 50 53 79 120 65 106 78 72 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 100 50 81 72 76 10 112 75 80 79 118 116 87 106 88 69 66 111 55 104 72 51 108 66 117 51 120 97 76 78 66 107 75 112 52 66 115 72 56 97 115 86 57 119 73 103 85 110 82 89 43 47 53 70 114 66 49 52 84 83 49 43 67 56 79 55 115 113 49 120 10 70 105 47 75 52 86 85 107 99 114 116 50 47 74 72 76 101 50 77 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer1.org2.example.com | [595 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 84 68 78 89 119 109 47 116 81 73 53 102 82 68 79 109 111 115 48 103 82 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 90 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 90 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 120 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 90 73 84 86 87 54 99 48 115 120 47 115 121 102 101 112 106 75 72 56 110 71 104 114 68 120 55 56 85 75 101 74 10 74 54 50 103 70 108 107 121 48 65 75 55 53 69 74 74 110 47 81 101 68 71 99 82 71 118 120 108 74 47 111 105 47 88 55 67 70 53 109 113 74 65 101 108 88 116 72 119 54 109 117 51 109 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 101 67 98 122 68 48 99 81 102 43 118 51 10 105 114 48 85 53 53 52 97 103 114 116 75 88 54 50 107 84 120 79 77 52 83 68 98 107 55 69 67 77 48 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 78 106 119 113 110 104 121 10 122 97 56 117 112 88 116 110 111 52 87 47 116 111 118 80 75 122 113 47 83 104 68 82 68 114 101 56 65 67 52 87 83 77 109 48 65 105 66 109 112 67 87 115 81 90 106 78 106 100 76 47 75 78 114 48 109 113 109 106 100 120 98 88 10 102 118 53 89 83 57 47 121 115 100 56 106 121 52 97 43 112 103 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer1.org2.example.com | [596 06-12 02:14:24.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [597 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org2.example.com | [598 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org2.example.com | [599 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [59a 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [59b 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [59c 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [59d 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [59e 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [59f 06-12 02:14:25.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [5a0 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [5a1 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [5a2 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [514 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [515 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [516 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [517 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [518 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [51a 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [519 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [51b 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [51c 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +peer0.org1.example.com | [51d 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer0.org1.example.com | [51e 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer0.org1.example.com | [51f 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org1.example.com | [520 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [521 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [522 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [523 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [524 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [525 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [61a 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [61b 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [61c 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [61d 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [61e 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [61f 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [620 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [621 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [622 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [623 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [624 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [625 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [626 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [627 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [628 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [629 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [62a 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [62b 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [62c 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [62d 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [62e 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [62f 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [630 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5a3 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [5a4 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5a5 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [5a6 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [5a7 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [5a8 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [5a9 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [5aa 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [5ab 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [5ac 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [5ad 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [5ae 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [5b0 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [5b1 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [5af 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > alive: +peer1.org2.example.com | [5b2 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49378 +peer1.org2.example.com | [5b3 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42202dec0 +peer1.org2.example.com | [5b4 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [5b5 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [5b6 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer1.org2.example.com | [5b7 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [5b8 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [4e4 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org2.example.com | [4e5 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [4e6 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [4e7 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +peer0.org2.example.com | [4e8 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [4e9 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [4ea 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [4eb 06-12 02:14:22.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +peer0.org2.example.com | [4ec 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] +peer0.org2.example.com | [4ed 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x11, 0x61, 0x9f, 0x74, 0x2a, 0x75, 0xba, 0x72, 0x46, 0x54, 0x9e, 0xb0, 0xdc, 0xb3, 0x98, 0xed, 0xeb, 0xfa, 0xa0, 0xae, 0xea, 0x73, 0x9a, 0x0, 0x40, 0x67, 0xea, 0x20, 0x7a, 0xc0, 0xec, 0x73} txOffsets= +peer0.org2.example.com | txId= locPointer=offset=70, bytesLength=12151 +peer0.org2.example.com | ] +peer0.org2.example.com | [4ee 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx ID: [] to index +peer0.org2.example.com | [4ef 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +orderer.example.com | [411 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +orderer.example.com | QKuzs3j8kg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [412 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +orderer.example.com | 3BDFnYuSFYhOCexVkA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [413 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [414 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [415 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [416 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [417 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [418 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [419 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [41a 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [41b 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [41c 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [41d 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +peer0.org2.example.com | [4f0 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40098], isChainEmpty=[false], lastBlockNumber=[2] +peer0.org2.example.com | [4f1 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] +peer0.org2.example.com | [4f2 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] +peer0.org2.example.com | [4f3 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +peer0.org2.example.com | [4f4 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +peer0.org2.example.com | [4f5 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [4f6 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org2.example.com | [4f7 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [4f8 06-12 02:14:22.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [4f9 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [4fa 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [3] +peer0.org2.example.com | [4fb 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] +peer0.org2.example.com | [4fc 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [3] +peer0.org2.example.com | [4fd 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +peer0.org2.example.com | [4fe 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +peer0.org2.example.com | [4ff 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [500 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +peer0.org2.example.com | [501 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [502 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [503 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [504 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [505 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [506 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [507 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [508 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [509 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [50a 06-12 02:14:22.93 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [50b 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [50c 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [50d 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [631 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [633 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [632 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [634 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [635 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [636 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [637 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [638 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [639 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [63a 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [63b 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [63c 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [63d 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [63e 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [63f 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [640 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [641 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [642 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [643 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [644 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [645 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [646 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [647 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [648 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [649 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [50e 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [50f 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [510 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [511 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [512 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [513 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [514 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [515 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [516 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [517 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [518 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [519 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [51a 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [51b 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:37338 +peer0.org2.example.com | [51c 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:37338 +peer0.org2.example.com | [51d 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +orderer.example.com | CSJWn+U1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [41e 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [41f 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [420 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [421 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [422 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [423 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +orderer.example.com | [424 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [425 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [426 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [427 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [428 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [429 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +orderer.example.com | [42a 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +orderer.example.com | [42b 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +orderer.example.com | [42c 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [42d 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [42e 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [42f 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer0.org2.example.com | [51e 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [51f 06-12 02:14:23.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [520 06-12 02:14:23.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [521 06-12 02:14:23.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [522 06-12 02:14:23.29 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:37338 +peer0.org2.example.com | [523 06-12 02:14:23.29 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:37338 +peer0.org2.example.com | [524 06-12 02:14:23.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [525 06-12 02:14:23.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [526 06-12 02:14:23.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [527 06-12 02:14:23.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [528 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [529 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [52a 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [52b 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [52c 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [52d 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [52e 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [52f 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [530 06-12 02:14:23.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [531 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [532 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [533 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [534 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [5b9 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42208f860, header 0xc42029b5f0 +peer1.org2.example.com | [5ba 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer1.org2.example.com | [5bb 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][a524b1a9] processing txid: a524b1a94621ee09970e1af829a51c3b9271d62a93cd2c1f031768bb055a1b40 +peer1.org2.example.com | [5bc 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][a524b1a9] Entry chaincode: name:"lscc" +peer1.org2.example.com | [5bd 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled +peer1.org2.example.com | [5be 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][a524b1a94621ee09970e1af829a51c3b9271d62a93cd2c1f031768bb055a1b40] Entry chaincode: name:"lscc" version: 1.2.0 +peer1.org2.example.com | [5bf 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=a524b1a94621ee09970e1af829a51c3b9271d62a93cd2c1f031768bb055a1b40,syscc=true,proposal=0xc42208f860,canname=lscc:1.2.0) +peer1.org2.example.com | [5c0 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org2.example.com | [5c1 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [5c2 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a524b1a9]Received message TRANSACTION from peer +peer1.org2.example.com | [5c3 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a524b1a9] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [5c4 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a524b1a9] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org2.example.com | [5c5 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +peer1.org2.example.com | [5c6 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} +peer1.org2.example.com | [5c7 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] +peer1.org2.example.com | [5c8 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [bc51fd3c-f387-43e9-8a5d-379d5aa998d1] +peer1.org2.example.com | [5c9 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [5ca 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [bc51fd3c-f387-43e9-8a5d-379d5aa998d1] +peer1.org2.example.com | [5cb 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. +peer1.org2.example.com | [5cc 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer1.org2.example.com | [5cd 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a524b1a9] Transaction completed. Sending COMPLETED +peer1.org2.example.com | [5ce 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a524b1a9] send state message COMPLETED +peer1.org2.example.com | [5cf 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a524b1a9] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [5d0 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a524b1a9] notifying Txid:a524b1a94621ee09970e1af829a51c3b9271d62a93cd2c1f031768bb055a1b40, channelID: +peer1.org2.example.com | [5d1 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [5d2 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][a524b1a94621ee09970e1af829a51c3b9271d62a93cd2c1f031768bb055a1b40] Exit +peer1.org2.example.com | [5d3 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][a524b1a9] Exit +peer1.org2.example.com | [5d4 06-12 02:14:25.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49378 +peer0.org1.example.com | [526 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:7051 +peer0.org1.example.com | [527 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:7051 +peer0.org1.example.com | [528 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:7051 +peer0.org1.example.com | [529 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org1.example.com | [52a 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [52b 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44234 +peer0.org1.example.com | [52c 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423775110 +peer0.org1.example.com | [52d 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [52e 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [52f 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [530 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [531 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [532 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4238400f0, header 0xc423775470 +peer0.org1.example.com | [533 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [534 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][1ca0a181] processing txid: 1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c +peer0.org1.example.com | [535 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1ca0a181] Entry chaincode: name:"lscc" +peer0.org1.example.com | [536 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled +peer0.org1.example.com | [537 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org1.example.com | [538 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c,syscc=true,proposal=0xc4238400f0,canname=lscc:1.2.0) +peer0.org1.example.com | [539 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [53a 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [53b 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ca0a181]Received message TRANSACTION from peer +peer0.org1.example.com | [53c 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ca0a181] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [53d 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1ca0a181] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [53e 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +peer0.org2.example.com | [535 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [536 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [537 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [538 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [539 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [53a 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [53b 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [53c 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [53d 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer0.org2.example.com | [53e 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [53f 06-12 02:14:23.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [540 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [541 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [542 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [543 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [544 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [545 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [546 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [547 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [548 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [549 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Entering, AliveMessage: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes t: {1528769652088169500 19} +peer0.org2.example.com | [54a 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Exiting +peer0.org2.example.com | [54b 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [54c 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [64b 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [64c 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [64d 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [64a 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [64e 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [650 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [64f 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [651 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [652 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [653 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [654 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [655 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [656 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [659 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [658 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [65a 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [657 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [65b 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [65c 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [65d 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [65e 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [65f 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [660 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [661 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [53f 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} +peer0.org1.example.com | [540 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] +peer0.org1.example.com | [541 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [b126576e-c068-4f90-845a-3a48f32fe2c2] +peer0.org1.example.com | [542 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [543 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [b126576e-c068-4f90-845a-3a48f32fe2c2] +peer0.org1.example.com | [544 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. +peer0.org1.example.com | [545 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer0.org1.example.com | [546 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ca0a181] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [547 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [1ca0a181] send state message COMPLETED +peer0.org1.example.com | [548 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1ca0a181] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [549 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1ca0a181] notifying Txid:1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c, channelID: +peer0.org1.example.com | [54a 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [54b 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c] Exit +peer0.org1.example.com | [54c 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1ca0a181] Exit +peer0.org1.example.com | [54d 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44234 +peer0.org1.example.com | [54e 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [54f 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [550 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [551 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [552 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [553 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [555 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [554 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [556 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [558 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [559 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +peer0.org1.example.com | [55a 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +peer0.org1.example.com | [55b 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [54d 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [54e 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [54f 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > alive: alive: +peer0.org2.example.com | [550 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [551 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [552 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [553 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [554 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [555 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [556 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [557 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [558 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [559 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers +peer0.org2.example.com | [55a 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [55b 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [55c 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [55d 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [55e 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [55f 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [662 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [663 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [664 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [665 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [667 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [668 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [666 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [669 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [66a 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [66b 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [66c 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [66d 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [66f 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [66e 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [670 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [671 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [672 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [673 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [674 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [675 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [55c 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org1.example.com | [55d 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org1.example.com | [55e 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org1.example.com | [55f 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [557 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [560 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [561 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +peer0.org1.example.com | [562 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +peer0.org1.example.com | [563 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +peer0.org1.example.com | [564 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [565 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [566 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [567 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [568 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [56a 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [569 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org1.example.com | [56b 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [56c 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [430 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +orderer.example.com | [431 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +orderer.example.com | [432 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [433 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [434 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [435 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [436 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [437 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [438 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [439 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [43a 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [43b 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [43c 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [43d 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [43e 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [43f 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [440 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [441 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [442 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [443 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [444 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [445 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [676 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\026" signature:"0D\002 \026AP;\373\215\257y\377\214\274>\3225c\330\273\005o\215\026!\375A\205;\024\244oZ\006\253\002 U\353g\030\244=\335P/\010xQX\235\226b\240\264M\264\300>\234\210\333B\2008``\3648" > alive: alive: +peer1.org1.example.com | [677 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [678 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [679 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [67a 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [67b 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [67c 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [67d 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [67e 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [67f 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [680 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [681 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [682 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [683 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [684 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [685 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [686 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [687 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [56d 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [56e 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [56f 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [570 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [571 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [572 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [573 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [574 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [575 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [576 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [577 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [578 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [579 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [57a 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [57b 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [57c 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [57d 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [57e 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [57f 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [580 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [581 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [582 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [583 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [584 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [585 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [5d5 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org2.example.com | [5d6 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org2.example.com | [5d7 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org2.example.com | [5d8 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [5d9 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [5da 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [5db 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [5dc 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [5dd 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [5de 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [5df 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [5e0 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [5e1 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [5e2 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [5e3 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [5e4 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5e5 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5e6 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [5e7 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [5e8 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5e9 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5ea 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [5eb 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [560 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [561 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [562 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [563 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [564 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers +peer0.org2.example.com | [565 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [567 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [566 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [568 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [569 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [56a 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [56b 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [56c 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [56d 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [56e 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [570 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [56f 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [572 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [571 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [574 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [575 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [576 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [573 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [577 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [579 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer1.org1.example.com | [688 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [689 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [68a 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [68b 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [68c 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [68d 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" secret_envelope: > alive:\216\003\361W\361\341n\226\223\337\\9\002 UU\304\375>:\365-J\304\226W0f\225\370\325\211\347Wf\236\210\335\026\3064\236\202\206\217\"" secret_envelope: > +peer1.org1.example.com | [68e 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [68f 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [690 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [691 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [692 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [693 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [694 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [695 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [696 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [697 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [698 06-12 02:14:28.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [699 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [69a 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [69b 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [69c 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [69d 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [69e 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [69f 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [5ec 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [5ed 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [5ee 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [5ef 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [5f0 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [5f1 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [5f2 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [5f3 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [5f4 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5f6 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [5f5 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5f7 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [5f8 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5f9 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [5fb 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [5fa 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5fc 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [5fd 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [5fe 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [5ff 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [600 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [601 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [602 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [446 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [447 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [448 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [449 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [44a 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [44b 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [44c 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [44d 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [44e 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [44f 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [450 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [451 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [452 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [453 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [454 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [455 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [456 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [457 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [458 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [459 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [586 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [587 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [588 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [589 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [58a 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [58b 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [58c 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [58d 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [58e 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [58f 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org1.example.com | [590 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [591 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org1.example.com | [592 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [593 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [594 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [595 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [596 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [597 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [598 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [599 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [59a 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [59b 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [59c 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [59d 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [59e 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [603 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [604 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [605 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [606 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [607 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [608 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [609 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [60a 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [60b 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [60c 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [60d 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [60e 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [60f 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [611 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [610 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [613 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [612 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [614 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [615 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [616 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [617 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [618 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [619 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [61a 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [57a 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [57b 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [57c 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [578 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [57d 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [580 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +peer0.org2.example.com | [581 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [57f 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [582 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [57e 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [584 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [585 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [586 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [587 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [589 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [583 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer0.org2.example.com | [58a 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer0.org2.example.com | [58b 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [588 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [6a0 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [6a1 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6a2 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [6a3 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [6a4 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6a5 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [6a6 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6a7 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [6a8 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [6a9 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [6aa 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6ab 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [6ac 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6ad 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [6ae 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [6af 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [6b0 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [6b1 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6b2 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [6b3 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6b4 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [6b5 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6b6 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [6b7 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [6b8 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6b9 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [6ba 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [6bb 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [6bc 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [6bd 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [61b 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [61c 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [61d 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [61e 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [61f 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [620 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [621 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [622 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [623 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [624 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [625 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [626 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [627 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [628 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [629 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [62b 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [62c 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [62a 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [62d 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [62e 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [62f 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [630 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [631 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [632 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [58c 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [58d 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [58f 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [58e 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [590 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [591 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [592 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [593 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [594 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [595 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [596 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [597 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [598 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [599 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [59a 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [59b 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [59c 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [59d 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [59e 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [59f 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [5a0 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [5a1 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [5a2 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [5a3 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [5a5 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [5a6 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [5a4 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5a7 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 22 but got ts: inc_num:1528769653227426900 seq_num:21 +peer0.org2.example.com | [5a9 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [5aa 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [5ab 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [5a8 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [5ac 06-12 02:14:24.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [5ad 06-12 02:14:24.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [5ae 06-12 02:14:24.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [5af 06-12 02:14:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [5b0 06-12 02:14:24.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [5b1 06-12 02:14:24.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [5b2 06-12 02:14:24.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [5b3 06-12 02:14:24.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [5b4 06-12 02:14:24.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [5b5 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [5b6 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [5b7 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [5b8 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [5b9 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [5ba 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [5bb 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [5bc 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [5bd 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [633 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [634 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [635 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [637 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [636 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [638 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [639 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [63a 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [63b 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [63c 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [63d 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [63e 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [63f 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [640 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [641 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [642 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [643 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [644 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [59f 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [5a0 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [5a1 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5a2 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [5a3 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [5a4 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [5a5 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 22 but got ts: inc_num:1528769651824440500 seq_num:21 +peer0.org1.example.com | [5a6 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [5a7 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [5a8 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [5a9 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [5aa 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [5ab 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [5ac 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [5ad 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [5ae 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [5af 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [5b0 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [5b1 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [5b2 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [5b3 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [5b4 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [5b5 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [5b7 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [5b8 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [5b9 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [45a 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [45b 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [45c 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [45d 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [45e 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [45f 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [460 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [461 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [462 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [463 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [464 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [465 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [466 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [467 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [468 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +orderer.example.com | [469 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [46a 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [46b 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [46c 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [46d 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [46e 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +orderer.example.com | [46f 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +orderer.example.com | [470 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org2.example.com | [5be 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [5bf 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5c0 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [5c1 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [5c2 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [5c3 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [5c4 06-12 02:14:24.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [5c5 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [5c6 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [5c7 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [5c8 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [5c9 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [5ca 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [5cb 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [5cc 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [5cd 06-12 02:14:24.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [5ce 06-12 02:14:24.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [5cf 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5d0 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [5d1 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5d2 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [5d3 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5d4 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [5d5 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [5d6 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [5d7 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [5d8 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6be 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [6bf 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [6c0 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6c1 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [6c2 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [6c3 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [6c4 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [6c5 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [6c6 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [6c7 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [6c8 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [6c9 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [6ca 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [6cb 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [6cc 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [6cd 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > alive: alive:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > alive:G}\254\221\033\341\253I\300\203\366\237\211\273~p}\325\036\375\257\036\010\205<\351V\002 #\275\242\225\325&\350\375\013\304FE\207\336\023\007\222\201\003\004\350\006\250\236\377\326\206<\020\226\331L" > +peer1.org1.example.com | [6ce 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [6cf 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [471 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [472 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FAD8FCD80522...E8D0A8577CC5A7DF8D7DCF21F199CC1B +orderer.example.com | [473 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 4218DCDEB8249982FA3A15A1AC2334D2AC2B2B66B5F45010B799A625BC2F682B +orderer.example.com | [474 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [475 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [476 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [477 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [478 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [479 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [47a 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO +orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o +orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR +orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [47b 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1528769658590578200 evaluation starts +orderer.example.com | [47c 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [47d 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [47e 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [47f 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org2.example.com | [645 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [646 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [647 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [648 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [649 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [64a 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [64b 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [64c 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [64d 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [64e 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [650 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [651 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [64f 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [652 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [653 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [654 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [655 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [656 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [657 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [658 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [659 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [65a 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [65b 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [65c 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [65d 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 24 but got ts: inc_num:1528769653227426900 seq_num:23 +peer1.org2.example.com | [65e 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [65f 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [6d0 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [6d1 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [6d2 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6d3 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [6d4 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6d5 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [6d6 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [6d7 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [6d8 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [6d9 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [6da 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [6db 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [6dc 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6dd 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [6de 06-12 02:14:29.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6df 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [6e0 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6e1 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [6e2 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [6e3 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [6e4 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6e5 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [6e6 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [6e7 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [480 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 +orderer.example.com | [481 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 42 18 dc de b8 24 99 82 fa 3a 15 a1 ac 23 34 d2 |B....$...:...#4.| +orderer.example.com | 00000010 ac 2b 2b 66 b5 f4 50 10 b7 99 a6 25 bc 2f 68 2b |.++f..P....%./h+| +orderer.example.com | [482 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f9 6c 3d ce 3b 83 62 a2 39 1d d4 |0E.!..l=.;.b.9..| +orderer.example.com | 00000010 16 cd d9 fa 6f 9f fd 2a 71 75 15 69 02 c5 56 89 |....o..*qu.i..V.| +orderer.example.com | 00000020 ca 95 be 2d 31 02 20 09 18 42 e4 60 4b dc 6f 83 |...-1. ..B.`K.o.| +orderer.example.com | 00000030 54 7a b8 9f 1d 15 a6 d4 25 0f 81 87 f0 5d 58 fd |Tz......%....]X.| +orderer.example.com | 00000040 4e ae 3d a1 25 f3 75 |N.=.%.u| +orderer.example.com | [483 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 +orderer.example.com | [484 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1528769658590578200 evaluation succeeds +orderer.example.com | [485 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [486 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [487 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +orderer.example.com | [488 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [489 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [48a 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [48b 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:35736 +orderer.example.com | [48c 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [48d 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [48e 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [48f 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [490 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [491 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [493 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35736: rpc error: code = Canceled desc = context canceled +orderer.example.com | [492 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [494 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [495 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [496 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [497 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [498 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [499 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [660 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [661 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [662 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [663 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [664 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [665 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [666 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [667 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [668 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [669 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [66a 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [66b 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [66c 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [66d 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [66e 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [66f 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [670 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [671 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [672 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [673 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [674 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [675 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [676 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [677 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [5b6 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [5ba 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [5bb 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [5bc 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [5bd 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [5be 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [5bf 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 3 peers +peer0.org1.example.com | [5c0 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5c1 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [5c2 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5c3 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [5c4 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5c5 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [5c6 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +peer0.org1.example.com | [5c7 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5c8 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes +peer0.org1.example.com | [5c9 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes +peer0.org1.example.com | [5ca 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +peer0.org1.example.com | [5cb 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5cc 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +peer0.org1.example.com | [5cd 06-12 02:14:24.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5ce 06-12 02:14:24.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [5cf 06-12 02:14:24.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [5d0 06-12 02:14:24.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5d1 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [5d2 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5d3 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [5d4 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [49a 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [49c 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [49d 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [49b 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35734: rpc error: code = Canceled desc = context canceled +orderer.example.com | [49f 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [49e 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +orderer.example.com | [4a0 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +orderer.example.com | [4a1 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [4a2 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [4a3 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [4a4 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [4a5 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [4a6 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [4a7 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +orderer.example.com | [4a8 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [4a9 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [4aa 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +orderer.example.com | [4ab 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +orderer.example.com | [4ac 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e7c8 gate 1528769658603078000 evaluation starts +orderer.example.com | [4ad 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e7c8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [4ae 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e7c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [4af 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e7c8 principal matched by identity 0 +orderer.example.com | [4b0 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 be 34 c2 33 46 64 a0 de 11 5b 45 b1 e6 9c bb 65 |.4.3Fd...[E....e| +orderer.example.com | 00000010 b3 75 73 fa 14 94 7c 73 d4 7d 46 c4 3e 48 ea c2 |.us...|s.}F.>H..| +orderer.example.com | [4b1 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 ed 96 b0 ac 8b ad c8 67 d3 4a |0E.!.........g.J| +orderer.example.com | 00000010 e7 fe 6c 0d 70 0e eb 0d 09 6e ca a4 01 86 2d 58 |..l.p....n....-X| +orderer.example.com | 00000020 39 5c 13 20 df 02 20 7e 6e e6 30 f4 5c 8f 6f ae |9\. .. ~n.0.\.o.| +orderer.example.com | 00000030 f4 7b 2d 60 fc 7b f7 3f 50 91 37 9f 99 c5 6c 55 |.{-`.{.?P.7...lU| +orderer.example.com | 00000040 ff 2e 3f b2 8f d5 f6 |..?....| +orderer.example.com | [4b2 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e7c8 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [5d9 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 3 peers +peer0.org2.example.com | [5da 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [5db 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [5dc 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [5dd 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [5de 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [5df 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org2.example.com | [5e0 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [5e1 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [5e2 06-12 02:14:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5e3 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5e4 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [5e5 06-12 02:14:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5e6 06-12 02:14:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5e7 06-12 02:14:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5e8 06-12 02:14:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5e9 06-12 02:14:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [5ea 06-12 02:14:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5eb 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5ec 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5ed 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [5ee 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5ef 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [5f0 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [5f2 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +peer0.org2.example.com | [5f1 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [5f3 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6e8 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [6e9 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [6ea 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [6eb 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6ec 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [6ed 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [6ee 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [6ef 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [6f0 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6f1 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [6f2 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6f3 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [6f4 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [6f5 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [6f6 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [6f7 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6f8 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [6fa 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [678 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [679 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [67a 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [67b 06-12 02:14:27.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [67c 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [67d 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [67e 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [67f 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [680 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [682 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [683 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [684 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [685 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [686 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [687 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [688 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [689 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [68a 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [68b 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [68c 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [68d 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [5d5 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [5d6 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5d7 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5d8 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5d9 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5da 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5db 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5dc 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5dd 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5de 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5df 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [5e0 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [5e1 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [5e2 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [5e3 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5e4 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [5e5 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [5e6 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [6f9 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [6fb 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [6fc 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [6fd 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [6fe 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [6ff 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [700 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [701 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [702 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [703 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [704 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [705 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [706 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [707 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [708 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [709 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [70a 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [70b 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [70c 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [70d 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [70e 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [70f 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [710 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [711 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [712 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [713 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [68e 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > alive: +peer1.org2.example.com | [68f 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [690 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [681 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [691 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [692 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [693 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [694 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [695 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [696 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [697 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [698 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [699 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [69a 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [69b 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [69c 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [69d 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [69e 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [69f 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [6a0 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [6a1 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [6a2 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [6a3 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6a4 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [6a5 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [6a6 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [6a7 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [6a8 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6a9 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [6aa 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [6ab 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [6ac 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [6ad 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [6ae 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [6af 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [6b0 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [6b1 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [6b2 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [6b3 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6b4 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [6b5 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [6b6 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [6b7 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6b8 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [6b9 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6ba 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [6bb 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [4b3 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e7c8 gate 1528769658603078000 evaluation succeeds +orderer.example.com | [4b4 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [4b5 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [4b6 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [4b7 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [4b8 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [4b9 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [4ba 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [4bb 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [4bc 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [4bd 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [4be 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [4bf 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [4c0 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [4c1 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [4c2 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [4c3 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [4c4 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [4c5 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [4c6 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [4c7 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [4c8 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [4c9 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [4ca 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [4cb 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [4cc 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [4cd 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [4ce 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [4cf 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [5e7 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [5e8 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [5e9 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [5ea 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [5eb 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [5ec 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [5ed 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [5ee 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [5ef 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [5f0 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [5f1 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [5f2 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [5f3 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\024" signature:"0D\002 \031\356a\3327T\376-\211\n\367d<\264\254\355\355C\313%\201\247\220\346\323\202\360\301[b\215\027\002 jv\211g1\257O\337\007\221\004\241/\037\375\305\360\371\336]&\276\025,\234\224\205y1{\351\335" > +peer0.org1.example.com | [5f4 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [5f5 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [5f6 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [5f7 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [5f8 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5f9 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer1.org2.example.com | [6bc 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [6bd 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [6be 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [6bf 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [6c0 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [6c1 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [6c2 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [6c3 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [6c4 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [6c5 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > alive: > +peer1.org2.example.com | [6c6 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org2.example.com | [6c7 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [6c8 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [6c9 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [6ca 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6cb 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [6cc 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [6cd 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [6ce 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6cf 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [6d0 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [6d2 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [6d3 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [6d4 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [6d1 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [5f4 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +peer0.org2.example.com | [5f5 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5f6 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org2.example.com | [5f7 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org2.example.com | [5f8 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [5f9 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [5fa 06-12 02:14:25.21 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:59426 +peer0.org2.example.com | [5fb 06-12 02:14:25.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422316900 +peer0.org2.example.com | [5fc 06-12 02:14:25.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [5fd 06-12 02:14:25.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [5fe 06-12 02:14:25.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org2.example.com | [5ff 06-12 02:14:25.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [600 06-12 02:14:25.21 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [601 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4223f0870, header 0xc422316c60 +peer0.org2.example.com | [602 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org2.example.com | [603 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][18d53180] processing txid: 18d53180e337c5a33aa4dbcdd19bcda46f3570623d583df41f0511a879e1b61f +peer0.org2.example.com | [604 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][18d53180] Entry chaincode: name:"lscc" +peer0.org2.example.com | [605 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled +peer0.org2.example.com | [606 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][18d53180e337c5a33aa4dbcdd19bcda46f3570623d583df41f0511a879e1b61f] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org2.example.com | [607 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=18d53180e337c5a33aa4dbcdd19bcda46f3570623d583df41f0511a879e1b61f,syscc=true,proposal=0xc4223f0870,canname=lscc:1.2.0) +peer0.org2.example.com | [608 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org2.example.com | [609 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [60a 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18d53180]Received message TRANSACTION from peer +peer0.org2.example.com | [60b 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [18d53180] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [60c 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [18d53180] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org2.example.com | [60d 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +peer0.org1.example.com | [5fa 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5fb 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5fc 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5fd 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +peer0.org1.example.com | [5fe 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [5ff 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [600 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [601 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [602 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +peer0.org1.example.com | [603 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +peer0.org1.example.com | [604 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [605 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to peer0.org2.example.com:7051 +peer0.org1.example.com | [606 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [607 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to peer1.org2.example.com:7051 +peer0.org1.example.com | [608 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [609 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org1.example.com | [60a 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [60b 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +peer0.org1.example.com | [60c 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [60d 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15720219427768055626, Envelope: 938 bytes, Signature: 0 bytes +peer0.org1.example.com | [60e 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15720219427768055626, Envelope: 938 bytes, Signature: 0 bytes +peer0.org1.example.com | [60f 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 7880972077944551976, Envelope: 941 bytes, Signature: 0 bytes +peer0.org1.example.com | [610 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15720219427768055626, Envelope: 938 bytes, Signature: 0 bytes +peer1.org2.example.com | [6d5 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [6d6 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [6d7 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [6d8 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6d9 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [6da 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [6db 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [6dc 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [6dd 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [6de 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6df 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [6e0 06-12 02:14:28.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6e1 06-12 02:14:28.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [6e2 06-12 02:14:28.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [6e3 06-12 02:14:28.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6e4 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [6e5 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [6e6 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [6e7 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [6e8 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6e9 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [6ea 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [6eb 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [6ec 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [6ed 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [6ee 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [6ef 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [6f0 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [6f1 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [6f2 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [6f3 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [6f4 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [6f5 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [6f6 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [6f7 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [6f8 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > alive: +peer1.org2.example.com | [6f9 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [6fa 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [6fb 06-12 02:14:31.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [6fc 06-12 02:14:31.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [6fd 06-12 02:14:31.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [6fe 06-12 02:14:31.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [6ff 06-12 02:14:31.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [700 06-12 02:14:31.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [701 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [702 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [703 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [704 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [705 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [706 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [707 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [708 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [70a 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [709 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [70c 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [70b 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [70d 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [70e 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [70f 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [710 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [711 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [712 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [713 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [714 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [715 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [716 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [717 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [718 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [719 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [71a 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [71b 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [71c 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [71d 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [71e 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [71f 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [720 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [722 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [721 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [723 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [725 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [724 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [726 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [728 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [727 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [729 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [72b 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [72a 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [72c 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [72d 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [72e 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [72f 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [730 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [731 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [732 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [733 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [734 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [735 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [736 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [737 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [738 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [739 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [73a 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [611 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 146 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 68 67 67 65 98 43 103 65 119 73 66 65 103 73 81 68 55 78 84 87 68 110 51 118 56 117 51 98 83 114 117 51 65 107 65 57 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 83 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 120 86 104 55 77 65 117 65 106 86 121 98 110 114 88 100 97 74 75 81 75 56 75 81 108 49 54 108 113 56 107 70 10 52 67 89 67 83 53 53 104 114 114 77 106 122 121 120 99 117 108 98 52 84 88 118 77 55 75 106 78 81 71 112 97 120 115 50 78 87 85 110 90 114 111 81 78 120 47 107 57 78 79 99 78 118 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 82 119 65 119 82 65 73 103 82 49 121 68 68 120 77 115 10 83 103 48 49 68 73 75 97 108 114 69 102 98 76 112 67 70 99 72 66 83 121 70 113 88 86 49 57 84 110 90 109 71 83 111 67 73 71 83 120 65 75 67 98 106 108 53 114 72 101 106 115 86 83 49 101 117 55 104 53 53 50 98 89 10 50 69 100 70 69 122 87 103 111 82 85 72 113 119 105 57 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer0.org1.example.com | [612 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [613 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 7880972077944551976, Envelope: 941 bytes, Signature: 0 bytes +peer0.org1.example.com | [614 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 7880972077944551976, Envelope: 941 bytes, Signature: 0 bytes +peer0.org1.example.com | [615 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 88 112 117 99 49 88 68 101 115 51 113 78 103 118 98 55 115 105 73 47 73 68 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 53 51 108 56 83 103 113 56 118 110 48 112 72 122 108 103 103 47 85 112 109 85 74 98 48 107 106 56 87 71 68 106 10 83 80 86 114 57 109 99 81 117 69 109 101 99 57 65 53 111 55 90 109 113 53 121 47 112 98 85 52 100 51 84 48 80 52 111 69 80 78 52 65 104 107 54 122 100 80 47 75 108 119 43 119 80 54 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 75 50 72 97 75 52 108 10 88 81 105 117 49 88 120 103 73 106 84 53 56 99 116 111 90 111 84 67 116 53 111 104 74 99 121 113 83 55 78 115 71 114 83 117 65 105 65 53 86 119 47 84 121 75 110 107 80 76 86 115 50 66 49 111 49 74 102 70 105 71 43 83 10 81 104 56 48 97 84 110 65 101 103 83 84 83 113 109 65 49 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer0.org1.example.com | [616 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [617 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [618 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [619 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [61a 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [61b 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [61c 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [61d 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [61e 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [61f 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [620 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [621 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [622 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [623 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [624 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [625 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [626 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [627 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [628 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [629 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\025" signature:"0D\002 ?\010\314\215L\023\312y!\031\2105\365\026}\342\373\213(S\351\204\274!sG\005L\353\335\261\021\002 \016EE\270\327\035\324\034b\366\375)=\351\353\200\204\321\322\3165-\250\240\340/],\362\245w<" secret_envelope: > +peer0.org1.example.com | [62a 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org1.example.com | [62b 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [62c 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44248 +peer0.org1.example.com | [62d 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4225710b0 +peer0.org1.example.com | [62e 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [62f 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [630 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [631 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [632 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [714 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 26 but got ts: inc_num:1528769652088169500 seq_num:24 +peer1.org1.example.com | [715 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [716 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [717 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [718 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [719 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [71a 06-12 02:14:29.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [71b 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [71c 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [71d 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [71e 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [71f 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [720 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [721 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [722 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [723 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 29 but got ts: inc_num:1528769651824440500 seq_num:28 +peer1.org1.example.com | [724 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [725 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [726 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [727 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 26 but got ts: inc_num:1528769652088169500 seq_num:25 +peer1.org1.example.com | [728 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [729 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [72a 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [72b 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [72c 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [72d 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [4d0 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [4d1 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +orderer.example.com | [4d2 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [4d3 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [4d4 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [4d5 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [4d6 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [4d7 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [4d8 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [4d9 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [4da 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [4db 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [4dc 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +orderer.example.com | QKuzs3j8kg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [4dd 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +orderer.example.com | 3BDFnYuSFYhOCexVkA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [4de 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [4df 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [4e0 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [4e1 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [4e2 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [4e3 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +orderer.example.com | [4e4 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [4e5 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [4e6 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [4e7 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [4e8 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +orderer.example.com | CSJWn+U1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [4e9 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [4ea 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [4eb 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [4ec 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [4ed 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [4ee 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [4ef 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [4f0 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [633 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4231a9ae0, header 0xc422571410 +peer0.org1.example.com | [634 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [635 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][bec9b07b] processing txid: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac +peer0.org1.example.com | [636 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +peer0.org1.example.com | [637 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [638 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +peer0.org1.example.com | [639 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][bec9b07b] Entry chaincode: name:"lscc" +peer0.org1.example.com | [63a 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled +peer0.org1.example.com | [63b 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org1.example.com | [63c 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac,syscc=true,proposal=0xc4231a9ae0,canname=lscc:1.2.0) +peer0.org1.example.com | [63d 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [63e 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [63f 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bec9b07b]Received message TRANSACTION from peer +peer0.org1.example.com | [640 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bec9b07b] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [641 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bec9b07b] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [642 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bec9b07b] Sending GET_STATE +peer0.org1.example.com | [643 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [644 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] handling GET_STATE from chaincode +peer0.org1.example.com | [645 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [bec9b07b] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [646 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [647 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [bec9b07b] No state associated with key: peer0.org1.example.com | exp02. Sending RESPONSE with an empty payload -peer0.org1.example.com | [59c 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] Completed GET_STATE. Sending RESPONSE -peer0.org1.example.com | [59d 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a11985]Received message RESPONSE from peer -peer0.org1.example.com | [59e 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82a11985] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [59f 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [82a11985] before send -peer0.org1.example.com | [5a0 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [82a11985] after send -peer0.org1.example.com | [5a1 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [82a11985] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [5a2 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [82a11985] GetState received payload RESPONSE -peer0.org1.example.com | [5a3 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [82a11985] Sending PUT_STATE -peer0.org1.example.com | [5a4 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [472 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [473 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [474 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [475 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [46d 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org2.example.com | [46e 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:60278 disconnected -peer0.org2.example.com | [46f 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer0.org2.example.com | [476 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer0.org2.example.com | [477 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer0.org2.example.com | [479 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer0.org2.example.com | [47a 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org2.example.com | [47b 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [478 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:7208448587798055339 tag:EMPTY mem_req:\233[\010;\344\331\3768\344\301M\036\010\010\177\205" > > , Envelope: 983 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [47c 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -peer0.org2.example.com | [47e 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [47f 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [480 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [481 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [482 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [483 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [484 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [485 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [486 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [487 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [496 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [497 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [498 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [499 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [49a 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [49b 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [49c 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [49d 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [49e 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [49f 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [4a0 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [4a1 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > alive:\207\021~\006x.\270T" secret_envelope: > -peer1.org1.example.com | [4a2 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [4a3 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [4a4 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [4a5 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [4a6 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [4a7 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [4a8 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4a9 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [4aa 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [4ab 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4ac 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [4ad 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4ae 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [4af 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [4b0 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [4b1 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [4b2 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [4b3 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [4b4 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [4b5 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [4b6 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [4b7 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 487 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [4b8 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > alive: alive: -peer1.org1.example.com | [4b9 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 487 bytes, Signature: 0 bytes -peer1.org1.example.com | [4ba 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [4bb 05-31 05:21:44.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to peer0.org1.example.com:7051 -peer1.org1.example.com | [4bc 05-31 05:21:44.52 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [4bd 05-31 05:21:44.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to peer0.org2.example.com:7051 -peer1.org1.example.com | [4be 05-31 05:21:44.52 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [4bf 05-31 05:21:44.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer0.org2.example.com | [488 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [47d 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:7208448587798055339 tag:EMPTY mem_req:\233[\010;\344\331\3768\344\301M\036\010\010\177\205" > > , Envelope: 983 bytes, Signature: 0 bytes -peer0.org2.example.com | [489 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [48a 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer0.org1.example.com:7051, PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] isn't responsive: EOF -peer0.org2.example.com | [48b 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) -peer0.org2.example.com | [48c 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [48d 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182]] -peer0.org2.example.com | [48e 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: , PKI-ID: [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182], Metadata: [] -peer0.org2.example.com | [48f 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/comm] expireDeadMembers.CloseConn.CloseConn -> DEBU Closing connection for , PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [490 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting -peer0.org2.example.com | [491 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [492 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [493 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [494 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [495 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [497 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [496 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:37832 -peer0.org2.example.com | [498 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:37832 -peer0.org2.example.com | [499 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Entering, AliveMessage: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes t: {1527744091618763800 15} -peer0.org2.example.com | [49a 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Exiting -peer0.org2.example.com | [49b 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [49c 05-31 05:21:41.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [49d 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37768 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:11426622408762612881 tag:EMPTY mem_req: > > , Envelope: 283 bytes, Signature: 0 bytes -peer0.org2.example.com | [49e 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [49f 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:11426622408762612881 tag:EMPTY mem_req: > > , Envelope: 283 bytes, Signature: 0 bytes -peer0.org2.example.com | [4a0 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [4a1 05-31 05:21:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [4a2 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [4a3 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [4a4 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [4a5 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [4a6 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [4a7 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [4a8 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [4a9 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [4aa 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 11426622408762612881, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1356 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [5a5 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] handling PUT_STATE from chaincode -peer0.org1.example.com | [5a6 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [5a7 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a11985]Received message RESPONSE from peer -peer0.org1.example.com | [5a8 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82a11985] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [5a9 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [82a11985] before send -peer0.org1.example.com | [5aa 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [82a11985] after send -peer0.org1.example.com | [5ab 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [82a11985] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [5ac 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [82a11985] Received RESPONSE. Successfully updated state -peer0.org1.example.com | [5ad 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -peer0.org1.example.com | [5ae 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a11985] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [5af 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [82a11985] send state message COMPLETED -peer0.org1.example.com | [5b0 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [5b1 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [82a11985] notifying Txid:82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, channelID:businesschannel -peer0.org1.example.com | [5b2 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [5b3 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031,syscc=false,proposal=0xc42218b860,canname=exp02:1.0) -peer0.org1.example.com | [5b4 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched -peer0.org1.example.com | [5b5 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer0.org1.example.com | [5b6 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 -peer0.org1.example.com | [5b7 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -peer0.org1.example.com | [5b8 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +peer0.org1.example.com | [648 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [649 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bec9b07b]Received message RESPONSE from peer +peer0.org1.example.com | [64a 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bec9b07b] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [64b 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [bec9b07b] before send +peer0.org1.example.com | [64c 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [bec9b07b] after send +peer0.org1.example.com | [64d 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bec9b07b] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [64e 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bec9b07b] GetState received payload RESPONSE +peer0.org1.example.com | [64f 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [bec9b07b] Sending PUT_STATE +peer0.org1.example.com | [650 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [651 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] handling PUT_STATE from chaincode +peer0.org1.example.com | [652 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [653 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bec9b07b]Received message RESPONSE from peer +peer0.org2.example.com | [60e 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} +peer0.org2.example.com | [60f 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] +peer0.org2.example.com | [610 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [b6fc5a47-e5e5-4609-8b3c-b5239e81a06c] +peer0.org2.example.com | [611 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [612 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [b6fc5a47-e5e5-4609-8b3c-b5239e81a06c] +peer0.org2.example.com | [613 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. +peer0.org2.example.com | [614 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer +peer0.org2.example.com | [615 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [18d53180] Transaction completed. Sending COMPLETED +peer0.org2.example.com | [616 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [18d53180] send state message COMPLETED +peer0.org2.example.com | [617 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [18d53180] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [618 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [18d53180] notifying Txid:18d53180e337c5a33aa4dbcdd19bcda46f3570623d583df41f0511a879e1b61f, channelID: +peer0.org2.example.com | [619 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [61a 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][18d53180e337c5a33aa4dbcdd19bcda46f3570623d583df41f0511a879e1b61f] Exit +peer0.org2.example.com | [61b 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][18d53180] Exit +peer0.org2.example.com | [61c 06-12 02:14:25.22 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:59426 +peer0.org2.example.com | [61d 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [61e 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [61f 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [620 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [621 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [622 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [623 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [624 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [625 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [626 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [627 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [628 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [629 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [62a 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [62b 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [62c 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [62d 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [62e 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:sB\267\032\021" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\024" signature:"0D\002 \031\356a\3327T\376-\211\n\367d<\264\254\355\355C\313%\201\247\220\346\323\202\360\301[b\215\027\002 jv\211g1\257O\337\007\221\004\241/\037\375\305\360\371\336]&\276\025,\234\224\205y1{\351\335" > alive: alive: +peer0.org2.example.com | [62f 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [630 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [631 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [632 06-12 02:14:25.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to peer1.org1.example.com:7051 +peer0.org2.example.com | [633 06-12 02:14:25.43 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [634 06-12 02:14:25.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 84 bytes, Signature: 0 bytes +peer0.org2.example.com | [635 06-12 02:14:25.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [636 06-12 02:14:25.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 1033537965953393632, Envelope: 1864 bytes, Signature: 0 bytes +peer0.org2.example.com | [637 06-12 02:14:25.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 1033537965953393632, Envelope: 1864 bytes, Signature: 0 bytes +peer0.org1.example.com | [654 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bec9b07b] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [655 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [bec9b07b] before send +peer0.org1.example.com | [656 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [bec9b07b] after send +peer0.org1.example.com | [658 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [bec9b07b] Received RESPONSE. Successfully updated state +peer0.org1.example.com | [659 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified +peer0.org1.example.com | [65a 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bec9b07b] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [65b 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [bec9b07b] send state message COMPLETED +peer0.org1.example.com | [65c 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [65d 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [bec9b07b] notifying Txid:bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, channelID:businesschannel +peer0.org1.example.com | [65e 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [65f 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac,syscc=false,proposal=0xc4231a9ae0,canname=exp02:1.0) +peer0.org1.example.com | [660 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched +peer0.org1.example.com | [661 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer0.org1.example.com | [662 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 +peer0.org1.example.com | [663 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +peer0.org1.example.com | [664 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: 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} @@ -7148,43597 +9302,40210 @@ Attaching to fabric-cli, peer0.org2.example.com, peer0.org1.example.com, peer1.o peer0.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key peer0.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt peer0.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org1.example.com | [5b9 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock -peer0.org1.example.com | [5ba 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock -peer0.org1.example.com | [5bb 05-31 05:21:45.63 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 | [5bc 05-31 05:21:45.63 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 | [5bd 05-31 05:21:45.63 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) -peer0.org1.example.com | [5be 05-31 05:21:45.63 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) -peer0.org1.example.com | [5bf 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 -peer0.org1.example.com | [5c0 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer0.org1.example.com | [5c1 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -peer0.org1.example.com | [5c2 05-31 05:21:45.64 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 | [5c3 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org1.example.com | [665 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock +peer0.org1.example.com | [666 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock +peer0.org1.example.com | [667 06-12 02:14:26.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 | [657 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bec9b07b] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [668 06-12 02:14:26.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 | [669 06-12 02:14:26.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) +peer0.org1.example.com | [66a 06-12 02:14:26.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) +peer0.org1.example.com | [66b 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 +peer0.org1.example.com | [66c 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +peer0.org1.example.com | [66d 06-12 02:14:26.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.org1.example.com | [66e 06-12 02:14:26.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 +peer0.org1.example.com | [66f 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU peer0.org1.example.com | FROM hyperledger/fabric-baseos:amd64-0.4.8 peer0.org1.example.com | ADD binpackage.tar /usr/local/bin -peer1.org2.example.com | [638 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [639 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [63a 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [63b 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [4c0 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes -peer1.org1.example.com | [4c1 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [4c2 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [4c3 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 11909805601141499385, Envelope: 1861 bytes, Signature: 0 bytes -peer1.org1.example.com | [4c4 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 11909805601141499385, Envelope: 1861 bytes, Signature: 0 bytes -peer1.org1.example.com | [4c5 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 11909805601141499385, Envelope: 1861 bytes, Signature: 0 bytes -peer1.org1.example.com | [4c6 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 3998466826467416341, Envelope: 941 bytes, Signature: 0 bytes -peer1.org1.example.com | [4c7 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 146 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 68 67 67 65 98 43 103 65 119 73 66 65 103 73 81 68 55 78 84 87 68 110 51 118 56 117 51 98 83 114 117 51 65 107 65 57 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 83 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 120 86 104 55 77 65 117 65 106 86 121 98 110 114 88 100 97 74 75 81 75 56 75 81 108 49 54 108 113 56 107 70 10 52 67 89 67 83 53 53 104 114 114 77 106 122 121 120 99 117 108 98 52 84 88 118 77 55 75 106 78 81 71 112 97 120 115 50 78 87 85 110 90 114 111 81 78 120 47 107 57 78 79 99 78 118 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 82 119 65 119 82 65 73 103 82 49 121 68 68 120 77 115 10 83 103 48 49 68 73 75 97 108 114 69 102 98 76 112 67 70 99 72 66 83 121 70 113 88 86 49 57 84 110 90 109 71 83 111 67 73 71 83 120 65 75 67 98 106 108 53 114 72 101 106 115 86 83 49 101 117 55 104 53 53 50 98 89 10 50 69 100 70 69 122 87 103 111 82 85 72 113 119 105 57 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer1.org1.example.com | [4c8 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 88 112 117 99 49 88 68 101 115 51 113 78 103 118 98 55 115 105 73 47 73 68 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 53 51 108 56 83 103 113 56 118 110 48 112 72 122 108 103 103 47 85 112 109 85 74 98 48 107 106 56 87 71 68 106 10 83 80 86 114 57 109 99 81 117 69 109 101 99 57 65 53 111 55 90 109 113 53 121 47 112 98 85 52 100 51 84 48 80 52 111 69 80 78 52 65 104 107 54 122 100 80 47 75 108 119 43 119 80 54 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 75 50 72 97 75 52 108 10 88 81 105 117 49 88 120 103 73 106 84 53 56 99 116 111 90 111 84 67 116 53 111 104 74 99 121 113 83 55 78 115 71 114 83 117 65 105 65 53 86 119 47 84 121 75 110 107 80 76 86 115 50 66 49 111 49 74 102 70 105 71 43 83 10 81 104 56 48 97 84 110 65 101 103 83 84 83 113 109 65 49 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer1.org1.example.com | [4c9 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4ca 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 3998466826467416341, Envelope: 941 bytes, Signature: 0 bytes -peer1.org1.example.com | [4cb 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 3998466826467416341, Envelope: 941 bytes, Signature: 0 bytes -peer1.org1.example.com | [4cc 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 84 68 78 89 119 109 47 116 81 73 53 102 82 68 79 109 111 115 48 103 82 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 90 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 90 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 120 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 90 73 84 86 87 54 99 48 115 120 47 115 121 102 101 112 106 75 72 56 110 71 104 114 68 120 55 56 85 75 101 74 10 74 54 50 103 70 108 107 121 48 65 75 55 53 69 74 74 110 47 81 101 68 71 99 82 71 118 120 108 74 47 111 105 47 88 55 67 70 53 109 113 74 65 101 108 88 116 72 119 54 109 117 51 109 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 101 67 98 122 68 48 99 81 102 43 118 51 10 105 114 48 85 53 53 52 97 103 114 116 75 88 54 50 107 84 120 79 77 52 83 68 98 107 55 69 67 77 48 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 78 106 119 113 110 104 121 10 122 97 56 117 112 88 116 110 111 52 87 47 116 111 118 80 75 122 113 47 83 104 68 82 68 114 101 56 65 67 52 87 83 77 109 48 65 105 66 109 112 67 87 115 81 90 106 78 106 100 76 47 75 78 114 48 109 113 109 106 100 120 98 88 10 102 118 53 89 83 57 47 121 115 100 56 106 121 52 97 43 112 103 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer1.org1.example.com | [4cd 05-31 05:21:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4ce 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -peer1.org1.example.com | [4cf 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -peer1.org1.example.com | [4d0 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -peer1.org1.example.com | [4d1 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4d2 05-31 05:21:44.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [4d3 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [4d4 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [4d5 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [4d6 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4d7 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [4d8 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4d9 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4da 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [4db 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4dc 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4dd 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4de 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [4df 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]}, deadMembers={[]} -peer1.org1.example.com | [4e0 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4e1 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -peer1.org1.example.com | [4e2 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [4e3 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [4e4 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [4e5 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [4e6 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4e7 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [4e8 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4e9 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [4ea 05-31 05:21:45.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4eb 05-31 05:21:45.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4ec 05-31 05:21:45.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [4ed 05-31 05:21:45.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4ee 05-31 05:21:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [4f0 05-31 05:21:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [4ef 05-31 05:21:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:7051 -peer1.org1.example.com | [4f1 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:7051 -peer1.org1.example.com | [4f2 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:7051 -peer1.org1.example.com | [4f3 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer1.org1.example.com | [4f4 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [4f5 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [4f6 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [4f7 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [4f8 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration -peer1.org1.example.com | [4f9 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [4fa 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [4fb 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [4fc 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [4fd 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [4fe 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [2f0 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [2f1 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [2f2 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [2f3 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [2f4 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [2f5 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:41270 because channel businesschannel not found -orderer.example.com | [2f6 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [2f8 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [2f9 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [2fb 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.7:41272, hangup -orderer.example.com | [2fc 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [2fa 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [2fd 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [2fe 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [2ff 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [300 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [301 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [302 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [303 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [304 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [305 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [306 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [307 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [2f7 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41270 -orderer.example.com | [308 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [30a 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [30b 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [30c 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [30d 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [30e 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [30f 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [4ab 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer0.org2.example.com | [4ac 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 11426622408762612881, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1356 bytes, Signature: 0 bytes -peer0.org2.example.com | [4ad 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [4ae 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:37832 -peer0.org2.example.com | [4af 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:37832 -peer0.org2.example.com | [4b0 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org2.example.com | [4b1 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:37768 disconnected -peer0.org2.example.com | [4b2 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [4b3 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing -peer0.org2.example.com | [4b4 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org2.example.com | [4b5 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:37832 disconnected -peer0.org2.example.com | [4b6 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [4b8 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [4b9 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [4b7 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [4ba 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [4bb 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [4bc 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:60286 -peer0.org2.example.com | [4bd 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:60286 peer0.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ peer0.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ peer0.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ peer0.org1.example.com | org.hyperledger.fabric.version="1.2.0" \ peer0.org1.example.com | org.hyperledger.fabric.base.version="0.4.8" peer0.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.2.0 -peer0.org1.example.com | [5c4 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer0.org1.example.com | [5c5 05-31 05:21:45.65 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental -peer0.org1.example.com | [5c6 05-31 05:21:45.65 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 -peer0.org1.example.com | [5c7 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5c8 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5c9 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [5ca 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [5cb 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5cc 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5cd 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [5ce 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [5cf 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [5d0 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [5d1 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [5d2 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [5d3 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [5d4 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [5d5 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [5d6 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [5d7 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5d8 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [5d9 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5da 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [5db 05-31 05:21:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5dc 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [5dd 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [5de 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5df 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [4be 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:60286 -peer0.org2.example.com | [4bf 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:60286 -orderer.example.com | [309 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41270 -peer1.org1.example.com | [4ff 05-31 05:21:46.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [500 05-31 05:21:46.53 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org1.example.com | [501 05-31 05:21:46.53 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [503 05-31 05:21:46.54 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [504 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [505 05-31 05:21:46.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [502 05-31 05:21:46.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [506 05-31 05:21:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [507 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [508 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [4c0 05-31 05:21:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60286 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [4c1 05-31 05:21:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [63c 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [63d 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [310 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [4c2 05-31 05:21:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [5e0 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [5e1 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true -peer1.org2.example.com | [63e 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [63f 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [509 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5e2 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer1.org2.example.com | [640 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [641 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [312 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [311 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.7:41270, hangup -orderer.example.com | [314 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org2.example.com | [4c3 05-31 05:21:41.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [50a 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [313 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [4c4 05-31 05:21:41.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [642 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [643 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -orderer.example.com | [315 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [644 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [5e3 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [4c5 05-31 05:21:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 -orderer.example.com | [316 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [50b 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [50c 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [5e4 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [50d 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5e5 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [645 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [317 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [4c6 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org1.example.com | [50e 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5e6 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [646 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [4c7 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -orderer.example.com | [318 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [50f 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [5e7 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [647 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [4c8 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -orderer.example.com | [319 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [510 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5e8 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [648 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [4c9 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [31a 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [511 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [5e9 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [64a 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [4ca 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -orderer.example.com | [31b 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [512 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [5ea 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org2.example.com | [64b 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [4cb 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:60286 disconnected -orderer.example.com | [31c 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [513 05-31 05:21:46.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [5eb 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [64c 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\026" signature:"0D\002 `@VlN\272sS\357\tN\021\244\201\027\323N=iG_\003\267\tM\215]\026\247\030\247?\002 cA\361\375&\005\245\227Qh\327\250\270\337AI\340\234\266\217\340\250vgf\305\220=J:\307\356" > alive: alive:>$1M\350\203>6v\004\002 G\360%$\037\322\020\\&K\261BE&\032\264\021:\266j\344\365\331C\331\020\321\220 \3746T" > -peer0.org2.example.com | [4cc 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -orderer.example.com | [31d 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [514 05-31 05:21:46.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [5ec 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [5ed 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [4cd 05-31 05:21:41.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:7051 -orderer.example.com | [31e 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [515 05-31 05:21:46.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [5ee 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer1.org2.example.com | [64d 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [64e 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [31f 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [320 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [321 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [649 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [322 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [323 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [324 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [325 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [326 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [327 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [4ce 05-31 05:21:41.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:7051 -orderer.example.com | [328 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [5ef 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true -peer1.org2.example.com | [64f 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [516 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [329 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [4cf 05-31 05:21:41.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:7051 -peer0.org1.example.com | [5f0 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.stopBeingLeader -> INFO [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] Stopped being a leader -peer1.org1.example.com | [517 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [650 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [32a 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [4d0 05-31 05:21:41.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [5f1 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -peer1.org1.example.com | [518 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [651 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [32b 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [4d1 05-31 05:21:41.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [5f3 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -peer1.org1.example.com | [519 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [652 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [653 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [654 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [655 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [32c 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [32d 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [32e 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [32f 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [330 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [331 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [332 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [4d2 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [51a 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [656 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -orderer.example.com | [333 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [4d3 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org1.example.com | [51b 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [657 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [5f4 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -orderer.example.com | [334 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [4d4 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [51c 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [658 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [5f5 05-31 05:21:45.97 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 -orderer.example.com | [335 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [4d5 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [51d 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [659 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [5f6 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: client is closing -orderer.example.com | [336 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org2.example.com | [4d7 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [51e 05-31 05:21:46.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [65a 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org1.example.com | [5f7 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -orderer.example.com | [337 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [4d8 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [51f 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [65b 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [338 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [4d6 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [520 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [65c 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -orderer.example.com | [339 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org1.example.com | [5f8 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -peer0.org2.example.com | [4d9 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [65d 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [521 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [33a 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer0.org1.example.com | [5f2 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -peer0.org2.example.com | [4da 05-31 05:21:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [65e 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [522 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [33b 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org1.example.com | [5f9 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers -peer0.org2.example.com | [4db 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [4dc 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:7051 -peer1.org1.example.com | [523 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [33c 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [5fb 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] 1.Yield.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org2.example.com | [4dd 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org2.example.com | [65f 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [524 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [33d 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [5fa 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org2.example.com | [4de 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org2.example.com | [660 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [525 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [33e 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [4df 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [5fc 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer1.org2.example.com | [661 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [526 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -orderer.example.com | [33f 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer0.org2.example.com | [4e0 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [5fd 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer1.org2.example.com | [662 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [528 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [340 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [4e1 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:60296 -peer0.org1.example.com | [5fe 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [663 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [527 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [341 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer1.org1.example.com | [52a 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [5ff 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [664 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -orderer.example.com | [342 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer1.org1.example.com | [52b 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [4e2 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [600 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [665 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -orderer.example.com | [343 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [344 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [52c 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [52d 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [601 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [345 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -peer1.org1.example.com | [529 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [4e3 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [602 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [666 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [346 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org1.example.com | [52e 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [4e4 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [603 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [667 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | [347 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -peer1.org1.example.com | [52f 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [4e5 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [604 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [668 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [348 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -orderer.example.com | [349 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -peer0.org2.example.com | [4e6 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [669 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | [34a 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -peer1.org1.example.com | [531 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [4e7 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [605 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [66a 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [34b 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -peer1.org1.example.com | [530 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [4e8 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [606 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [34c 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -peer1.org2.example.com | [66b 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [532 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [4e9 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [607 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [34d 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -peer1.org2.example.com | [66c 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [533 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [4ea 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [608 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [34e 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -peer1.org2.example.com | [66d 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [534 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | [34f 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -peer1.org2.example.com | [66e 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [66f 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [609 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [4eb 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [535 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [350 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -peer1.org2.example.com | [670 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [60a 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [60b 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [60c 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | [351 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4200cd600)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -orderer.example.com | [352 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [354 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41274 -orderer.example.com | [355 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41274 -orderer.example.com | [353 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -orderer.example.com | [356 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xc2, 0x1e, 0x64, 0xf2, 0xd9, 0x85, 0xf0, 0xf7, 0x6d, 0x68, 0x53, 0xa1, 0x96, 0x61, 0x4a, 0xbd, 0xd0, 0xa2, 0x78, 0x7b, 0x4d, 0xb0, 0x42, 0x49, 0x2a, 0xcc, 0x56, 0x48, 0xa7, 0x2, 0x5, 0x73} txOffsets= -orderer.example.com | txId= locPointer=offset=38, bytesLength=12077 -orderer.example.com | ] -orderer.example.com | [357 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12120], isChainEmpty=[false], lastBlockNumber=[0] -orderer.example.com | [358 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -orderer.example.com | [359 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [35a 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12120], Going to peek [8] bytes -orderer.example.com | [35b 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12118], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [35c 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -orderer.example.com | [35d 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) -orderer.example.com | [35e 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -orderer.example.com | [35f 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -orderer.example.com | [360 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [361 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [362 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...451727845D479F95EFE94B3FCB14D4B0 -orderer.example.com | [363 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: FA3A9968A18D8F7DC2B50C9A3B50BDAF52CD4EB023A38BE0AA4BD2236F005150 -orderer.example.com | [364 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [365 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -orderer.example.com | [366 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [367 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...451727845D479F95EFE94B3FCB14D4B0 -orderer.example.com | [368 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C512BBF6255CC56F61E34113706FB2675913CAE808D4B29AB9190C88F61657DD -orderer.example.com | [369 05-31 05:21:34.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xe3, 0x1b, 0x73, 0x64, 0x77, 0x2, 0x7e, 0x4e, 0x23, 0x22, 0x4d, 0x4f, 0x1a, 0xf8, 0xe7, 0xd9, 0x44, 0x48, 0x98, 0x3c, 0xb2, 0x1a, 0x7b, 0x9b, 0xc0, 0x7d, 0x81, 0xbb, 0xb8, 0x55, 0xf9, 0xc1} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=12999 -peer1.org1.example.com | [536 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | ] -peer0.org1.example.com | [60d 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [537 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [671 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [4ec 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | [36a 05-31 05:21:34.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24012], isChainEmpty=[false], lastBlockNumber=[1] -peer0.org1.example.com | [60e 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [538 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [672 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [36b 05-31 05:21:34.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -peer0.org1.example.com | [60f 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [673 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [539 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [36c 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org2.example.com | [4ed 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [610 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [674 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [53a 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [36d 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org2.example.com | [4ee 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [611 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [675 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > alive: alive: alive:|\303\376\010\227o\215_y\002 \032~\271\335\203^\032\000\226H\3510\027\346\215u\3477\027/\336\261\302\357H\302k\014\253\322\346\224" > -peer1.org1.example.com | [53b 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [36e 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer0.org2.example.com | [4ef 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [612 05-31 05:21:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [676 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [53c 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [4f0 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [36f 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [613 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [677 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [53d 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [4f1 05-31 05:21:41.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [370 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer1.org2.example.com | [678 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to peer0.org2.example.com:7051 -peer0.org1.example.com | [615 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [53e 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [4f2 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | [371 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org2.example.com | [679 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [67a 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org1.example.com | [616 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [4f3 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | [372 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org2.example.com | [67b 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [614 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [53f 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [4f4 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -peer1.org2.example.com | [67c 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15697673386330066216, Envelope: 941 bytes, Signature: 0 bytes -peer0.org1.example.com | [617 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [540 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [4f5 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org2.example.com | [67d 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15697673386330066216, Envelope: 941 bytes, Signature: 0 bytes -peer0.org1.example.com | [618 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [541 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [4f6 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -peer0.org1.example.com | [61a 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [67e 05-31 05:21:47.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 106 67 67 65 99 67 103 65 119 73 66 65 103 73 82 65 79 51 85 114 78 82 115 80 53 106 75 77 75 47 120 84 74 43 54 106 108 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 103 119 77 84 77 119 77 68 99 48 77 68 73 50 87 104 99 78 77 106 103 119 77 84 73 52 77 68 99 48 77 68 73 50 10 87 106 66 98 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 102 77 66 48 71 65 49 85 69 65 120 77 87 99 71 86 108 99 106 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 10 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 78 73 116 103 106 85 116 105 107 55 88 99 114 47 84 115 56 118 114 108 70 85 82 85 67 78 111 83 55 114 99 10 50 72 118 107 106 67 53 100 72 56 69 55 70 88 97 117 70 119 76 101 81 106 65 82 65 112 80 56 85 70 52 79 112 116 70 82 87 120 120 70 104 48 66 71 109 76 72 101 86 43 113 57 111 120 54 106 84 84 66 76 77 65 52 71 10 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 72 103 68 65 77 66 103 78 86 72 82 77 66 65 102 56 69 65 106 65 65 77 67 115 71 65 49 85 100 73 119 81 107 77 67 75 65 73 72 103 109 56 119 57 72 69 72 47 114 10 57 52 113 57 70 79 101 101 71 111 75 55 83 108 43 116 112 69 56 84 106 79 69 103 50 53 79 120 65 106 78 72 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 100 50 81 72 76 10 112 75 80 79 118 116 87 106 88 69 66 111 55 104 72 51 108 66 117 51 120 97 76 78 66 107 75 112 52 66 115 72 56 97 115 86 57 119 73 103 85 110 82 89 43 47 53 70 114 66 49 52 84 83 49 43 67 56 79 55 115 113 49 120 10 70 105 47 75 52 86 85 107 99 114 116 50 47 74 72 76 101 50 77 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer1.org1.example.com | [542 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [4f7 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -peer0.org1.example.com | [61b 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [619 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [61c 05-31 05:21:46.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [373 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8530 gate 1527744094475361000 evaluation starts -orderer.example.com | [374 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8530 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [375 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8530 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [61d 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | [376 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8530 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [377 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8530 principal evaluation fails -peer1.org1.example.com | [543 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [67f 05-31 05:21:47.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [544 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | [378 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8530 gate 1527744094475361000 evaluation fails -orderer.example.com | [379 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [37a 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [37b 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [37c 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [37d 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [37e 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer1.org1.example.com | [545 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | [37f 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org2.example.com | [680 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [546 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [61e 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [4f8 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -orderer.example.com | [380 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -peer1.org2.example.com | [681 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [547 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [61f 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [4f9 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [381 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8540 gate 1527744094477400400 evaluation starts -peer1.org2.example.com | [682 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org2.example.com | [4fa 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -orderer.example.com | [382 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8540 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [683 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [548 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [620 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [4fb 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -orderer.example.com | [383 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8540 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [684 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org1.example.com | [549 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [621 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [4fc 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [384 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -peer1.org2.example.com | [685 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [686 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [687 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [688 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [689 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [4fd 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -orderer.example.com | [385 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [54a 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -orderer.example.com | [386 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8540 principal matched by identity 0 -orderer.example.com | [387 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 eb 77 d7 c8 78 d4 65 39 a9 0c bd 25 b8 08 13 bf |.w..x.e9...%....| -orderer.example.com | 00000010 af 80 e8 fc 7a 9e 68 26 b0 79 fd a0 bc 63 81 a9 |....z.h&.y...c..| -peer1.org2.example.com | [68a 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [68b 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [4fe 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [54b 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [388 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 74 6d 8b f4 15 e3 9e b6 d9 63 9f 0a |0D. tm.......c..| -peer1.org2.example.com | [68c 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [622 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [4ff 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [54c 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | 00000010 b7 2c 41 1c 6b 0c 97 e7 27 29 bd c5 a7 5a f7 ac |.,A.k...')...Z..| -peer1.org2.example.com | [68d 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [500 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [54d 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | 00000020 da 78 e8 9a 02 20 2e 96 a5 b4 19 03 62 04 de d2 |.x... ......b...| -peer1.org2.example.com | [68e 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [68f 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [690 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -orderer.example.com | 00000030 fb e7 fa 60 29 7a 8f db 38 4d fa 16 d8 41 e3 35 |...`)z..8M...A.5| -orderer.example.com | 00000040 e3 71 ee 59 de a9 |.q.Y..| -orderer.example.com | [389 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8540 principal evaluation succeeds for identity 0 -orderer.example.com | [38a 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8540 gate 1527744094477400400 evaluation succeeds -orderer.example.com | [38b 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [38c 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [623 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [38d 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -peer0.org2.example.com | [501 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [502 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [38e 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer0.org1.example.com | [624 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [54e 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [691 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [38f 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer0.org1.example.com | [625 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [503 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [54f 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [390 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer0.org1.example.com | [626 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [391 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42056a420) start: > stop: > from 172.18.0.7:41274 -peer1.org2.example.com | [692 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" secret_envelope: > alive: > -peer1.org2.example.com | [693 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [694 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [695 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -orderer.example.com | [392 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -orderer.example.com | [393 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [394 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12120], Going to peek [8] bytes -orderer.example.com | [395 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12118], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [396 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -orderer.example.com | [397 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056a420) for 172.18.0.7:41274 -orderer.example.com | [398 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41274 for (0xc42056a420) -orderer.example.com | [399 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41274 -peer1.org2.example.com | [696 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [39a 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41274 -peer1.org2.example.com | [697 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [550 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [504 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [627 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [39b 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41274: rpc error: code = Canceled desc = context canceled -peer0.org1.example.com | [628 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [39c 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org1.example.com | [629 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [698 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [39d 05-31 05:21:36.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [39e 05-31 05:21:36.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41284 -peer1.org1.example.com | [551 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [62a 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [62b 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [699 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org1.example.com | [552 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [505 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [62c 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [39f 05-31 05:21:36.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41284 -peer1.org2.example.com | [69a 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [69b 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [69c 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [554 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -orderer.example.com | [3a0 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -peer1.org2.example.com | [69d 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [555 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [506 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\356\363R\205\330" secret_envelope:\025\377\t0\315l\255\002 5\254P\352\304\tj\225\347\346,%\312\243$\337\313T\313\216\013\013\314\206\331\220\030qF\322\016K" > > -peer0.org2.example.com | [507 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -orderer.example.com | [3a1 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41286 -peer0.org1.example.com | [62d 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [553 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\025" signature:"0E\002!\000\356\303\203(\036?\243\026u\321}\242\265a\306\272\243\370Az\000\266\236\\\341z~n\220k\352\277\002 W\232\024\327\211\227b@\367\204>\356\332\3129\313\235l\355\21512\232$\030a\024e\032\312@F" > alive: alive: alive: -peer0.org2.example.com | [508 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [3a2 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:41286 -peer0.org1.example.com | [62e 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [69e 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [556 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [509 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [3a3 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -orderer.example.com | [3a4 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -peer1.org2.example.com | [69f 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [557 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [3a5 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [3a6 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -peer1.org2.example.com | [6a0 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [6a1 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -orderer.example.com | [3a7 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [62f 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [558 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [3a8 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [3a9 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c0 gate 1527744096142860100 evaluation starts -orderer.example.com | [3aa 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [559 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [3ab 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [3ac 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -peer0.org2.example.com | [50a 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [3ad 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 principal evaluation fails -peer0.org1.example.com | [630 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [631 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [6a2 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [6a3 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [3ae 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c0 gate 1527744096142860100 evaluation fails -peer0.org1.example.com | [632 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [633 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [634 05-31 05:21:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [3af 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [55a 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [3b0 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [3b1 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -peer1.org2.example.com | [6a4 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [55b 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [3b2 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [3b3 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [3b4 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [3b5 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [3b6 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [3b7 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c8 gate 1527744096144467000 evaluation starts -orderer.example.com | [3b8 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [3b9 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [3ba 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 principal matched by identity 0 -orderer.example.com | [3bb 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 01 1e 8f 0d fa fe 82 96 38 62 b2 4b 8c 08 01 65 |........8b.K...e| -peer1.org1.example.com | [55c 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | 00000010 0c 16 ab 1b 04 e5 fe cd 53 e5 ac b8 f7 b7 53 c3 |........S.....S.| -peer0.org2.example.com | [50b 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [50c 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [50d 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [50e 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [3bc 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b8 04 e0 a3 3f 0e cd cd a7 8a 84 |0E.!.....?......| -peer1.org2.example.com | [6a5 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | 00000010 1b 4f 16 10 b2 c7 11 52 23 fa d0 98 27 45 32 fb |.O.....R#...'E2.| -peer1.org1.example.com | [55d 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [635 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | 00000020 3b 8c c1 ba 42 02 20 6c fb 28 55 87 d3 4f 83 6e |;...B. l.(U..O.n| -peer0.org2.example.com | [50f 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers -peer1.org1.example.com | [55e 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [55f 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [560 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [510 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [561 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [562 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [563 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [564 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [511 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [512 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [513 05-31 05:21:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [514 05-31 05:21:43.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [565 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [566 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [567 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [568 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [515 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [516 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer1.org1.example.com | [569 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [56a 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [56c 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [517 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [518 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 2 peers -peer1.org2.example.com | [6a6 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -orderer.example.com | 00000030 fb 0b 34 b6 fa 92 59 22 67 57 60 1b 92 b0 ed 7c |..4...Y"gW`....|| -peer0.org2.example.com | [519 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [51a 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [6a8 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | 00000040 ec 64 98 4d 3d 8f 6b |.d.M=.k| -peer0.org2.example.com | [51b 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [51c 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [6a7 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [56b 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [56d 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [56e 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [56f 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [51d 05-31 05:21:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.4:42736, reason: Timed out waiting for connection message from 172.18.0.4:42736 -peer0.org2.example.com | [51e 05-31 05:21:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> ERRO Authentication failed: Timed out waiting for connection message from 172.18.0.4:42736 -peer0.org2.example.com | [51f 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [520 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [636 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [3bd 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [521 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [570 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [637 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [638 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [639 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [63a 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [522 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [523 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [524 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [571 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [525 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [6a9 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [6ab 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [572 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [63b 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [526 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [6aa 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [573 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [527 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 551 bytes, Signature: 0 bytes -peer1.org2.example.com | [6ae 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [6af 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [6ad 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [6b0 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [6b1 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [6b2 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [6b3 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [6b4 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [6b5 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [6b6 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [6b7 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -orderer.example.com | [3be 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c8 gate 1527744096144467000 evaluation succeeds -orderer.example.com | [3bf 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [3c0 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [3c1 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [3c2 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [3c3 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [3c4 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [3c5 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [3c6 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [3c7 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [3c8 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [3c9 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [3ca 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [3cb 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [3cc 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [3cd 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [3ce 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [3cf 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [3d0 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [3d1 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [3d2 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [3d3 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [3d4 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [3d5 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -orderer.example.com | [3d6 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -orderer.example.com | [3d7 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [3d8 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [3d9 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [3da 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [3db 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [3dc 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [3dd 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -orderer.example.com | [3de 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [3df 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [3e0 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -orderer.example.com | [3e1 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -orderer.example.com | [3e2 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1527744096153696100 evaluation starts -peer0.org1.example.com | [63c 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [63d 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [63e 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [63f 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [640 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [641 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [642 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [643 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [644 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [645 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [646 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [647 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [648 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [649 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:A\005Y\017\314\327\372\333\324w1uK\352\331\206Zm\206<\260" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\026" signature:"0D\002 `@VlN\272sS\357\tN\021\244\201\027\323N=iG_\003\267\tM\215]\026\247\030\247?\002 cA\361\375&\005\245\227Qh\327\250\270\337AI\340\234\266\217\340\250vgf\305\220=J:\307\356" > -peer0.org1.example.com | [64b 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [64c 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [64d 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [64e 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [64f 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [650 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [64a 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [651 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [655 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [656 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [652 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [653 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [654 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [658 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [657 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [659 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [65a 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [65b 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [65c 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [65f 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [65d 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [660 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [661 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [662 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [663 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [664 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [65e 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [665 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [666 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [667 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [668 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [669 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [66a 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [66b 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [66c 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [66d 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [66e 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [66f 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [670 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [671 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer0.org1.example.com | [672 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer0.org1.example.com | [673 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [3e3 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [3e4 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [3e5 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [3e6 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal matched by identity 0 -orderer.example.com | [3e7 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 4a 24 81 2d 63 ca 0a 97 7f d9 99 19 2e 65 39 9a |J$.-c........e9.| -orderer.example.com | 00000010 d5 dd 12 69 2c 06 87 c6 4b d6 e6 68 3e 75 61 e3 |...i,...K..h>ua.| -orderer.example.com | [3e8 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f3 f6 5c 67 87 4e 9a 12 11 e2 86 |0E.!...\g.N.....| -orderer.example.com | 00000010 dd 1d 9e 51 f5 88 5e 31 e1 1c 0b 07 77 7e 78 89 |...Q..^1....w~x.| -orderer.example.com | 00000020 dc 23 a2 67 24 02 20 41 e7 7a 86 a9 f1 1a 60 da |.#.g$. A.z....`.| -orderer.example.com | 00000030 2e fe 84 bb 69 12 01 98 6c 6c 83 69 92 a3 d4 4d |....i...ll.i...M| -orderer.example.com | 00000040 72 2b ed 87 eb 02 4b |r+....K| -orderer.example.com | [3e9 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal evaluation succeeds for identity 0 -orderer.example.com | [3ea 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1527744096153696100 evaluation succeeds -orderer.example.com | [3eb 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [3ec 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [3ed 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [3ee 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [3ef 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [3f0 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [6b8 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [6b9 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [6ba 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6bb 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6bc 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [6bd 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6be 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6bf 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [6c0 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6c1 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6c2 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [6c3 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [6c5 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [6c6 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [6c7 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [6c8 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [6c9 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [6ca 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6cb 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [6ac 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [6c4 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [6cd 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [6d0 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6cc 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [3f1 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [3f2 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [3f3 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [3f4 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [3f5 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [3f6 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [3f7 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [3f8 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [3f9 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [3fa 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [3fb 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [3fc 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [3fd 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [3fe 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [3ff 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [400 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [401 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [402 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [403 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [528 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [52a 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [52b 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [52c 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [529 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer0.org2.example.com | [52d 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 3 peers -peer0.org2.example.com | [52e 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [52f 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [530 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [531 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [532 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -peer0.org2.example.com | [533 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [534 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [535 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [536 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [537 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [538 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer0.org2.example.com | [539 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [53a 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [53b 05-31 05:21:43.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [53c 05-31 05:21:43.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [574 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [575 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [576 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [577 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [578 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [579 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [57a 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [57b 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [57c 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [57d 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [57e 05-31 05:21:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [57f 05-31 05:21:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [581 05-31 05:21:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [582 05-31 05:21:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [583 05-31 05:21:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [580 05-31 05:21:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [584 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [585 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [587 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [588 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [586 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [589 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer1.org1.example.com | [58a 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [58b 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [58c 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [58d 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [58e 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [58f 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [590 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [591 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer1.org1.example.com | [592 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [593 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [594 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [595 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [596 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [597 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [598 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [599 05-31 05:21:47.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [59a 05-31 05:21:47.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [59b 05-31 05:21:47.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [59c 05-31 05:21:47.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [59d 05-31 05:21:47.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [59e 05-31 05:21:47.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [59f 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [5a0 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [5a3 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [5a1 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [5a2 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [5a4 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [5a5 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\037.\366\300" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [5a6 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\037.\366\300" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [5a7 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [5a8 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [5a9 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [5aa 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [5ab 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [5ac 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [5ad 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [5ae 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [5af 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [53d 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [53e 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [53f 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [540 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [541 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [542 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [543 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [544 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [545 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [546 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [547 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [548 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [549 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [54a 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [54b 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [54c 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [54d 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [54e 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [54f 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\017" signature:"0E\002!\000\205(aE\327\2208\321K\031\214\177\303\200\035{\370T#[|\032#\003\350N\335x\215]\357\300\002 C\2762]\005\312\202\246\301BF\265\014\000\034@\255\224\024C\025\271e@\273{\326t\010\272k\237" > alive: alive: -peer0.org2.example.com | [550 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [675 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [674 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [676 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [677 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [679 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 551 bytes, Signature: 0 bytes -peer0.org1.example.com | [678 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [67a 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [67b 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [67c 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org1.example.com | [67d 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org1.example.com | [67e 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [67f 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [680 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [681 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [682 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [683 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [684 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [685 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [686 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [687 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [688 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [689 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [68a 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [68b 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\037.\366\300" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [68c 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [68d 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\037.\366\300" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [68e 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [68f 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [690 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [691 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [692 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [693 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [694 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [695 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [696 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [697 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [698 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [69a 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [69b 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [699 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\037.\366\300" > > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\027" signature:"0E\002!\000\311Q\005\311\324Y\031\300\024\017b\\\271&\211j\366\231\n\322\275\276\034\351/\t\"\263.\273U\332\002 P\327o!>\030\350]\306\375\265C\251\371Z\305\257\323<\004P\312-\264\363\272\225K\300Wb\037" secret_envelope: > -peer0.org1.example.com | [69c 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [69d 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [69e 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [69f 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [6a0 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [6a1 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [6a2 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [6a3 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [6a4 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [6a5 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [6a6 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [6a7 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [6a8 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [6a9 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [6aa 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6ab 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [6ac 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [6ad 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6ae 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -peer0.org1.example.com | [6af 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -peer0.org1.example.com | [6b0 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -peer0.org1.example.com | [6b1 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6b2 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [6b3 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [6b4 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6b5 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [551 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [552 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [553 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [554 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [555 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [556 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [557 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [558 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [559 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [55a 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [55b 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [55c 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [55d 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [55e 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [55f 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [560 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [561 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [562 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [563 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [564 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [565 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [566 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [567 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [568 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [569 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [56a 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [56b 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [56c 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [56d 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [56e 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > alive: alive: alive: -peer0.org2.example.com | [56f 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [570 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [571 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -peer0.org2.example.com | [572 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -peer0.org2.example.com | [573 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [574 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49076 -peer0.org2.example.com | [575 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4239700c0 -peer0.org2.example.com | [576 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [577 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [578 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org2.example.com | [579 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [57a 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [57b 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423885400, header 0xc423970420 -peer0.org2.example.com | [57c 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer1.org2.example.com | [6ce 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6cf 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [6d1 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [6d2 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [6d3 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [6d4 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [6d5 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [6d6 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [6d7 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [6d8 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [6d9 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6da 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [6db 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [6dc 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [6dd 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [6de 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [6df 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [6e0 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [6e1 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6e2 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [6e3 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org2.example.com | [6e4 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [6e5 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org2.example.com | [6e6 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6e7 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [6e8 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 31 but got ts: inc_num:1527744091840124700 seq_num:30 -peer1.org2.example.com | [6e9 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6ea 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6eb 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [6ec 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 26 but got ts: inc_num:1527744091508552400 seq_num:24 -peer1.org2.example.com | [6ed 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6ee 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6ef 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [6f0 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6f1 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6f2 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [6f3 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [6f4 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [6f5 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [6f6 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [6f7 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [6f8 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [6f9 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [6fa 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [6fb 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [6fc 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [6fd 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [6fe 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [6ff 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [700 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [701 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [702 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [703 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org2.example.com | [57d 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][bb4257ae] processing txid: bb4257ae5edd1de35a5c5a8508f8133b12f3f041b5e944e1d49a69edda09866b -peer0.org2.example.com | [57e 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][bb4257ae] Entry chaincode: name:"lscc" -peer0.org2.example.com | [57f 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled -peer0.org2.example.com | [580 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][bb4257ae5edd1de35a5c5a8508f8133b12f3f041b5e944e1d49a69edda09866b] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org2.example.com | [581 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=bb4257ae5edd1de35a5c5a8508f8133b12f3f041b5e944e1d49a69edda09866b,syscc=true,proposal=0xc423885400,canname=lscc:1.2.0) -peer0.org2.example.com | [582 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org2.example.com | [583 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [584 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4257ae]Received message TRANSACTION from peer -peer0.org2.example.com | [585 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bb4257ae] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [586 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bb4257ae] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org2.example.com | [587 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -peer0.org2.example.com | [588 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} -peer0.org2.example.com | [589 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] -peer0.org2.example.com | [58a 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [96e95fe4-001a-444d-91a7-97a0160bf573] -peer0.org2.example.com | [58b 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [58c 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [96e95fe4-001a-444d-91a7-97a0160bf573] -peer0.org2.example.com | [58d 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. -peer0.org2.example.com | [58e 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer -peer0.org2.example.com | [58f 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bb4257ae] Transaction completed. Sending COMPLETED -peer0.org2.example.com | [590 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [bb4257ae] send state message COMPLETED -peer0.org2.example.com | [591 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bb4257ae] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [592 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [bb4257ae] notifying Txid:bb4257ae5edd1de35a5c5a8508f8133b12f3f041b5e944e1d49a69edda09866b, channelID: -peer0.org2.example.com | [593 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [594 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][bb4257ae5edd1de35a5c5a8508f8133b12f3f041b5e944e1d49a69edda09866b] Exit -peer0.org2.example.com | [595 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][bb4257ae] Exit -peer0.org2.example.com | [596 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49076 -peer0.org2.example.com | [597 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [598 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [599 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [59a 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [59b 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [59c 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [59d 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [59e 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5a0 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [5a1 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5a2 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [5a3 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [5a4 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [5a5 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [5a6 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5a7 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [5a8 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5a9 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [59f 05-31 05:21:43.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [5aa 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5ab 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5ac 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 118 bytes, Signature: 0 bytes -peer0.org2.example.com | [5ad 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 118 bytes, Signature: 0 bytes -peer0.org2.example.com | [5ae 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 118 bytes, Signature: 0 bytes -peer0.org2.example.com | [5af 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [5b0 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [5b1 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [5b2 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [5b3 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 487 bytes, Signature: 0 bytes -peer0.org2.example.com | [5b4 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [5b5 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 487 bytes, Signature: 0 bytes -peer0.org2.example.com | [5b6 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5b7 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [5b8 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [5b9 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [5ba 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [5bb 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [5bc 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [5bd 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [5be 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [5bf 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [5c0 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [5c1 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [5c2 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [5c3 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [5c4 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [5c5 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [5c6 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer0.org2.example.com | [5c7 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [6b6 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [6b7 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [6b8 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [6b9 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [6ba 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [6bb 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [6bc 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [6bd 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [6be 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [6bf 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6c0 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [6c1 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6c2 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [6c3 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6c4 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6c5 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [6c6 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6c7 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6c8 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6c9 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [6ca 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6cb 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [6ce 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [6cc 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [6cd 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [6cf 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [6d0 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [6d1 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [6d2 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [6d3 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [6d4 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6d5 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [6d6 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6d7 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [6d8 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [6d9 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6da 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [6db 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6dc 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6dd 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [6de 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [6df 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [6e0 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [6e1 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [6e2 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [6e3 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [6e4 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6e5 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [6e6 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6e7 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [6e8 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6e9 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [6ea 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6eb 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6ec 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [6ed 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [6ee 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 24 but got ts: inc_num:1527744091508552400 seq_num:23 -peer0.org1.example.com | [6ef 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6f0 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [6f1 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [6f2 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [6f3 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [6f4 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [6f5 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [6f6 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [6f7 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [6f8 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [6f9 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [6fa 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [6fb 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [6fc 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6fd 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [6fe 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [6ff 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [700 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [701 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [702 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [703 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [704 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [705 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [706 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [707 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [708 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [709 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [70a 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [70b 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:|\303\376\010\227o\215_y\002 \032~\271\335\203^\032\000\226H\3510\027\346\215u\3477\027/\336\261\302\357H\302k\014\253\322\346\224" > alive:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > alive:P\365\247\373\005fEI\333\215\365\211\2453\274\350\003_" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\031" signature:"0E\002!\000\275=\374\370\216M\331\311\026\223\033p\t\3010\232tg\231\275\373\221\265\276d\315(\367J\331\013\273\002 \017\356\243\272L\311\321\331\274\002F\261\224O\254c,\364:Y\311o\346f\305\206q\242\364\020\345\271" > -peer0.org1.example.com | [70c 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [70d 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [70e 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [70f 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [704 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [705 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [706 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [707 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [708 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [709 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [70a 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [70b 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [70c 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [70d 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [70e 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [70f 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [710 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [711 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [712 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [713 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [714 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [715 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [716 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [717 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [718 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [719 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [71a 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [71b 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -orderer.example.com | [404 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [405 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [406 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [407 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [408 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [409 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [40a 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [40b 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [40c 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [40d 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -orderer.example.com | [40e 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [40f 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [410 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [411 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [412 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [413 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -peer1.org1.example.com | [5b1 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [5b2 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -peer1.org1.example.com | [5b3 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [5b0 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [5b5 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [5b4 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [5b6 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [5b7 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [5b8 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [5b9 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -peer1.org1.example.com | [5ba 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -peer1.org1.example.com | [5bb 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [5bc 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [5bd 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [5be 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [5bf 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [5c0 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [5c1 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [5c2 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [5c3 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [5c4 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [5c5 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [5c6 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [5c7 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [5c8 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [5ca 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [5c9 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [5cb 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [5cc 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [5ce 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [5cd 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [5cf 05-31 05:21:47.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [5d0 05-31 05:21:47.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [5d1 05-31 05:21:47.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [5d2 05-31 05:21:47.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [5d3 05-31 05:21:47.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [5d4 05-31 05:21:47.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [5d5 05-31 05:21:47.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [5d7 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [5d8 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [5d6 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [5d9 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [5da 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [5db 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 26 but got ts: inc_num:1527744090808810100 seq_num:25 -peer1.org1.example.com | [5dc 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [5dd 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [5de 05-31 05:21:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [5df 05-31 05:21:47.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [5e0 05-31 05:21:47.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [5e1 05-31 05:21:47.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [5e2 05-31 05:21:47.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [5e3 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [5e4 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [5e5 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [5e6 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [5e7 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [5e8 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [5e9 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [5eb 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [5ea 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [5ec 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [5ed 05-31 05:21:47.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [5ee 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [5ef 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [5f0 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [5f1 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [5f2 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [5f3 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [5f4 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [414 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [415 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [416 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [417 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [418 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [419 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [41a 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [41b 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [41c 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [41d 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [41e 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [41f 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [420 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -peer1.org1.example.com | [5f5 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [5f6 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [5f7 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [5f8 05-31 05:21:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [5f9 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [5fa 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [5fb 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [5fc 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [5fd 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [5fe 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [5ff 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [600 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [601 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [602 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [603 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [604 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [605 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [606 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [607 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [608 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [609 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [60a 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [60b 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [60c 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [60d 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [60e 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [60f 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [610 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > alive:P\365\247\373\005fEI\333\215\365\211\2453\274\350\003_" secret_envelope: > -peer1.org1.example.com | [611 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [612 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [613 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [614 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [615 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [616 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [617 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [618 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [619 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [61a 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [61b 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [710 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [711 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [712 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [71c 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [71d 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\032" signature:"0D\002 .\004g'\026+\275\202\200!\0135\225\345_-\377\177\002\337I\361|8\265,,%\200\016\203\344\002 \013\374\302l\243M\007\233\330\355D\361\247UK\030\274\304}\314\307\n\tl \273\006\270,p\262 " > alive: alive: -peer1.org2.example.com | [71e 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [71f 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [720 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [721 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [722 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [723 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [724 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [725 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [726 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [727 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [728 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [729 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [72a 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [72b 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [72c 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [72d 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [72e 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [72f 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [730 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [421 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [422 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [423 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [424 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [425 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [426 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [427 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [428 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [429 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [42a 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [42b 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [42c 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [42d 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [42e 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [42f 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -peer1.org2.example.com | [731 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [732 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [733 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [734 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [735 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [736 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [737 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [738 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [739 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [73a 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [73b 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [73c 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [73d 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [73e 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [73f 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [740 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [741 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [742 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [743 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [744 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [745 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [746 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [747 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [748 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [749 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [74a 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [74b 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [74c 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [74d 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [74e 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [74f 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [750 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [751 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [752 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [753 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [754 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [755 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [756 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [757 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [758 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [759 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [75a 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [75b 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [75c 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [75d 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [75e 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [75f 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [760 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [761 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [762 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [764 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [765 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [763 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:~\0347W_DA\221\262*\260\2316\270H\311\265\300\024z\225\300\315\233\302ew\3174F\026\002 T\317\216\314\204\274;\332\276\351\321\020$\300\375\215\000/\021\355\223\275\014\004\267[\225w\310\231\355\224" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > alive: -peer0.org2.example.com | [5c8 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer1.org1.example.com | [61c 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [713 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [430 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer1.org2.example.com | [766 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [767 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [5c9 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer0.org1.example.com | [714 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [431 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -peer1.org2.example.com | [768 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [5ca 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [61d 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [715 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [769 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [61e 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [716 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [76a 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5cb 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [61f 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [432 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org1.example.com | [717 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [76b 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [76c 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [5cc 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [433 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -peer1.org1.example.com | [620 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [718 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [76d 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [5cd 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -orderer.example.com | [434 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -peer1.org1.example.com | [621 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [719 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [76e 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [5ce 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [435 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -peer1.org1.example.com | [622 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [71a 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [76f 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [5cf 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [436 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -peer1.org1.example.com | [623 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [71b 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [770 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [5d0 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -orderer.example.com | [437 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -peer1.org1.example.com | [625 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [71c 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [771 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [5d1 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [438 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -peer1.org1.example.com | [624 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [71d 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [772 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [5d2 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [439 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -peer1.org1.example.com | [626 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [71e 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [773 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [5d3 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -orderer.example.com | [43a 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -peer1.org1.example.com | [627 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > alive:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > alive:>$1M\350\203>6v\004\002 G\360%$\037\322\020\\&K\261BE&\032\264\021:\266j\344\365\331C\331\020\321\220 \3746T" > alive: -peer0.org1.example.com | [720 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org2.example.com | [774 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [5d4 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [43b 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -peer1.org1.example.com | [628 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [721 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [775 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5d5 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [43c 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -peer1.org1.example.com | [629 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [722 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > alive:P\365\247\373\005fEI\333\215\365\211\2453\274\350\003_" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\032" signature:"0D\002 .\004g'\026+\275\202\200!\0135\225\345_-\377\177\002\337I\361|8\265,,%\200\016\203\344\002 \013\374\302l\243M\007\233\330\355D\361\247UK\030\274\304}\314\307\n\tl \273\006\270,p\262 " > -peer1.org2.example.com | [776 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5d6 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [43d 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -peer1.org1.example.com | [62a 05-31 05:21:50.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [723 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org2.example.com | [777 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5d7 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [43e 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [43f 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [440 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -peer0.org1.example.com | [724 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [778 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5d8 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [441 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -peer1.org1.example.com | [62b 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [725 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5d9 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [442 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -peer1.org2.example.com | [779 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [62c 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [726 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5da 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [62d 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [727 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [5db 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [77a 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [62e 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [443 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -peer0.org1.example.com | [71f 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [5dc 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 20 but got ts: inc_num:1527744091508552400 seq_num:19 -peer1.org2.example.com | [77c 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [62f 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [444 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -peer0.org1.example.com | [728 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5dd 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [77d 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [630 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [445 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -peer0.org1.example.com | [72a 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5de 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [77b 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [631 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [446 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [72b 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [5df 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [77e 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [632 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [72c 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [729 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [5e0 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [77f 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [633 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [72e 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [447 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [780 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [5e1 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [72f 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [634 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [448 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [781 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5e2 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [72d 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [635 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -orderer.example.com | [449 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [782 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [783 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [730 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [636 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [44a 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [784 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [5e3 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [731 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [637 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [44b 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [785 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [786 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [5e4 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [638 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [639 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [787 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [5e5 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [732 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [63a 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [44c 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [788 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [5e6 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [733 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [63b 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [44d 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [44e 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [44f 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [5e7 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [734 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [63c 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -orderer.example.com | [450 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [5e8 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [789 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [735 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [63d 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [451 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [5ea 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [78a 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [737 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [63e 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > alive:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > alive: alive: -orderer.example.com | [452 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [5e9 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [78b 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [736 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [63f 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -orderer.example.com | [453 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [5eb 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [78c 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [739 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [640 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [454 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [5ec 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [78d 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [73a 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [641 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [455 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [5ed 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [78e 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [73b 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [642 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [456 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [5ee 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [78f 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [73c 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [643 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [457 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [5ef 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [790 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [644 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [458 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [738 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5f0 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [791 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [645 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [459 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [73e 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [5f1 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [646 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [792 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -orderer.example.com | [45a 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [73d 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5f2 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [647 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [793 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [45b 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [73f 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5f3 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [794 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [648 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [740 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [5f4 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -orderer.example.com | [45c 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [795 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [649 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [741 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [5f5 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [45d 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [796 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [64a 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [742 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [5f6 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [45e 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org2.example.com | [797 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [64b 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [743 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [5f7 05-31 05:21:43.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [45f 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [798 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [64c 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [744 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [5f8 05-31 05:21:43.90 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.6:60296, reason: Timed out waiting for connection message from 172.18.0.6:60296 -orderer.example.com | [460 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [799 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [64d 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [745 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [5f9 05-31 05:21:43.90 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> ERRO Authentication failed: Timed out waiting for connection message from 172.18.0.6:60296 -orderer.example.com | [461 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [79a 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:+\203\216\350\321\247\013O\257\363u\026" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [64e 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [746 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5fa 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes -orderer.example.com | [462 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [79b 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [64f 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [747 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5fb 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes -orderer.example.com | [463 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [79c 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:+\203\216\350\321\247\013O\257\363u\026" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [650 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [748 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [5fc 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [464 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [79d 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [651 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [749 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [5fd 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 2 IDENTITY_MSG items to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -orderer.example.com | [465 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [79e 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [652 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [74a 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [5fe 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to peer1.org2.example.com:7051 -orderer.example.com | [466 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [79f 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [653 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [74b 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [5ff 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [467 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [7a0 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [654 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [74c 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [74d 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -orderer.example.com | [468 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [7a1 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [655 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [74e 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [600 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to peer1.org1.example.com:7051 -orderer.example.com | [469 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [7a2 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [656 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [750 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [601 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [46a 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [46b 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [46c 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [46d 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [46e 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [46f 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [470 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org2.example.com | [603 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -peer0.org2.example.com | [602 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [7a3 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [657 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [74f 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -orderer.example.com | [471 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [604 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [7a4 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [658 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [751 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [472 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [605 05-31 05:21:44.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [7a6 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [659 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [752 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -orderer.example.com | [473 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org2.example.com | [607 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 4456294022568290422, Envelope: 941 bytes, Signature: 0 bytes -peer1.org2.example.com | [7a5 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [65a 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [753 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [474 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org2.example.com | [606 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 16920412610630659099, Envelope: 941 bytes, Signature: 0 bytes -peer1.org1.example.com | [65b 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [7a7 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [754 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [475 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer0.org2.example.com | [608 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 16920412610630659099, Envelope: 941 bytes, Signature: 0 bytes -peer1.org1.example.com | [65c 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [7a8 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [755 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [476 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [609 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 106 67 67 65 99 67 103 65 119 73 66 65 103 73 82 65 79 51 85 114 78 82 115 80 53 106 75 77 75 47 120 84 74 43 54 106 108 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 103 119 77 84 77 119 77 68 99 48 77 68 73 50 87 104 99 78 77 106 103 119 77 84 73 52 77 68 99 48 77 68 73 50 10 87 106 66 98 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 102 77 66 48 71 65 49 85 69 65 120 77 87 99 71 86 108 99 106 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 10 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 78 73 116 103 106 85 116 105 107 55 88 99 114 47 84 115 56 118 114 108 70 85 82 85 67 78 111 83 55 114 99 10 50 72 118 107 106 67 53 100 72 56 69 55 70 88 97 117 70 119 76 101 81 106 65 82 65 112 80 56 85 70 52 79 112 116 70 82 87 120 120 70 104 48 66 71 109 76 72 101 86 43 113 57 111 120 54 106 84 84 66 76 77 65 52 71 10 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 72 103 68 65 77 66 103 78 86 72 82 77 66 65 102 56 69 65 106 65 65 77 67 115 71 65 49 85 100 73 119 81 107 77 67 75 65 73 72 103 109 56 119 57 72 69 72 47 114 10 57 52 113 57 70 79 101 101 71 111 75 55 83 108 43 116 112 69 56 84 106 79 69 103 50 53 79 120 65 106 78 72 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 100 50 81 72 76 10 112 75 80 79 118 116 87 106 88 69 66 111 55 104 72 51 108 66 117 51 120 97 76 78 66 107 75 112 52 66 115 72 56 97 115 86 57 119 73 103 85 110 82 89 43 47 53 70 114 66 49 52 84 83 49 43 67 56 79 55 115 113 49 120 10 70 105 47 75 52 86 85 107 99 114 116 50 47 74 72 76 101 50 77 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer0.org2.example.com | [60a 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7a9 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [756 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [477 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [60b 05-31 05:21:44.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 4456294022568290422, Envelope: 941 bytes, Signature: 0 bytes -peer1.org1.example.com | [65d 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [7ab 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [757 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [478 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [60c 05-31 05:21:45.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 4456294022568290422, Envelope: 941 bytes, Signature: 0 bytes -peer1.org1.example.com | [65e 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7aa 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [479 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -peer1.org1.example.com | [65f 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [60d 05-31 05:21:45.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 84 68 78 89 119 109 47 116 81 73 53 102 82 68 79 109 111 115 48 103 82 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 90 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 90 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 120 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 90 73 84 86 87 54 99 48 115 120 47 115 121 102 101 112 106 75 72 56 110 71 104 114 68 120 55 56 85 75 101 74 10 74 54 50 103 70 108 107 121 48 65 75 55 53 69 74 74 110 47 81 101 68 71 99 82 71 118 120 108 74 47 111 105 47 88 55 67 70 53 109 113 74 65 101 108 88 116 72 119 54 109 117 51 109 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 101 67 98 122 68 48 99 81 102 43 118 51 10 105 114 48 85 53 53 52 97 103 114 116 75 88 54 50 107 84 120 79 77 52 83 68 98 107 55 69 67 77 48 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 78 106 119 113 110 104 121 10 122 97 56 117 112 88 116 110 111 52 87 47 116 111 118 80 75 122 113 47 83 104 68 82 68 114 101 56 65 67 52 87 83 77 109 48 65 105 66 109 112 67 87 115 81 90 106 78 106 100 76 47 75 78 114 48 109 113 109 106 100 120 98 88 10 102 118 53 89 83 57 47 121 115 100 56 106 121 52 97 43 112 103 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -peer1.org2.example.com | [7ac 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:+\203\216\350\321\247\013O\257\363u\026" > > alive:T4>X\002 RxBgV\035\350\023\205\334\313#\267\373\371>\211\225]\324\305\237h\200\204\276\223\233Y\202\3543" secret_envelope:\243\037\215ye\274^)\255(\313\203\230d\325(\032X:V7J\337\022\233\356\3163\002 9<\030\242\232t\201\204\260\313\034\325\341\275\256\261\304\221\372`k\275\331\235\316&\260\326\201\023\032\364" > > -peer0.org1.example.com | [758 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -orderer.example.com | [47a 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -peer1.org1.example.com | [660 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [60e 05-31 05:21:45.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7ad 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [759 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [75a 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer1.org1.example.com | [661 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [60f 05-31 05:21:45.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7ae 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -orderer.example.com | [47b 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -peer0.org1.example.com | [75b 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org2.example.com | [610 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [662 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [7af 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [47c 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -peer0.org1.example.com | [75c 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [75d 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [611 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [663 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7b0 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [47d 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -peer0.org1.example.com | [75e 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [612 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [664 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [7b1 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [47e 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [75f 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [613 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [665 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [7b2 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [47f 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -peer0.org1.example.com | [760 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [614 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [666 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [7b3 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [480 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org1.example.com | [761 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [615 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [667 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [7b4 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [481 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [616 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [762 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [617 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [763 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [668 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7b5 05-31 05:21:54.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -orderer.example.com | [482 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [619 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [764 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [669 05-31 05:21:50.96 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org2.example.com | [7b6 05-31 05:21:54.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [483 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608E08CBED80522...226757601B92B0ED7CEC64984D3D8F6B -peer0.org2.example.com | [61a 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [765 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [66a 05-31 05:21:50.96 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org2.example.com | [7b7 05-31 05:21:54.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -orderer.example.com | [484 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 112E0AE12518905B30FDBE4DDAA837E7C509916293FE2D5C1A763AC6FCD544F9 -peer0.org2.example.com | [61b 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [766 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [767 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [768 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [618 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [769 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [66b 05-31 05:21:50.96 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org2.example.com | [7b8 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [61c 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [76a 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | [485 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [486 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org2.example.com | [7ba 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [61d 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [76b 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [487 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -peer1.org1.example.com | [66c 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [7b9 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [61e 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [76c 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | [488 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org1.example.com | [66d 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org2.example.com | [7bb 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [61f 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [76d 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -orderer.example.com | [489 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [48a 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -peer1.org1.example.com | [66e 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [66f 05-31 05:21:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [620 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [76e 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [48b 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [670 05-31 05:21:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [7bc 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [621 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [76f 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [671 05-31 05:21:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [7be 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [622 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [770 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [672 05-31 05:21:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [7bd 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [623 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [771 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [673 05-31 05:21:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [7bf 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [624 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [772 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE -peer1.org1.example.com | [674 05-31 05:21:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [7c1 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [625 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [773 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [675 05-31 05:21:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [7c2 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [626 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [774 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -peer1.org1.example.com | [676 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [628 05-31 05:21:45.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO -peer1.org1.example.com | [677 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [7c3 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [775 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [629 05-31 05:21:45.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o -orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR -peer1.org2.example.com | [7c4 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [777 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [627 05-31 05:21:45.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -peer1.org1.example.com | [678 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [7c5 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [776 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\033" signature:"0D\002 z\267\212\n\266?\3440\320:\273\342\374\330\301*[\265h\221\177O\367\355\244L[D\022\237ON\002 \024T\304\362\317];\263\260fK\253\226\261\035\267Es\373\033)\370g~\303\310sTOQ\312y" secret_envelope: > -peer0.org2.example.com | [62b 05-31 05:21:45.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [778 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [679 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [7c6 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [62c 05-31 05:21:45.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [779 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [48c 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8d8 gate 1527744096181049000 evaluation starts -peer1.org1.example.com | [67a 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7c0 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [62a 05-31 05:21:45.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [77a 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | [48d 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8d8 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [67b 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [7c7 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [62d 05-31 05:21:45.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [77b 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [67c 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7c8 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [62e 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [48e 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8d8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [77c 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [7c9 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [62f 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [48f 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer0.org1.example.com | [77d 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [67d 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [7ca 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [630 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [631 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [632 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [633 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [634 05-31 05:21:46.38 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [635 05-31 05:21:46.38 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -orderer.example.com | [490 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org2.example.com | [636 05-31 05:21:46.38 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -orderer.example.com | [491 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8d8 principal matched by identity 0 -peer0.org1.example.com | [77e 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [67e 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7cb 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [637 05-31 05:21:46.38 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | [492 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 11 2e 0a e1 25 18 90 5b 30 fd be 4d da a8 37 e7 |....%..[0..M..7.| -peer0.org1.example.com | [77f 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [638 05-31 05:21:46.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [67f 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -orderer.example.com | 00000010 c5 09 91 62 93 fe 2d 5c 1a 76 3a c6 fc d5 44 f9 |...b..-\.v:...D.| -peer0.org1.example.com | [780 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [639 05-31 05:21:46.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [63a 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [680 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [781 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [7cc 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [63b 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [681 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -orderer.example.com | [493 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 38 d1 59 e6 1a 79 c9 83 5e 65 d2 d9 |0D. 8.Y..y..^e..| -peer0.org1.example.com | [782 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [7cd 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [63c 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [682 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | 00000010 b3 af b8 db 8a 08 d3 07 f2 5f 7b 66 d3 83 8b e1 |........._{f....| -peer0.org1.example.com | [783 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [7ce 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [63d 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [683 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | 00000020 34 1a b9 61 02 20 22 b3 46 68 3a f1 a7 bd 94 db |4..a. ".Fh:.....| -peer0.org1.example.com | [784 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [7cf 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [63e 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [684 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | 00000030 d9 da 47 30 80 97 6a fe 50 3d 87 e2 c8 57 6d dd |..G0..j.P=...Wm.| -peer0.org1.example.com | [785 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [7d0 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [63f 05-31 05:21:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [685 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | 00000040 77 65 cf bc c4 bc |we....| -orderer.example.com | [494 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8d8 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [641 05-31 05:21:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7d1 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [686 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [495 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8d8 gate 1527744096181049000 evaluation succeeds -peer0.org1.example.com | [786 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [642 05-31 05:21:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [7d2 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [687 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [787 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | [496 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [640 05-31 05:21:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7d3 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [688 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [789 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [497 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -peer0.org2.example.com | [643 05-31 05:21:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [7d5 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [689 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [78a 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [498 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -peer0.org2.example.com | [644 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [7d6 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [68a 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org1.example.com | [788 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [499 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -peer0.org2.example.com | [645 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [7d7 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [7d8 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [68b 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [49a 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -peer0.org2.example.com | [646 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [7d9 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [68c 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [78b 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [49b 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -peer0.org2.example.com | [647 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [7da 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [68d 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [68e 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [78c 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [648 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [7db 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [68f 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [78d 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [49c 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:41286 -peer0.org2.example.com | [649 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [7dc 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [690 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [78e 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | [49d 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [64a 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [7dd 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [7de 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [691 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [78f 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [49e 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [64b 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [64c 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [7df 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -orderer.example.com | [49f 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [64d 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7e0 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [692 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [790 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [4a0 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [64e 05-31 05:21:46.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7e1 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [693 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [791 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [4a1 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [64f 05-31 05:21:46.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [7e2 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [694 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [792 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [4a2 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [650 05-31 05:21:46.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7d4 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [695 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [793 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | [4a3 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [651 05-31 05:21:46.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7e3 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [696 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [794 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [4a4 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [652 05-31 05:21:46.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [7e4 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [697 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [795 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [4a5 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [653 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [7e5 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [698 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [796 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [4a6 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [654 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [7e6 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [699 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [797 05-31 05:21:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -orderer.example.com | [4a7 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [655 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7e7 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [69a 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [798 05-31 05:21:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [4a8 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [656 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [7e8 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [69b 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [799 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -orderer.example.com | [4a9 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [657 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7e9 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 36 but got ts: inc_num:1527744091840124700 seq_num:35 -peer1.org1.example.com | [69c 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [79a 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [4aa 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [658 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [7ea 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [69d 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [79b 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -orderer.example.com | [4ab 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [659 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7eb 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [79c 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [4ac 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [65a 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [7ec 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [69e 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [79d 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [4ad 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -peer0.org2.example.com | [65b 05-31 05:21:46.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7ed 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [69f 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [79f 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | [4ae 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -peer0.org2.example.com | [65c 05-31 05:21:46.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [7ee 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [6a0 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [7a0 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [4af 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -peer0.org2.example.com | [65d 05-31 05:21:46.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7ef 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [6a1 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [7a1 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [4b0 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -peer0.org2.example.com | [65e 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7f0 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [6a3 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [79e 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | [4b1 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -peer0.org2.example.com | [65f 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7f1 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [6a2 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [7a2 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [660 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [4b2 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer0.org2.example.com | [661 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7f2 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6a4 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [7a3 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -orderer.example.com | [4b3 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org2.example.com | [662 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7f3 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6a6 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [7a5 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -orderer.example.com | [4b4 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -peer0.org2.example.com | [663 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [7f4 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [6a7 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [7a6 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [4b5 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -peer0.org2.example.com | [664 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [7f5 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6a5 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [7a4 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [4b6 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org2.example.com | [665 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [7f6 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [7f7 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [7a7 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [4b7 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -orderer.example.com | [4b8 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -peer0.org2.example.com | [666 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [6a9 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [7a9 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [7aa 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [7f8 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [6aa 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [6a8 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [7ab 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [4b9 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8908 gate 1527744096187254000 evaluation starts -peer1.org2.example.com | [7f9 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [6ab 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [667 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [7ac 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [4ba 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8908 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [7fa 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [6ac 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [668 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [7ad 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [4bb 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8908 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [7fb 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [6ad 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [669 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [7a8 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [4bc 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8908 principal matched by identity 0 -peer1.org2.example.com | [7fc 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [6ae 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [66a 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [7ae 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [4bd 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 4a 24 81 2d 63 ca 0a 97 7f d9 99 19 2e 65 39 9a |J$.-c........e9.| -peer1.org2.example.com | [7fd 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [6af 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [66b 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [7af 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [7b0 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" secret_envelope:\242\034\250\365\3529\361\232+\335)\305|\377\036\002 %\007\313%/\021`\314\304\340\343\365\223;\342{h\364S\317%\027Oj\266\024)\260\333\335{n" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | 00000010 d5 dd 12 69 2c 06 87 c6 4b d6 e6 68 3e 75 61 e3 |...i,...K..h>ua.| -orderer.example.com | [4be 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f3 f6 5c 67 87 4e 9a 12 11 e2 86 |0E.!...\g.N.....| -peer1.org2.example.com | [7fe 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [66c 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [7b1 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | 00000010 dd 1d 9e 51 f5 88 5e 31 e1 1c 0b 07 77 7e 78 89 |...Q..^1....w~x.| -peer1.org2.example.com | [7ff 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [6b0 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [66d 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [7b2 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 271 bytes, Signature: 0 bytes -orderer.example.com | 00000020 dc 23 a2 67 24 02 20 41 e7 7a 86 a9 f1 1a 60 da |.#.g$. A.z....`.| -peer1.org2.example.com | [800 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [6b1 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [66e 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [7b4 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | 00000030 2e fe 84 bb 69 12 01 98 6c 6c 83 69 92 a3 d4 4d |....i...ll.i...M| -peer1.org2.example.com | [801 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6b3 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [66f 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | 00000040 72 2b ed 87 eb 02 4b |r+....K| -peer0.org1.example.com | [7b3 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [803 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [6b4 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [671 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [4bf 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8908 principal evaluation succeeds for identity 0 -peer0.org1.example.com | [7b6 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [802 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [6b5 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [673 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [4c0 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8908 gate 1527744096187254000 evaluation succeeds -peer0.org1.example.com | [7b5 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [804 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 36 but got ts: inc_num:1527744091840124700 seq_num:35 -peer1.org1.example.com | [6b2 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [672 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | [4c1 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [7b8 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [805 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6b6 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [674 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [4c2 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [7b7 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [806 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6b7 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [675 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [4c3 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [7b9 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [807 05-31 05:21:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [6b8 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [670 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [4c4 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7ba 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [808 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6b9 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [676 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [4c5 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [7bc 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [809 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6ba 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [677 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [4c6 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7bd 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [80a 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [6bb 05-31 05:21:51.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [678 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [4c7 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7be 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [80b 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [6bc 05-31 05:21:51.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [679 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [4c8 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [7bf 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [80c 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [6bd 05-31 05:21:51.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer0.org2.example.com | [67a 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [4c9 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [7c0 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [80d 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [6be 05-31 05:21:51.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [67b 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [4ca 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [7c1 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [80e 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [6bf 05-31 05:21:51.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [67c 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [4cb 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [7c2 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [80f 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [6c1 05-31 05:21:51.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [67d 05-31 05:21:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [7c3 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [810 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [67e 05-31 05:21:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [6c0 05-31 05:21:51.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [7c4 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [4cc 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [811 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [67f 05-31 05:21:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [6c4 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [7c5 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [4cd 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [812 05-31 05:21:54.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [680 05-31 05:21:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [6c5 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [7c6 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [4ce 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [813 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [681 05-31 05:21:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [682 05-31 05:21:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [683 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [684 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [685 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [686 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [687 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [688 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\313\367\036\242\217\342\301\255q_A\213b\307\002 \030\201\247\374\t\024\007\022\2638\235[\207*\\\374t\222\375\314\305\304C'V\300!D]O?\235" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [689 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\313\367\036\242\217\342\301\255q_A\213b\307\002 \030\201\247\374\t\024\007\022\2638\235[\207*\\\374t\222\375\314\305\304C'V\300!D]O?\235" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [68a 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [68b 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\313\367\036\242\217\342\301\255q_A\213b\307\002 \030\201\247\374\t\024\007\022\2638\235[\207*\\\374t\222\375\314\305\304C'V\300!D]O?\235" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [68c 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [68d 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [68e 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [68f 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [690 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [691 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [692 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [693 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [814 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [815 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [816 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [817 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [818 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [819 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [81a 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [81b 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [81c 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [81d 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [81e 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [81f 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [820 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [821 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [822 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [823 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [824 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [825 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [826 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [827 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [828 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [829 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [82a 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [82b 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [82c 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [82d 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [82e 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [82f 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\037" signature:"0E\002!\000\374\226A\261\227\263%\375^\216tZiX\335\232\023{\205\367\260b\r\324\025!\375W5fR\317\002 E\212\263\242\254}\310!\366\375\205\361\3514fz\335+\357F\022\220\20622\002\22614\304\315$" > alive:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > alive: -peer1.org1.example.com | [6c3 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6c6 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [6c7 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6c8 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [6c2 05-31 05:21:51.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [6c9 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [6ca 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [6cb 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [6cc 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [6cd 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [6ce 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [6cf 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6d0 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [6d1 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [6d2 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [6d3 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [6d4 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [6d5 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6d6 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [6d7 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [6d8 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [6d9 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [7bb 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [7c7 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [7c8 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [7c9 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [7ca 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [694 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [695 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [696 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [697 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\313\367\036\242\217\342\301\255q_A\213b\307\002 \030\201\247\374\t\024\007\022\2638\235[\207*\\\374t\222\375\314\305\304C'V\300!D]O?\235" > > alive: > -peer0.org2.example.com | [698 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [699 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [69a 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [69b 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer0.org2.example.com | [69c 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [69e 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [69d 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [69f 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [6a0 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6a1 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [6a2 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6a3 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6a4 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6a5 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6a6 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6a7 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6a8 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6a9 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [6aa 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [4cf 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [4d0 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [4d1 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [4d2 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [4d3 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [4d4 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [4d5 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [4d6 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [4d7 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [4d8 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [4db 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [4dc 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [4d9 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41284: rpc error: code = Canceled desc = context canceled -orderer.example.com | [4de 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [4dd 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [4df 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [4e0 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [4e1 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [4da 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41286: rpc error: code = Canceled desc = context canceled -orderer.example.com | [4e3 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [4e2 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [4e4 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [4e5 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [4e6 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [4e7 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [4e8 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -peer1.org2.example.com | [830 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [831 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [832 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [833 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [837 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [834 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [838 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [835 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [836 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [839 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [83a 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [83b 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [83c 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [83d 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [83e 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [83f 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [840 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [841 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [842 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [843 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [844 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [845 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [846 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [847 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org2.example.com | [848 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org2.example.com | [849 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [84a 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [84b 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [84c 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [84d 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [84e 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [84f 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [850 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [851 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [852 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [853 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [854 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [855 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [856 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [857 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [858 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [859 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [85a 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > alive:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > alive: -peer1.org2.example.com | [85b 05-31 05:21:55.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [85c 05-31 05:21:55.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [85d 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [85e 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [85f 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [6ab 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6ac 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6ad 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6ae 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6af 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6b0 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [6b1 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [6b2 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [6b3 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6b4 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer0.org2.example.com | [6b6 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [6b5 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [6b7 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6b8 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6b9 05-31 05:21:47.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -peer0.org2.example.com | [6ba 05-31 05:21:47.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6bb 05-31 05:21:47.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [6bc 05-31 05:21:47.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6bd 05-31 05:21:47.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6be 05-31 05:21:47.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6bf 05-31 05:21:47.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6c0 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [6c1 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [6c2 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [6c3 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6c4 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [6c5 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [4e9 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [4ea 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [4eb 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [4ec 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [4ed 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [4ee 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [4ef 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [4f0 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [4f1 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [4f2 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [4f3 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [4f4 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [4f5 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [4f6 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [4f7 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [4f8 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [4f9 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [6da 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [6db 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [6dc 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [6dd 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [6de 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [6df 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6e0 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [6e1 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [6e2 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [6e3 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6e4 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [6e5 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 32 but got ts: inc_num:1527744091840124700 seq_num:31 -peer1.org1.example.com | [6e6 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6e7 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6e8 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [6e9 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 27 but got ts: inc_num:1527744091618763800 seq_num:26 -peer1.org1.example.com | [6ea 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6eb 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [6ec 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [6ed 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [6ee 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6ef 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [6f0 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [6f1 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [6f2 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [4fa 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [4fb 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [4fc 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [4fd 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [4fe 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [4ff 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [500 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [501 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [502 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [503 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [504 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [505 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [506 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [507 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [508 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [509 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [50a 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -peer0.org1.example.com | [7cb 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [7cc 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [7cd 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [7ce 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [7cf 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [7d0 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [7d1 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [7d2 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [7d4 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [7d5 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org1.example.com | [7d3 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [7d6 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [7d7 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [7d8 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [7d9 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [7da 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [7db 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [7dc 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [7dd 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [7df 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [7de 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer0.org1.example.com | [7e0 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [7e1 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [7e2 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [7e3 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [7e4 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [7e5 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [7e6 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [7e7 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [7e9 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org1.example.com | [7ea 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [7eb 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [7e8 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [7ed 05-31 05:21:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [7ee 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [7ec 05-31 05:21:51.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [7f0 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [7f1 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [7ef 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [7f2 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [7f3 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [7f4 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [7f5 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [7f7 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [7f8 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [7f6 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [7fa 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [7f9 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [7fb 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [7fc 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [7fd 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [7ff 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [7fe 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [800 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [801 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [802 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [50b 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [50c 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [50d 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer0.org2.example.com | [6c6 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [6c7 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [6c8 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [6c9 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [6ca 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [6cb 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [6cc 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [6cd 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [6ce 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [6cf 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [6d0 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [6d1 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [6d2 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [6d3 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6d4 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\025" signature:"0E\002!\000\356\303\203(\036?\243\026u\321}\242\265a\306\272\243\370Az\000\266\236\\\341z~n\220k\352\277\002 W\232\024\327\211\227b@\367\204>\356\332\3129\313\235l\355\21512\232$\030a\024e\032\312@F" > alive: alive: -peer0.org2.example.com | [6d5 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [6d6 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [6d7 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [6d8 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [6d9 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6da 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [6f3 05-31 05:21:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [6f4 05-31 05:21:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [6f5 05-31 05:21:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [6f6 05-31 05:21:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [6f7 05-31 05:21:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [6f8 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [6f9 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [6fa 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [6fc 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [6fb 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [6fd 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [6fe 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [6ff 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [700 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" secret_envelope:\242\034\250\365\3529\361\232+\335)\305|\377\036\002 %\007\313%/\021`\314\304\340\343\365\223;\342{h\364S\317%\027Oj\266\024)\260\333\335{n" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [701 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" secret_envelope:\242\034\250\365\3529\361\232+\335)\305|\377\036\002 %\007\313%/\021`\314\304\340\343\365\223;\342{h\364S\317%\027Oj\266\024)\260\333\335{n" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [703 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" secret_envelope:\242\034\250\365\3529\361\232+\335)\305|\377\036\002 %\007\313%/\021`\314\304\340\343\365\223;\342{h\364S\317%\027Oj\266\024)\260\333\335{n" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [704 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [705 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [706 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [860 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [861 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [862 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [863 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [864 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [865 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [866 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [867 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [868 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [869 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [86a 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [86b 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [86c 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [86d 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [86e 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [86f 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [870 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [871 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [872 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [873 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [874 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [875 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [876 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [803 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [804 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [805 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [806 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [807 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [808 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [809 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [80a 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [80b 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [80c 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [80d 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [80e 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [80f 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [810 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [811 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [812 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [813 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [6db 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [6dc 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6dd 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [6de 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [6df 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [6e0 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [6e1 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6e2 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [6e3 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [6e4 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6e5 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [6e6 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [6e7 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [6e8 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [6e9 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [6ea 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [6eb 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [6ec 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [6ed 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [6ee 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [6ef 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [6f0 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [6f1 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > alive: alive: -peer0.org2.example.com | [6f2 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [6f3 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6f4 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [6f5 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [6f6 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [6f7 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [6f8 05-31 05:21:47.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [6f9 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [6fa 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [6fc 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [6fd 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [6fb 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [6fe 05-31 05:21:47.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [6ff 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [700 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [701 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [702 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [703 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [704 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [705 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [706 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [708 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [707 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [709 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [70b 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [70a 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [70c 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [70d 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [70e 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [70f 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [710 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [711 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [712 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [713 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [714 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [715 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [716 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [717 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [718 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [719 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [71a 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [71b 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [71c 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [71d 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [71e 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [71f 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [720 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [722 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [723 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [721 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [724 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [725 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [726 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [727 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [728 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [729 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [72a 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [72b 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [72c 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [72d 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [72e 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [72f 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | [50e 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [50f 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [510 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [511 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [512 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [513 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [514 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [515 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [516 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [517 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [518 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [519 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [51a 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [51b 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [51c 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [51d 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [51e 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [51f 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [520 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [521 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [522 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [523 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [524 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [525 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [526 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [527 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [528 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [529 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [52a 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [52b 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [52c 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [52d 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [52e 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [52f 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [707 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [708 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [709 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [70a 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [70b 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [70c 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [70d 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [70e 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [70f 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" secret_envelope:\242\034\250\365\3529\361\232+\335)\305|\377\036\002 %\007\313%/\021`\314\304\340\343\365\223;\342{h\364S\317%\027Oj\266\024)\260\333\335{n" > > alive: > -peer1.org1.example.com | [710 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org1.example.com | [711 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [702 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [712 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [713 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [714 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [715 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [716 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [717 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [718 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [719 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [71a 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [71b 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [71c 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [71d 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [71e 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [71f 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [720 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [722 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [721 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [724 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [723 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [725 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [726 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [727 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [728 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [729 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [72a 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [72b 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [72c 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [72d 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [72e 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [72f 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [730 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [731 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [732 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [733 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [734 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [730 05-31 05:21:47.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [731 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [732 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [733 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [734 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [735 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [736 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [737 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [738 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [739 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [73a 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [73b 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [73c 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [73d 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [73e 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [73f 05-31 05:21:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [740 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [741 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [742 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [743 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [744 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [745 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [746 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [748 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [747 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [749 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [74a 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [74b 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 28 but got ts: inc_num:1527744090808810100 seq_num:27 -peer0.org2.example.com | [74c 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [74d 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [74e 05-31 05:21:47.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [74f 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [750 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [751 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [752 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [753 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 25 but got ts: inc_num:1527744091508552400 seq_num:24 -peer0.org2.example.com | [754 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [755 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [756 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [757 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [758 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [759 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [75a 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [75b 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [75c 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [75d 05-31 05:21:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [75e 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [75f 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [760 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [761 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [762 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [763 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [764 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [765 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [766 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [767 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [768 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [769 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [76a 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [76b 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [76c 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [76d 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [76e 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [770 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [771 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [772 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer0.org2.example.com | [773 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [774 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [76f 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [775 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [776 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [777 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [778 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [779 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [77a 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [77b 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [77c 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [77d 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [77e 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [77f 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [780 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [781 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [782 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [783 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [784 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [785 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [786 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [787 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [788 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [789 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [78a 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [78b 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [78c 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [78d 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [78e 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [78f 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [790 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [791 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [792 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [793 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [794 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [795 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [796 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [797 05-31 05:21:51.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [798 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [799 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [79a 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [79c 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [79d 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [79b 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [79e 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [7a0 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [79f 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [7a1 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [7a2 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [7a3 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7a4 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [7a5 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7a6 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [7a7 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7a8 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [7a9 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [7aa 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [7ab 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [7ac 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [7ad 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [7ae 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [7af 05-31 05:21:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7b0 05-31 05:21:51.38 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [7b1 05-31 05:21:51.38 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [7b2 05-31 05:21:51.38 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [7b3 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [7b4 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [7b5 05-31 05:21:51.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [7b6 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [7b7 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [7b8 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [7b9 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7ba 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [7bb 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7bc 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [7bd 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [7be 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [7bf 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [7c0 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [7c1 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [7c2 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [7c3 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [7c4 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [7c6 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [7c5 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [7c7 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [7c8 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\031" signature:"0E\002!\000\275=\374\370\216M\331\311\026\223\033p\t\3010\232tg\231\275\373\221\265\276d\315(\367J\331\013\273\002 \017\356\243\272L\311\321\331\274\002F\261\224O\254c,\364:Y\311o\346f\305\206q\242\364\020\345\271" > alive: alive: alive: -peer0.org2.example.com | [7c9 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [7ca 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [7cb 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [736 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [737 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [738 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [739 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [73a 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [73b 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [73c 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [73d 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [73e 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [73f 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [735 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [740 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [742 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [744 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [745 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [746 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [743 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [748 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [749 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [74a 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [741 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [814 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [815 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [816 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [817 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [818 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [819 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [81a 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [81b 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [81c 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [81d 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [81e 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [81f 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [821 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [820 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [822 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [823 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [826 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [825 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [824 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [827 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [829 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [828 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [82a 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [877 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [879 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [87a 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [878 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [87b 05-31 05:21:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [87c 05-31 05:21:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [87d 05-31 05:21:56.39 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [87e 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [87f 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [880 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [881 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [882 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [883 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [884 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [885 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [886 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [887 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [888 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [889 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [88a 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [88b 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [74b 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [74c 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [74d 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [747 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [74e 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [74f 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [750 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [751 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [752 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [753 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [754 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [755 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [757 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [758 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [759 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\035" signature:"0D\002 D\320\001\2042Nx\247\330\037Z\222m\353\306{\350\020Py\2641\230&\312k\356W\375\216\335\337\002 X\020\357\n\003\013v\246 \271\265\260\246\273\236fq!\213=r\366\257-{\305\0005\2405~U" > alive: -peer1.org1.example.com | [756 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [75a 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [75b 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [75c 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [75d 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [75e 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [75f 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [82b 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [82c 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [82d 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [82e 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [82f 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [830 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [831 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [832 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [833 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [834 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [835 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [836 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [837 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [838 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [839 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\036" signature:"0D\002 \013\317<|\204\034\261v\331E<\335\350\036u\221\265@\366\350j\373\270R\267\343\212(\342\233\237\331\002 \n\001r\246\234Pi\3446\200\370\001p\355Pi.\276\242f$Ud\333\323\260\321f\261\005F\333" > -peer0.org1.example.com | [83a 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [83b 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [83c 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [83d 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [83e 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [83f 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [840 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [530 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [531 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [532 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [533 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [534 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [535 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [536 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [537 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [538 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [539 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [53a 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [53b 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [53c 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [53d 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [53e 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [53f 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [540 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [541 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [542 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [543 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [544 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [545 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [546 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [547 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [548 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [549 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [54a 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [54b 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [54c 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [54d 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [54e 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [54f 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org2.example.com | [7cc 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [7cd 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7ce 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7cf 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7d0 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [7d1 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [7d2 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [7d4 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7d5 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7d6 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [7d3 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [7d7 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [7d8 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [7d9 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [7da 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [7db 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7dc 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7dd 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [7de 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [7df 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [7e0 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7e2 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [7e1 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7e3 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [7e4 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7e5 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7e6 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [7e7 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7e8 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [7e9 05-31 05:21:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [7ea 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [7eb 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [7ec 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [7ed 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [7ee 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [841 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [842 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [843 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [844 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [845 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [846 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [847 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [848 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [849 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [84a 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [84b 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [84c 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [84d 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [84e 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [84f 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [850 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [851 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [852 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [853 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [854 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\037" signature:"0E\002!\000\374\226A\261\227\263%\375^\216tZiX\335\232\023{\205\367\260b\r\324\025!\375W5fR\317\002 E\212\263\242\254}\310!\366\375\205\361\3514fz\335+\357F\022\220\20622\002\22614\304\315$" > -orderer.example.com | [550 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [551 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [552 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [553 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [554 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [555 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [556 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [557 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [558 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [559 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [55a 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -orderer.example.com | [55b 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -orderer.example.com | [55c 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [55d 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [55e 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A117434747A51C4AC0A46C27902C4525 -orderer.example.com | [55f 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 128F73D3DE1F816CEAD5BCB493C5E82C6DF70F7F119CA3533B8CEEB216E349DB -orderer.example.com | [560 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 -orderer.example.com | [561 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [562 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -orderer.example.com | [563 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [564 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...A117434747A51C4AC0A46C27902C4525 -orderer.example.com | [565 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 3D99C824FA9B7AF09BC30478A5F68E0EA9AEF36D0AF59C490AA8A245AD14C333 -orderer.example.com | [566 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xb, 0x15, 0x74, 0xf2, 0x5c, 0x99, 0x28, 0x95, 0x1, 0xd7, 0x8a, 0x82, 0x2e, 0x8c, 0x80, 0x51, 0xbe, 0xff, 0x92, 0xb1, 0xb5, 0x58, 0x12, 0xa5, 0x7c, 0x17, 0x9a, 0x2a, 0xb5, 0x56, 0x83, 0x2f} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=12094 -orderer.example.com | ] -orderer.example.com | [567 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -orderer.example.com | [568 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -orderer.example.com | [569 05-31 05:21:38.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [56a 05-31 05:21:38.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41288 -orderer.example.com | [56b 05-31 05:21:38.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41288 -orderer.example.com | [56c 05-31 05:21:38.31 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [56d 05-31 05:21:38.31 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41290 -orderer.example.com | [56e 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:41290 -orderer.example.com | [56f 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -peer0.org2.example.com | [7ef 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [7f0 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [7f1 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7f2 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [7f3 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [7f4 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [7f5 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [7f6 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7f7 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [7f8 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [7f9 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [7fa 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [7fb 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [7fc 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [7fd 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [7fe 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [7ff 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [800 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [801 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [802 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [803 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [804 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [805 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [855 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [856 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [857 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [858 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [859 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [85a 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [85b 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [85d 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [85e 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [85f 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [860 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [85c 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [861 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [862 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [863 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [864 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [865 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [866 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [867 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [868 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [869 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [86a 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [86b 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [86c 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [86d 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [86e 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [86f 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [870 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [871 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [872 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [873 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [874 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [875 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [876 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [878 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [877 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [879 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [87a 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [87b 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [87c 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [87d 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [87e 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [87f 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [880 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [881 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [882 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [883 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [884 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020 " signature:"0D\002 \\:\236\340\034\363\341S\335\352Or\202\367H\240\033\330f\204\237\200\273\330\036\305\222Q\224\302A,\002 j\251\217\206\243\227.G\326\317#\343=\365R\345V`q\335\360\365J\243\301I\263\313V\013\023S" secret_envelope:\242\315\033\316\207\022\254\366V}$\374\210g\374\227,\330\0132\273\366#\257\262y9\272\342" > > -peer0.org1.example.com | [885 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org1.example.com | [886 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [887 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [888 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [889 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [88a 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [88b 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [88c 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [88d 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [88e 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [890 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [891 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [892 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [88f 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [893 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [895 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [896 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [894 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [897 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [898 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [899 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [89a 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [89b 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [89c 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [806 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > alive:~\0347W_DA\221\262*\260\2316\270H\311\265\300\024z\225\300\315\233\302ew\3174F\026\002 T\317\216\314\204\274;\332\276\351\321\020$\300\375\215\000/\021\355\223\275\014\004\267[\225w\310\231\355\224" > alive: -peer0.org2.example.com | [807 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [808 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [809 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [80a 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [80b 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [80c 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [80d 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [80e 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [80f 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [810 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [811 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [812 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [813 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [814 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [815 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [816 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [817 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [818 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [88d 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [88e 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [88c 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [88f 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [890 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [891 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [892 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [893 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [894 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [895 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [896 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [897 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [898 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [899 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [89a 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [89b 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [89c 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [89d 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [89e 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [89f 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8a0 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [8a1 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [8a2 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [8a3 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [570 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [571 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [572 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [573 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [574 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [575 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [576 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [577 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e368 gate 1527744098328082300 evaluation starts -orderer.example.com | [578 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e368 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [579 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e368 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [57a 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [57b 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [57c 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e368 principal matched by identity 0 -orderer.example.com | [57d 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 41 db 8c 13 ab 33 f1 87 cb da 37 04 a1 c1 eb 99 |A....3....7.....| -orderer.example.com | 00000010 5d 0d 2d 23 00 27 3d 47 d3 d8 9c 93 11 9c 02 bd |].-#.'=G........| -orderer.example.com | [57e 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6b 53 1a 4d 4f f6 75 ee 90 2e 4f 7b |0D. kS.MO.u...O{| -orderer.example.com | 00000010 94 83 cd b4 c7 dc 71 37 fb d4 91 35 0e 0d a0 24 |......q7...5...$| -orderer.example.com | 00000020 45 9c 3f d4 02 20 42 18 6b 5a 80 cc 8b 58 15 17 |E.?.. B.kZ...X..| -orderer.example.com | 00000030 e4 84 a6 cb ab 91 15 6f 59 ae ec 0c cd c8 38 7d |.......oY.....8}| -orderer.example.com | 00000040 ce 7f c5 09 70 58 |....pX| -orderer.example.com | [57f 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e368 principal evaluation succeeds for identity 0 -orderer.example.com | [580 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e368 gate 1527744098328082300 evaluation succeeds -orderer.example.com | [581 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [582 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [583 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [584 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [585 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [586 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [587 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [588 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [589 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [58a 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [58b 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [58c 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [58d 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [58e 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [58f 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [590 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [591 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [592 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [593 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [594 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [595 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [596 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | [597 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -orderer.example.com | [598 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [599 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [59a 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [59b 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [59c 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -peer0.org1.example.com | [89d 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [89e 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [89f 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [8a0 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [8a1 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [8a2 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [8a3 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [8a4 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [8a5 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [8a6 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [8a7 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [8a8 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [8a9 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [8aa 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [8ab 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [8ac 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8ad 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [8ae 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [81a 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [81b 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [81c 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [819 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [81d 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [81f 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [81e 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [821 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [822 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [823 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [824 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [820 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [825 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [827 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [826 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [828 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [829 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [82a 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [82b 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [82c 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [82d 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [82e 05-31 05:21:51.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [82f 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer0.org2.example.com | [830 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [831 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [760 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [762 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [761 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [763 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [764 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [765 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [766 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [767 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [768 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [769 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [76a 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [76b 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [76c 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [76d 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [76e 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [76f 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [770 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [771 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [772 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [773 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [774 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [775 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [8a5 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8a6 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [8a4 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [8a7 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [8a8 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [8a9 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [8aa 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8ab 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [8ac 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8ad 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [8ae 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [8af 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8b0 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8b1 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8b2 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8b4 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [8b5 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8b6 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8b7 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [8b3 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8b8 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8b9 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [8ba 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8bb 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8bc 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8bd 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [8be 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [8bf 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [8c0 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [8c1 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [8c2 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [8c3 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [8c4 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [8c5 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [8c6 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [8c7 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8c9 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8c8 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8ca 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8cb 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8cc 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [8cd 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8ce 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8cf 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [8d0 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8d1 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [8d2 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8d3 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [8d4 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8d5 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8d6 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [8d7 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8d8 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8d9 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [8da 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [8db 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [8dc 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [8dd 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [8df 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [8e0 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [8de 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [8e1 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [8e2 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8e3 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8e5 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [8e6 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [8e7 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8e8 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [8e9 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [8ea 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8e4 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [8eb 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8ec 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [776 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [777 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [778 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [779 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [77a 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [77b 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [77c 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [77d 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [77e 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\035" signature:"0D\002 D\320\001\2042Nx\247\330\037Z\222m\353\306{\350\020Py\2641\230&\312k\356W\375\216\335\337\002 X\020\357\n\003\013v\246 \271\265\260\246\273\236fq!\213=r\366\257-{\305\0005\2405~U" > alive: alive: alive: -peer1.org1.example.com | [77f 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [780 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [781 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [782 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [783 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [784 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [785 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [786 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [787 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [788 05-31 05:21:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [789 05-31 05:21:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [78a 05-31 05:21:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [78b 05-31 05:21:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [78c 05-31 05:21:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [78e 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [78f 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -orderer.example.com | [59d 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [59e 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -orderer.example.com | [59f 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [5a0 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [5a1 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -orderer.example.com | [5a2 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -orderer.example.com | [5a3 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e678 gate 1527744098339221300 evaluation starts -orderer.example.com | [5a4 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e678 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [5a5 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e678 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [5a6 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [5a7 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e678 principal matched by identity 0 -orderer.example.com | [5a8 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c 28 02 1b 57 05 88 2f cb 54 d5 4b d3 41 5c 2f |.(..W../.T.K.A\/| -orderer.example.com | 00000010 4a 85 ec b5 54 95 b5 7b 35 67 ee 40 ed 83 53 8b |J...T..{5g.@..S.| -orderer.example.com | [5a9 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c2 db ca ed 0b ba c5 52 5e ef 11 |0E.!........R^..| -orderer.example.com | 00000010 39 6f 5a b4 95 d7 5a 9d 6b 18 4a ac c7 6c 18 f7 |9oZ...Z.k.J..l..| -orderer.example.com | 00000020 1e 88 7f e8 1d 02 20 5d 59 b9 b3 2d c9 1f 15 a4 |...... ]Y..-....| -orderer.example.com | 00000030 ca 9b 04 d5 9c a7 c5 99 3a 29 6c 62 d3 f3 05 61 |........:)lb...a| -orderer.example.com | 00000040 6d e8 63 79 57 ba 81 |m.cyW..| -orderer.example.com | [5aa 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e678 principal evaluation succeeds for identity 0 -orderer.example.com | [5ab 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e678 gate 1527744098339221300 evaluation succeeds -orderer.example.com | [5ac 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [5ad 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [5ae 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [5af 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [5b0 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [5b1 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [5b2 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5b3 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5b4 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5b5 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5b6 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5b7 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5b8 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5b9 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5ba 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5bb 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5bc 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5bd 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [5be 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5bf 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [5c0 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [5c1 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [5c2 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [5c3 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [5c4 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [5c5 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [5c6 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [5c7 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [5c8 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [790 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [78d 05-31 05:21:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [791 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [793 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [792 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [794 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [795 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [796 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [797 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [798 05-31 05:21:55.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [799 05-31 05:21:55.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [79a 05-31 05:21:55.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [79b 05-31 05:21:55.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [79c 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [79d 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [79e 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [79f 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [7a0 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [7a1 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [7a2 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [7a3 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [7a4 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [7a5 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [7a6 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [7a7 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [7a9 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [7a8 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [7aa 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [7ab 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [7ac 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [7ad 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [7ae 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [8af 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8b0 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8b1 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [8b2 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [8b3 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [8b4 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [8b5 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [8b6 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [8b7 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [8b8 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8b9 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [8ba 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [8bc 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [8bb 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8bd 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [8be 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [8bf 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [8c0 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8c1 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8c2 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [8c3 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8c4 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8c5 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8c6 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [8c7 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 33 but got ts: inc_num:1527744091508552400 seq_num:32 -peer0.org1.example.com | [8c8 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [833 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [834 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [832 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [836 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [835 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [837 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [838 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [839 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [83b 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [83c 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [83d 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [83e 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [83f 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [840 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:+\203\216\350\321\247\013O\257\363u\026" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [841 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [842 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [843 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [844 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [845 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -orderer.example.com | [5c9 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [5ca 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [5cb 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [5cc 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [5cd 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [5ce 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5cf 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [5d0 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [5d1 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [5d2 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [5d3 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [5d4 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5d5 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5d6 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [5d7 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [5d8 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [5d9 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [5da 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5db 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [5dc 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [5dd 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [5de 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [5df 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [5e0 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5e1 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5e2 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [5e3 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [5e4 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [5e5 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [8c9 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8ca 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [8cb 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [8cc 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [8cd 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [8ce 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [8cf 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [8d0 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8d1 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [8d2 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [8d3 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [8d4 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8d5 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [8d6 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 38 but got ts: inc_num:1527744091840124700 seq_num:36 -peer0.org1.example.com | [8d7 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8d8 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8d9 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [8da 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8db 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8dc 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8dd 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [8de 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 33 but got ts: inc_num:1527744091508552400 seq_num:32 -peer0.org1.example.com | [8df 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8e0 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8e1 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [8e2 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [7af 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [7b0 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [7b1 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [7b2 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [7b3 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [7b4 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [7b5 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [7b7 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [7b6 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [7b8 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [7b9 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [7ba 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [7bb 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [5e6 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [5e7 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [5e8 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [5e9 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [5ea 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [5eb 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [5ec 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [5ed 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [5ee 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [5ef 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [5f0 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5f1 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [5f2 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [5f3 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [5f4 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -peer1.org2.example.com | [8ed 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [8ee 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8ef 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:v\233R\360\321z\232\017\350\341\007\342\316ex\002 t\305\247`\010\022\274\346\3211q\244 > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [8f0 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [8f2 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [8f3 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [8f4 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8f1 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [8f5 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [8f6 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8f7 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [8f8 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [8fa 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [8fb 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8fc 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [8f9 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [8fd 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [8ff 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [900 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [8fe 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [846 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [83a 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [847 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [849 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [848 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [84a 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [84b 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [84d 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [84e 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [84f 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [850 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [851 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [84c 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [852 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [854 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [853 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [856 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [855 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [857 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [858 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [859 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [85a 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [85c 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [85b 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [85d 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [85e 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [7bc 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [7be 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [7bd 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [7bf 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [7c0 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [7c1 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [7c3 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [7c4 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [7c5 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [7c6 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [7c7 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [7c8 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [7c9 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org1.example.com | [7ca 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org1.example.com | [7c2 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [7cb 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [7cc 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [7cd 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [7ce 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [7d0 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [7cf 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [7d1 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [7d2 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [7d3 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [7d4 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [7d5 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [7d6 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [7d7 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [7d8 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [7d9 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [7da 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [7db 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [7dc 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [7dd 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [7de 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [7df 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [7e0 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [7e1 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [7e2 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [7e3 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [7e4 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [7e5 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [7e6 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [7e7 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [7e9 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [7ea 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [7e8 05-31 05:21:55.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org1.example.com | [7eb 05-31 05:21:55.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [7ec 05-31 05:21:55.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [7ed 05-31 05:21:55.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [7ee 05-31 05:21:55.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [7ef 05-31 05:21:55.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [7f0 05-31 05:21:55.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [7f1 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [7f2 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [7f3 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [7f4 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [7f5 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [7f6 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [7f7 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [7f9 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [7f8 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [7fa 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [7fb 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [7fc 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [7fd 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [7fe 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [7ff 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [800 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 35 but got ts: inc_num:1527744090808810100 seq_num:34 -peer1.org1.example.com | [801 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [802 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [803 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [804 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 32 but got ts: inc_num:1527744091618763800 seq_num:30 -peer1.org1.example.com | [805 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [806 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [807 05-31 05:21:55.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [808 05-31 05:21:55.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [809 05-31 05:21:55.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [80a 05-31 05:21:55.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [80b 05-31 05:21:55.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [80c 05-31 05:21:55.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [80d 05-31 05:21:55.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [80e 05-31 05:21:55.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [80f 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [810 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [811 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [812 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [813 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [814 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [815 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [816 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [817 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [818 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [819 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [81a 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [81b 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [81c 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [81d 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [81e 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [81f 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [820 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [821 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [822 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [824 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [823 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [825 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [826 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > alive:/&\342\325#i\300\234\027\273" secret_envelope: > -peer1.org1.example.com | [827 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [828 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [829 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [82a 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [82b 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [82c 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [82d 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [82e 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [82f 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [830 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [85f 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [860 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [861 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [862 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [863 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [864 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [865 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [867 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [866 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [869 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [868 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [86a 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [86b 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [86c 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [86d 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [86e 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [86f 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [870 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [871 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [872 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [873 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [874 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [875 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [876 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 33 but got ts: inc_num:1527744090808810100 seq_num:32 -peer0.org2.example.com | [877 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [878 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [879 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [87a 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [87b 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [87c 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [87d 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [87e 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [87f 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [880 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [882 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [883 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [884 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [885 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [886 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [887 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [888 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [881 05-31 05:21:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [889 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [88a 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [88b 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [88c 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [88d 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [8e3 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [8e4 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [8e5 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [8e6 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [8e7 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8e8 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [8e9 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8ea 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8eb 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [8ec 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [8ed 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8ee 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8ef 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [8f0 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [8f1 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [8f2 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [8f3 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [8f4 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [8f5 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [8f6 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [8f7 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8f8 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [8f9 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [8fa 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [8fb 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [831 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [832 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [833 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [834 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [835 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [836 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [837 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [839 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [83a 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [838 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [83b 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [83c 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [83d 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [83e 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [83f 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [840 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [841 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [842 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [843 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [844 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [845 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [846 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [847 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [848 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [849 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [84a 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | [5f5 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [5f6 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [5f7 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [5f8 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [5f9 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [5fa 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [5fb 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [5fc 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [5fd 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [5fe 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [5ff 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [600 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [601 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [602 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [603 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [604 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [605 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [606 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [607 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [608 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [609 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [60a 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [60b 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [901 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [902 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [903 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [904 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [905 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [906 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [907 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [908 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [909 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [90a 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [90c 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [90b 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [90d 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [90e 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [90f 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [910 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [911 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [912 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [913 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [914 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [915 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [916 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [917 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [918 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [919 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [91a 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [8fd 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [8fe 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [8fc 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [900 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [8ff 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [901 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [903 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [905 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [902 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [904 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [906 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [907 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [908 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [909 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [90a 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [90b 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [90c 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [90d 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [90e 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [90f 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [910 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [911 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [84b 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [84c 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [84d 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [84e 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [84f 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [850 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [851 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [852 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [853 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [854 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [855 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [856 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [857 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [858 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [859 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [85a 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [85b 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [85c 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [60c 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [60d 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [60e 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [60f 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [610 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [611 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [612 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [613 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [614 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [615 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [616 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [617 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [618 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [619 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [61a 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [61b 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [61c 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [61d 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [61e 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [61f 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [620 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [621 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [622 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [623 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [624 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [625 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [626 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [627 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [628 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [629 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [62a 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [62b 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [62c 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [62d 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [62e 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [62f 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [630 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [631 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [632 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [633 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [634 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [635 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [636 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [637 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [638 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [639 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [63a 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [63b 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [63c 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [63d 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [63e 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [63f 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [640 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [641 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [642 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -orderer.example.com | [643 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -orderer.example.com | [644 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [645 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [646 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608E28CBED80522...156F59AEEC0CCDC8387DCE7FC5097058 -orderer.example.com | [647 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 54BFB52A64BB4CE44830331B70CE2AA41804E34FD25F4806A473A57F2F7B2691 -orderer.example.com | [648 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [649 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [64a 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [64b 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [64c 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [64d 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [64e 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO -orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o -orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR -orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [64f 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1527744098382884700 evaluation starts -orderer.example.com | [650 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [651 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [652 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [653 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal evaluation fails -orderer.example.com | [654 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1527744098382884700 evaluation fails -orderer.example.com | [655 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [656 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [657 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [658 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1527744098384251700 evaluation starts -orderer.example.com | [659 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [85d 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > alive: alive: alive:\267/p\306\261L\322r\263P'\313i[r^U\027\267\002 Ah`\n7\263\370I\003kMj\344\240\243\212\270\322l\366\222>I5\262C\361\3636\230\322\326" > -peer1.org1.example.com | [85e 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [85f 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [860 05-31 05:21:55.96 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [861 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [862 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [863 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [864 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [865 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [866 05-31 05:21:56.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [867 05-31 05:21:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [868 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org1.example.com | [869 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [86b 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [86c 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [86d 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [86a 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [86e 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [86f 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [870 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [871 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [872 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [873 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [874 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [875 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [91b 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [91c 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [91d 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [91e 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [91f 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [920 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [921 05-31 05:21:58.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [922 05-31 05:21:58.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [923 05-31 05:21:58.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [924 05-31 05:21:58.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [925 05-31 05:21:58.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [926 05-31 05:21:58.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [927 05-31 05:21:58.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [928 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [929 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [92a 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [92b 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [92c 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [92d 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [92e 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [92f 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [930 05-31 05:21:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [931 05-31 05:21:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [932 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [933 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [934 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [935 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [936 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [937 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [938 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [939 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [93a 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [93b 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [93c 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [93d 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [93e 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [93f 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [940 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [941 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [942 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [943 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [945 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [944 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:a\361p\265\036\362" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020$" signature:"0E\002!\000\241d\003\260\024\235\231lc9R\362\274\t\000\367\367\207\362\203\334\022\323\332Z\314\366\312\334OM\021\002 m\002\361\326\362\360U\341\343\330V7?\306\201\351\272\331\016\031T\370\325\264l\310\017\000\241F\226\026" > alive: alive: -peer1.org2.example.com | [946 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [947 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [948 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [949 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [94a 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [94b 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [94c 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [94d 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [94e 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [94f 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [950 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [951 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [952 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [953 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [954 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [956 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [955 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [957 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [958 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [959 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [95a 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [95b 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [95c 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [95e 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [95d 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [960 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org2.example.com | [961 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org2.example.com | [95f 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [962 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [88e 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [88f 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 33 but got ts: inc_num:1527744090808810100 seq_num:31 -peer0.org2.example.com | [890 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [891 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [892 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [893 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [894 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [895 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [896 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [897 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [898 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [899 05-31 05:21:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [89a 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [89b 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [89c 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [89d 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [89e 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [89f 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [8a0 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [8a1 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8a2 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [8a3 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [8a4 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [912 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [913 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [914 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [915 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [916 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [917 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [918 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [919 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:/&\342\325#i\300\234\027\273" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\"" signature:"0E\002!\000\262\036\363\306D\323\200\2646\030p\262\375Fm\252W\202I4\267\261\3032\026#\377\377x\n\256\022\002 \"\017l\274\216.\023B}=\315\357\236\251\366\271*\261Y\000\230\213;\367\\\0218\252E\177\206^" > -peer0.org1.example.com | [91a 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [91b 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [91c 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [91d 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [91e 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [91f 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [920 05-31 05:21:55.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [921 05-31 05:21:55.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [922 05-31 05:21:55.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [923 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [924 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [925 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [926 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [927 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [928 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [963 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [964 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [965 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [966 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [967 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [968 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [969 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [96a 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [96b 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [96c 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [96d 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:a\361p\265\036\362" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > alive: alive: -peer1.org2.example.com | [96e 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [96f 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [970 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [971 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [972 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [973 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [974 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [975 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [976 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [876 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [877 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [878 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [879 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [87a 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [87b 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [87c 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [87d 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [87e 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [87f 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [880 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [881 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [882 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [883 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [884 05-31 05:21:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [885 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [886 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [888 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [887 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [889 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [88a 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [88b 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [88c 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [88d 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [88e 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [88f 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [890 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [891 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [892 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [893 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [894 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [895 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [896 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [897 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [898 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [899 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [89a 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [89b 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [89c 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [89d 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [89e 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [89f 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [8a0 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [8a1 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [8a2 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [8a4 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8a3 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [8a5 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [8a6 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [977 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [978 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [979 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [97a 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [97b 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [97c 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [97d 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [97e 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [97f 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [980 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [981 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [982 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:0\301\354\027\354\262\376\373\221\340\251\312\371S\3026\276O\027\332(\222\362\300\255\002 .@\004\352\216\202v\0304\241\266\214\3335\215\335\351k\247\006\263\207\\\260\250\302\315&j\346\346\240" > > -peer1.org2.example.com | [983 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [984 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [985 05-31 05:22:00.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [986 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [987 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [988 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [98b 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [98c 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [989 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [98d 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [98a 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [98e 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [98f 05-31 05:22:01.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [990 05-31 05:22:01.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [991 05-31 05:22:01.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [992 05-31 05:22:01.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [993 05-31 05:22:01.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [994 05-31 05:22:01.40 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [995 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [996 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [997 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [998 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [999 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [99a 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [99b 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [99c 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [99d 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [99e 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [99f 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [9a0 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [9a1 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [9a2 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [9a4 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9a3 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [9a5 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9a6 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9a7 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9a8 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9a9 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [9aa 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9ab 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9ac 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [9ad 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9ae 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [9af 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9b0 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9b1 05-31 05:22:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [9b2 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9b3 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [9b4 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9b5 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9b6 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9b7 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [9b8 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [9b9 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [9ba 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [9bb 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [9bc 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [9be 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [9bf 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [929 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [92a 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [92b 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [92c 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [92d 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [92e 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [92f 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [930 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [931 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [932 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [933 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [934 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [935 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [936 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [937 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [938 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [939 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [93a 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [93b 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [93c 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [93d 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [93e 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [93f 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [940 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [941 05-31 05:21:56.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [942 05-31 05:21:56.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [943 05-31 05:21:56.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [944 05-31 05:21:56.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [945 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [946 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [947 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [948 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [94a 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [94b 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [949 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [94c 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [94d 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [94e 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [94f 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [950 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [951 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [952 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [953 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [954 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [955 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [956 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [957 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [958 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [959 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [95a 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [95b 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [95d 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [95c 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [95f 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [95e 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [960 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [961 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [962 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [963 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [964 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [965 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [966 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [967 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [968 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [969 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [96a 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [96b 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [96c 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [96d 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [96e 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [96f 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [970 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [971 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [972 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [973 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [974 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [975 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [976 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [977 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [978 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [979 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [97a 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [97c 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [97d 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [97e 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020$" signature:"0E\002!\000\241d\003\260\024\235\231lc9R\362\274\t\000\367\367\207\362\203\334\022\323\332Z\314\366\312\334OM\021\002 m\002\361\326\362\360U\341\343\330V7?\306\201\351\272\331\016\031T\370\325\264l\310\017\000\241F\226\026" > -peer0.org1.example.com | [97f 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [980 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [97b 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [981 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [982 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [983 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [984 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [985 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [986 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [8a7 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [8a9 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8a8 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [8aa 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8ab 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [8ac 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [8ad 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [8ae 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8af 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [8b0 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [8b1 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [8b2 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [8b3 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [8b4 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [8b5 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8b6 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [8b7 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [8b9 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [8ba 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [8bb 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [8b8 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8bc 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [8a5 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [8a6 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [8a7 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [8a8 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [8a9 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [8aa 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [8ab 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [8ac 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [8ad 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [8ae 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > -peer0.org2.example.com | [8af 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [8b0 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [8b1 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8b2 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8b3 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8b4 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8b5 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8b6 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [8b7 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8b8 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8ba 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8b9 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [8bc 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [8bd 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [8be 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [987 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [988 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [989 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [98a 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [98b 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [98c 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [98d 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [98e 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [98f 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [990 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [991 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [992 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [993 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org1.example.com | [994 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org1.example.com | [995 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [996 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [997 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [998 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [999 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [99a 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [99b 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [99c 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [99d 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [99e 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [99f 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [9a0 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [9a1 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9a2 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [8bd 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [8be 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [8bf 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [8c0 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [8c1 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [8c2 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [8c3 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [8c4 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [8c5 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020#" signature:"0D\002 {\247\272\264\347\031Z\363\274\276q\231\343\246-A\177\2519\346\243\025i\232\031\227K\037\024\023@\372\002 J\032\204/9\017\223\256\206\323\300\325\361\250\nr\"\220\n\344+bz\347\261\353\346\277=K\355\027" > alive: -peer1.org1.example.com | [8c6 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [8c7 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8c8 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [8c9 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [8ca 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8cb 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [8cc 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [8cd 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [8ce 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [8cf 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8d0 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [8d2 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [8d1 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [8d3 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9bd 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9c0 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [9c1 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9c2 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9c3 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [9c4 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9c5 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [9c7 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [9c8 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9ca 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9c6 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [9cb 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9c9 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9cc 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [9cd 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [9ce 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9cf 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9d0 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [9d1 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9d2 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9d3 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9d4 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [9d5 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [9d6 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [9a3 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9a4 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [9a5 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [9a6 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [9a7 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [9a8 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [9a9 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [9aa 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [9ab 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [9ac 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [9ad 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [9ae 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [9af 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [9b1 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [9b0 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020%" signature:"0D\002 \003\322\234\204\2070i&\360\316\340\315R\360\256\342K}\375)'\002g\013R\351\207-\211\341?k\002 M<\221\221\3041N\336\330\361\n\216\000\004 \237]\32344\036\257\351\311\\\311U\235Q}\267$" secret_envelope: > -peer0.org1.example.com | [9b2 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [9b3 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [9b4 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [9b6 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [9b7 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [9b5 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [9b8 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [9ba 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [9bb 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [9b9 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [9bc 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [65a 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [65b 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [65c 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal evaluation fails -orderer.example.com | [65d 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1527744098384251700 evaluation fails -orderer.example.com | [65e 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [65f 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [660 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Writers Org1MSP.Writers ] -orderer.example.com | [661 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Writers -orderer.example.com | [662 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [663 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [664 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [665 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [666 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2b0 gate 1527744098385951500 evaluation starts -orderer.example.com | [667 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [668 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [669 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [66a 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [66b 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b0 principal matched by identity 0 -orderer.example.com | [66c 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 54 bf b5 2a 64 bb 4c e4 48 30 33 1b 70 ce 2a a4 |T..*d.L.H03.p.*.| -orderer.example.com | 00000010 18 04 e3 4f d2 5f 48 06 a4 73 a5 7f 2f 7b 26 91 |...O._H..s../{&.| -orderer.example.com | [66d 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c4 e0 41 7f 2d 93 3c 01 19 94 01 |0E.!...A.-.<....| -orderer.example.com | 00000010 6c ec 66 1c 5a 5a 4b d0 26 25 ba 94 53 56 d6 46 |l.f.ZZK.&%..SV.F| -orderer.example.com | 00000020 93 fe dd 5f a2 02 20 1e cd e4 c8 ae 98 02 57 10 |..._.. .......W.| -orderer.example.com | 00000030 f7 aa d3 76 e4 f5 8e 19 4d 51 e0 30 4a b7 32 ac |...v....MQ.0J.2.| -orderer.example.com | 00000040 43 d6 f2 ca 07 a5 a0 |C......| -orderer.example.com | [66e 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b0 principal evaluation succeeds for identity 0 -orderer.example.com | [66f 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2b0 gate 1527744098385951500 evaluation succeeds -orderer.example.com | [670 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [671 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [672 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -orderer.example.com | [673 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [674 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [675 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [676 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:41290 -orderer.example.com | [677 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [678 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [679 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [67a 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [67b 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [67c 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [67d 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [67e 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [67f 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [680 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [681 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [682 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [683 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [684 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [685 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [686 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -orderer.example.com | [687 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -orderer.example.com | [688 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [689 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [68a 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [68b 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [68c 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [68d 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [68e 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -orderer.example.com | [68f 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [690 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [691 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -orderer.example.com | [692 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -orderer.example.com | [693 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200b87b8 gate 1527744098394646700 evaluation starts -orderer.example.com | [694 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b87b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [695 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b87b8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [696 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b87b8 principal matched by identity 0 -orderer.example.com | [697 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c 28 02 1b 57 05 88 2f cb 54 d5 4b d3 41 5c 2f |.(..W../.T.K.A\/| -orderer.example.com | 00000010 4a 85 ec b5 54 95 b5 7b 35 67 ee 40 ed 83 53 8b |J...T..{5g.@..S.| -orderer.example.com | [698 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c2 db ca ed 0b ba c5 52 5e ef 11 |0E.!........R^..| -orderer.example.com | 00000010 39 6f 5a b4 95 d7 5a 9d 6b 18 4a ac c7 6c 18 f7 |9oZ...Z.k.J..l..| -orderer.example.com | 00000020 1e 88 7f e8 1d 02 20 5d 59 b9 b3 2d c9 1f 15 a4 |...... ]Y..-....| -orderer.example.com | 00000030 ca 9b 04 d5 9c a7 c5 99 3a 29 6c 62 d3 f3 05 61 |........:)lb...a| -orderer.example.com | 00000040 6d e8 63 79 57 ba 81 |m.cyW..| -orderer.example.com | [699 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b87b8 principal evaluation succeeds for identity 0 -orderer.example.com | [69a 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200b87b8 gate 1527744098394646700 evaluation succeeds -orderer.example.com | [69b 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [69c 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [69d 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [69e 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [69f 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6a0 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6a1 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [8bb 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [8bf 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [8c0 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8c1 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [8c2 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8c3 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [8c4 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [8c5 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [8c6 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [8c7 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [8c8 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8c9 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8ca 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8cb 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8cc 05-31 05:21:55.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8cd 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [8ce 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [8cf 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [8d0 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8d1 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [8d2 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8d3 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [8d4 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [8d5 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [8d6 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [9d7 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [9d8 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [9d9 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [9da 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [9db 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [9dc 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [9dd 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [9de 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9df 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9e0 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9e2 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [9e3 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9e4 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9e5 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [9e1 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9e6 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9e7 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9e8 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [9e9 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9ea 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [9eb 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [9ec 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [9ed 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [9ee 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [9ef 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [9f0 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [9f1 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [9f2 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [9f3 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9f4 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [9f5 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9f6 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [9f7 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [9f8 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [9f9 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [9fa 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9fb 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [9fc 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [9fd 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [9fe 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [9ff 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [a00 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a01 05-31 05:22:02.84 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [a02 05-31 05:22:02.84 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [a03 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [8d4 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [8d6 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8d5 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8d7 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [8da 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [8d8 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [8d9 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [8db 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8dc 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [8dd 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8de 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [8df 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8e0 05-31 05:21:59.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [8e1 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [8e2 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [8e3 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8e4 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [8e5 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [8e6 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [8e7 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8e8 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [8e9 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [8ea 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8eb 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [8ec 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [8ed 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [8ef 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [8f0 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [8f2 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [8f3 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [8f4 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8ee 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [8f1 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [8f5 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8f6 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [8f7 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [8f9 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [8fa 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [8fc 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [8f8 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [8fb 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [8fd 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [8fe 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [8ff 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [900 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [901 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [902 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [903 05-31 05:21:59.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [9bd 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [9be 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [9bf 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [9c0 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9c2 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [9c3 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [9c4 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9c5 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [9c6 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [9c7 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9c1 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [9c8 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [9c9 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [9ca 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [9cb 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [9cd 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [9ce 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a04 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [a05 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a06 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [a07 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a08 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [a09 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a0a 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [a0b 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a0d 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [a0c 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [a0e 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [a0f 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [a10 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [a11 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a12 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [a13 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [a14 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [a15 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [a16 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [a17 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [a18 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [a19 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a1a 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [a1b 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [a1d 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [a1e 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [a1f 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [a1c 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a21 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [a20 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a22 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [a23 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [a24 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [a25 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [a26 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [a27 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [a28 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [a29 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a2a 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [a2b 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [a2c 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a2d 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [a2e 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [a2f 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 42 but got ts: inc_num:1527744091618763800 seq_num:41 -peer1.org2.example.com | [a30 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a31 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [a32 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [a33 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [a34 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a35 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [a36 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [a37 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [a38 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [a39 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [a3a 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [a3b 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [a3c 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a3d 05-31 05:22:02.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [a3e 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [a3f 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a40 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [a41 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a42 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [a43 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a44 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [a45 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [a46 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [a47 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a48 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [a49 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [a4a 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [a4b 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a4c 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [a4d 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9cf 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [9cc 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [9d0 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [9d1 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [9d2 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [9d3 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [9d4 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9d5 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org1.example.com | [9d6 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9d7 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org1.example.com | [9d8 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [9d9 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [9db 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [9dc 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [9dd 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [9de 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [9df 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [9e0 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [9e1 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [9e2 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [9e3 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [9e4 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [9e5 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [9da 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [9e6 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [9e7 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [9e8 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [9e9 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [9ea 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [9eb 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [9ec 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [9ed 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [9ee 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [9ef 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [9f0 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [9f1 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [9f3 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9f2 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [9f4 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [9f5 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [9f6 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [9f7 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [9f8 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [9f9 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [9fa 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [9fb 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [9fc 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [9fe 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [9fd 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [9ff 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a00 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [a01 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 43 but got ts: inc_num:1527744091840124700 seq_num:41 -peer0.org1.example.com | [a02 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [a03 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a04 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [a05 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a06 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [a07 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a08 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [a09 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 38 but got ts: inc_num:1527744091508552400 seq_num:37 -peer0.org1.example.com | [a0a 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [a0b 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a0c 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [a0d 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [a0e 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [a0f 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [a10 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [a11 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [a12 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [a13 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a14 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [a15 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [a16 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [a17 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a4e 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [a4f 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [a50 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [a51 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [a52 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [a53 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [a54 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [a55 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [a56 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a57 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [a58 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [a59 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [a5a 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020*" signature:"0E\002!\000\266\tP/3b\335~e\225\001\022\234BN\352\321\355x\223\341\346;\232g\251\371\177f\016CX\002 \013\032\027\0309u\360\231\321\272\207\266}FP\366\352YE\262\3712\026\001Q\022\361\037\007\027J\346" > alive: alive: -peer1.org2.example.com | [a5b 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [a5c 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a5d 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [a5e 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [a60 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [a61 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a62 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a5f 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [a63 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a64 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [a65 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a66 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [a67 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a68 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [a69 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [a6a 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [a6c 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [a6b 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a6d 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a6e 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [a6f 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [a70 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [a71 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a72 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org2.example.com | [a73 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org2.example.com | [a74 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a75 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [a76 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a77 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [a78 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [a79 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [a7a 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [a7b 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [8d7 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [8d8 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [8d9 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [8da 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [8db 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [8dc 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [8dd 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [8de 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [8e0 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [8e1 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [8df 05-31 05:21:55.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\036" signature:"0D\002 \013\317<|\204\034\261v\331E<\335\350\036u\221\265@\366\350j\373\270R\267\343\212(\342\233\237\331\002 \n\001r\246\234Pi\3446\200\370\001p\355Pi.\276\242f$Ud\333\323\260\321f\261\005F\333" > alive: -peer0.org2.example.com | [8e2 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [8e3 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [8e5 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8e4 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [8e6 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [8e7 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8e8 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [8e9 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8ea 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [8eb 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [8ec 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [8ed 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [8ee 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [904 05-31 05:21:59.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [905 05-31 05:21:59.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [906 05-31 05:21:59.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [907 05-31 05:21:59.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [908 05-31 05:21:59.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [909 05-31 05:21:59.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [90a 05-31 05:21:59.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [90b 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [90c 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [90d 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [90e 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [90f 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [910 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [913 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [911 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [914 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [912 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [915 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [916 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [917 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [918 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [919 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [6a2 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6a3 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6a4 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [6a5 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [6a6 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [6a7 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [6a8 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6a9 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6ab 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41290: rpc error: code = Canceled desc = context canceled -orderer.example.com | [6aa 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6ad 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6ac 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [6af 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41288: rpc error: code = Canceled desc = context canceled -orderer.example.com | [6b0 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [6ae 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6b1 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6b2 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [6b3 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [6b4 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [6b5 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [6b6 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [6b7 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [6b8 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [a7c 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [a7d 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [a7e 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [a7f 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a80 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [a81 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [a82 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [a83 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > alive: alive: -peer1.org2.example.com | [a84 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [a85 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a86 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [a87 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [a88 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [a89 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a8a 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\357G\202\344\017\244\372\300\260\340\246,\266\307" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [a8b 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [a8c 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\357G\202\344\017\244\372\300\260\340\246,\266\307" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [a8d 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [a8e 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [8ef 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [8f0 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [8f1 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [8f2 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [8f3 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [8f4 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [8f5 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [8f6 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [8f7 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [8f8 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [8f9 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [8fa 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [8fb 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [8fc 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [8fd 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [8fe 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > alive:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" > alive: -peer0.org2.example.com | [8ff 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [900 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [91a 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [91b 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [91c 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [91d 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [91e 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [91f 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [920 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [921 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [922 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [923 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [924 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [925 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [926 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [927 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [928 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [929 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [92a 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [92b 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [92c 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [92d 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [92e 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [92f 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [930 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [931 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [932 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [934 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [933 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [935 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [936 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [937 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [938 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [939 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [93a 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [93b 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [93c 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [93d 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [93e 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [93f 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [941 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [940 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [942 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [943 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [944 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 40 but got ts: inc_num:1527744090808810100 seq_num:39 -peer1.org1.example.com | [945 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [946 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [947 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [948 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [949 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [94a 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [94b 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [94c 05-31 05:21:59.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [94d 05-31 05:21:59.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [94e 05-31 05:21:59.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [94f 05-31 05:21:59.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [950 05-31 05:21:59.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [951 05-31 05:21:59.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [952 05-31 05:21:59.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [953 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [954 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [955 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [956 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [957 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [958 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [959 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [95a 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [95b 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [95c 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [95d 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [95e 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [95f 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [960 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [961 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [962 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [963 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [964 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [965 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [966 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [967 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [968 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [969 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [96a 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > alive: > -peer1.org1.example.com | [96b 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [96c 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [96d 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [96e 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [96f 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [970 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [971 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [972 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [973 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [974 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [975 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [976 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [977 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [978 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [979 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [97a 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [97b 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [6b9 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [6ba 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6bb 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [6bc 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [6bd 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6be 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [6bf 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [6c0 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6c1 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6c2 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [6c3 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [6c4 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6c5 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [6c6 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [6c7 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6c8 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6c9 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [6ca 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [6cb 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [6cc 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6cd 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [a8f 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [a90 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [a91 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [a92 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [a93 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [a94 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [a95 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [a96 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [a97 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [a98 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\357G\202\344\017\244\372\300\260\340\246,\266\307" > > alive: > -peer1.org2.example.com | [a99 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [a9a 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [a9b 05-31 05:22:05.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [a9c 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [a9d 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [a9e 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [a9f 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [aa0 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [aa1 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [aa3 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [aa2 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [aa4 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a18 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [a19 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a1a 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [a1b 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a1c 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [a1d 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [a1e 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [a1f 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [a20 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [a21 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [a22 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [a23 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a24 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [a25 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [a26 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020'" signature:"0D\002 \014K\323Sso\025\367\244]'\222\353X\373nP``\303%T\3119\300G\205\235|\026\340\366\002 7\323j=\203\202C\320\237\320U\0036\302\255\206\010\303l\235`\007\006\240\211\377\353\336\313\373_\203" > -peer0.org1.example.com | [a27 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [a28 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a29 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [901 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [902 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [903 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [904 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [905 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [906 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [907 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [908 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [909 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [90a 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [90b 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [90c 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [90d 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [90e 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [90f 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [910 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [911 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [912 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [913 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [914 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [915 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [916 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [917 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [918 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [6ce 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [6cf 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [6d0 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6d1 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [6d2 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [6d3 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6d4 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6d5 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [6d6 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [6d7 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [6d8 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [6d9 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [6da 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [6db 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [6dc 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [6dd 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [6de 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [6df 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [6e0 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [6e1 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [6e2 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -orderer.example.com | [6e3 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6e4 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [6e5 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [6e6 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -orderer.example.com | [6e7 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -orderer.example.com | [6e8 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [6e9 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [6ea 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [6eb 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [6ec 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [6ed 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [6ee 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [6ef 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [6f0 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [6f1 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [6f2 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [6f3 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [6f4 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [6f5 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [6f6 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [6f7 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [6f8 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [6f9 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [6fa 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [6fb 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [6fc 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [6fd 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [6fe 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [919 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [91a 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [91b 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [91c 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [91d 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [91e 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [91f 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [920 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [922 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [923 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [924 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [925 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [926 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [927 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [928 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [921 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [92a 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [92b 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [929 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [930 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [92f 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [931 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [92c 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [932 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [92d 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [934 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [92e 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [935 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [937 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [938 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [936 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [939 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [933 05-31 05:21:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [93b 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [93a 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [93c 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [93d 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [93e 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [93f 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [940 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [941 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [942 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [943 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [944 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [945 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [946 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [948 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [949 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [947 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [94a 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [94b 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [94c 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [94d 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [94e 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [950 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [951 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [94f 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [952 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [954 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [955 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [953 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [956 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [957 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [958 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [959 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [95a 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [a2a 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a2b 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [a2c 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a2d 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a2e 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a2f 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [a30 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [a31 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [a32 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [a33 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [a34 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [a35 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [a36 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a37 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [a38 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [a39 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a3a 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a3b 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a3c 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a3d 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a3e 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [a3f 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a41 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a42 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [a40 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a43 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a44 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a45 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a46 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a47 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [a48 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a49 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [a4a 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [a4b 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a4c 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [a4d 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a4e 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a4f 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a50 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [a51 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [a52 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [a53 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [a54 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [a55 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [a56 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [a57 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a58 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a59 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a5a 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [a5b 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a5d 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [a5e 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a5f 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [a5c 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a60 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a61 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a62 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a63 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a64 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [a65 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a66 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a67 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a68 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a69 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [a6a 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [a6b 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [a6d 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a6c 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [a6e 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a6f 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a71 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a72 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a70 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a73 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [95b 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [95c 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [95d 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [95e 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [95f 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [960 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [961 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [962 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [963 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [964 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [965 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [967 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [966 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [968 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [969 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [96a 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [96b 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [96c 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [96d 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [96e 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 34 but got ts: inc_num:1527744091508552400 seq_num:33 -peer0.org2.example.com | [96f 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [970 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [971 05-31 05:21:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [972 05-31 05:21:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [973 05-31 05:21:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [974 05-31 05:21:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [975 05-31 05:21:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [976 05-31 05:21:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [977 05-31 05:21:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [978 05-31 05:21:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [979 05-31 05:21:56.38 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [97a 05-31 05:21:56.38 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [97b 05-31 05:21:56.38 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [97c 05-31 05:21:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [97d 05-31 05:21:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [97e 05-31 05:21:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [97f 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [980 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [981 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [982 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [983 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [984 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [985 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [986 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [987 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [988 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [989 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [98a 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [98b 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [98c 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [98d 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [a74 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [a75 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a76 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a77 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a78 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [a79 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [a7a 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [a7b 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [a7c 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [a7d 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [a7e 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [a7f 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a80 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [a81 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [a82 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a83 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a84 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a85 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a86 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a87 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a88 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [a89 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a8a 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a8b 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a8c 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a8d 05-31 05:22:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [a8e 05-31 05:22:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a8f 05-31 05:22:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [a90 05-31 05:22:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a91 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:10991477598238104586 tag:EMPTY mem_req:\270R\345;\301\030\275\311\272l\201\326fv\354\nh\335%t\267?\002 z\211\030\272r\361\375\235\365_\372\014.j\021e\241f\000\371\n\307\017\276z\250 T\343\262\\\r" > > > , Envelope: 1089 bytes, Signature: 0 bytes -peer0.org1.example.com | [a92 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a93 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:10991477598238104586 tag:EMPTY mem_req:\270R\345;\301\030\275\311\272l\201\326fv\354\nh\335%t\267?\002 z\211\030\272r\361\375\235\365_\372\014.j\021e\241f\000\371\n\307\017\276z\250 T\343\262\\\r" > > > , Envelope: 1089 bytes, Signature: 0 bytes -peer0.org1.example.com | [a94 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [a95 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [a96 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 10991477598238104586, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 441 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [a97 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020)" signature:"0D\002 &\322V\357\263\272`\214\334\343\221-Y\305\322\033r\310J\373\265_\007(\237\350\342\3279c^\222\002 [M\343\323GI{\342\215\211\303\302\377\254\261\366\327\366\320\177\377Ua\320\205%\314\n>\243\246\346" secret_envelope: > -peer0.org1.example.com | [a98 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 10991477598238104586, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 441 bytes, Signature: 0 bytes -peer0.org1.example.com | [a99 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [a9a 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [a9b 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [a9c 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [a9d 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [a9e 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [a9f 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [aa0 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [aa1 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [aa2 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [aa3 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [aa4 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [aa5 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [aa6 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [aa7 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [aa8 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [aa9 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [aaa 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [aab 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [aac 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [aad 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [aaf 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [ab0 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [6ff 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [700 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [701 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [702 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [703 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [704 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [705 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [706 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [707 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [708 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [709 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [70a 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [70b 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [70c 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [70d 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [70e 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [70f 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [710 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [711 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [712 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [713 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [714 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [715 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [716 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [717 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [718 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [719 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [71a 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [71b 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [71c 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [98e 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [98f 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [990 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [992 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [993 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [995 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [994 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [991 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [997 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [996 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [998 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [999 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [99a 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [99b 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [99c 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [99d 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [99e 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [99f 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9a0 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [9a1 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9a2 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9a3 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9a4 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [9a5 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [9a6 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [9a7 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [9a8 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [9a9 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [9aa 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [9ab 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [9ac 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [9ae 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9ad 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [9b0 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9af 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9b1 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9b2 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9b3 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9b4 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [9b5 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9b6 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9b7 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [9b8 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9b9 05-31 05:21:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [9ba 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9bb 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [9bc 05-31 05:21:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [9bd 05-31 05:21:56.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [9be 05-31 05:21:56.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [9bf 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [9c1 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9c2 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9c0 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [9c3 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [9c4 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9c5 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9c7 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9c8 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [9c6 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9c9 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9ca 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9cb 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9cc 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9cd 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [9ce 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9cf 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [9d0 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [9d1 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [9d2 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [9d3 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9d4 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9d5 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [9d6 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9d7 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [aa5 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [aa6 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [aa7 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [aa8 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [aa9 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [aaa 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [aab 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [aac 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [aad 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [aae 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [aaf 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [ab0 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [ab1 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [ab2 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [ab3 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ab4 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ab5 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ab6 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [ab7 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ab8 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ab9 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [aba 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [abb 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | [71d 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [71e 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [71f 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [720 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [721 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [722 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [723 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [724 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [725 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [726 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [727 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [728 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [729 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [72a 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [72b 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [72c 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [72d 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [72e 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [72f 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [730 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [731 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [732 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [733 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [734 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [735 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -orderer.example.com | [736 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -orderer.example.com | [737 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [738 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [739 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...68AEDB903A2A4095FC616A668A7C43DD -orderer.example.com | [73a 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: BB1BC2B885CF90E6A19679C2A75B5003195991EB03C36012B155EFF509244666 -orderer.example.com | [73b 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfigBlockNum from 1 to 2 -orderer.example.com | [73c 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [73d 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [73e 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org2.example.com | [9d8 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [9d9 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [9da 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [9db 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9dc 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:v\233R\360\321z\232\017\350\341\007\342\316ex\002 t\305\247`\010\022\274\346\3211q\244 > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [9dd 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:v\233R\360\321z\232\017\350\341\007\342\316ex\002 t\305\247`\010\022\274\346\3211q\244 > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [9de 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9df 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:v\233R\360\321z\232\017\350\341\007\342\316ex\002 t\305\247`\010\022\274\346\3211q\244 > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [9e0 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [9e1 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [9e2 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [9e3 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [9e4 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [9e5 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [9e6 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [9e7 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [9e8 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [9e9 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [9ea 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [97c 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [97d 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [97e 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [97f 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [980 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [982 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [981 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > alive: alive: alive: -peer1.org1.example.com | [983 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [984 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [985 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [986 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [987 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [988 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [989 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [98a 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [98b 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [98c 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [98d 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [98e 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [98f 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [990 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [991 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [992 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [993 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [994 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [995 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [996 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [997 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [998 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [999 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [99a 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [99b 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [99c 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [99d 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [99e 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [99f 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [9a0 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [9a2 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9a3 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [9a1 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [9a4 05-31 05:22:00.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -orderer.example.com | [73f 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...68AEDB903A2A4095FC616A668A7C43DD -orderer.example.com | [740 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 12B31011B49FDCC036F514E03F4ADC4E4C017F7D971B61989B80C2DE3220BE86 -orderer.example.com | [741 05-31 05:21:38.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x1c, 0x89, 0x5b, 0x8a, 0xa8, 0xc6, 0x73, 0x3c, 0xac, 0x1f, 0xe1, 0x55, 0x12, 0x70, 0xf, 0x84, 0xef, 0xfb, 0xa4, 0xcc, 0xbe, 0x67, 0x8, 0xce, 0x57, 0xdf, 0x28, 0x5b, 0xd, 0x99, 0x90, 0xd4} txOffsets= -orderer.example.com | txId= locPointer=offset=70, bytesLength=12152 -orderer.example.com | ] -orderer.example.com | [742 05-31 05:21:38.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40094], isChainEmpty=[false], lastBlockNumber=[2] -orderer.example.com | [743 05-31 05:21:38.43 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -orderer.example.com | [744 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [745 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.6:39290 -orderer.example.com | [746 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.6:39290 -orderer.example.com | [747 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [748 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [749 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [74a 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [74b 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [74c 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [74d 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ -orderer.example.com | J62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy -orderer.example.com | za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX -orderer.example.com | fv5YS9/ysd8jy4a+pg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [74e 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8f88 gate 1527744100936001600 evaluation starts -orderer.example.com | [74f 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f88 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [750 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f88 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [9eb 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:v\233R\360\321z\232\017\350\341\007\342\316ex\002 t\305\247`\010\022\274\346\3211q\244 > alive:a\361p\265\036\362" secret_envelope: > -peer0.org2.example.com | [9ec 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [9ed 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9ee 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [9ef 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [9f0 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9f1 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [9f2 05-31 05:21:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9f3 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [9f5 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [9f4 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [9f6 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9f7 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9f8 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [9f9 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [9fb 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [9fa 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [9fc 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [9fd 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [9fe 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [9ff 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a00 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [a01 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a02 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [a03 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a04 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [a05 05-31 05:21:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [aae 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020*" signature:"0E\002!\000\266\tP/3b\335~e\225\001\022\234BN\352\321\355x\223\341\346;\232g\251\371\177f\016CX\002 \013\032\027\0309u\360\231\321\272\207\266}FP\366\352YE\262\3712\026\001Q\022\361\037\007\027J\346" > -peer0.org1.example.com | [ab1 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [ab2 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [ab3 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ab4 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [ab5 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ab6 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [ab7 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ab9 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [ab8 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [aba 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [abb 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [abc 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [abd 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [abe 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [abf 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [ac0 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ac1 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [ac2 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ac3 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org1.example.com | [ac4 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org1.example.com | [ac5 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ac6 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [ac7 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ac8 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [ac9 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [aca 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [acb 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [751 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f88 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [752 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f88 principal evaluation fails -orderer.example.com | [753 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8f88 gate 1527744100936001600 evaluation fails -orderer.example.com | [754 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [755 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [756 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [757 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [758 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [759 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [75a 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [75b 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [75c 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8f98 gate 1527744100937511700 evaluation starts -orderer.example.com | [75d 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f98 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [75e 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f98 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [75f 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f98 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [760 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f98 principal evaluation fails -orderer.example.com | [761 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8f98 gate 1527744100937511700 evaluation fails -orderer.example.com | [762 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [763 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [a06 05-31 05:21:59.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [a07 05-31 05:21:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [a08 05-31 05:21:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [a09 05-31 05:21:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a0a 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [a0b 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [a0c 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [a0d 05-31 05:21:59.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a0e 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [a0f 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a10 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [a11 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a12 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [a13 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [a14 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [a15 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [a16 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [a17 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [a18 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a19 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [a1a 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [a1b 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a1d 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [a1c 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020#" signature:"0D\002 {\247\272\264\347\031Z\363\274\276q\231\343\246-A\177\2519\346\243\025i\232\031\227K\037\024\023@\372\002 J\032\204/9\017\223\256\206\323\300\325\361\250\nr\"\220\n\344+bz\347\261\353\346\277=K\355\027" > alive: alive: -peer0.org2.example.com | [a1e 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [a1f 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [a20 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [a22 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [a21 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a23 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [a24 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [a25 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [a26 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a27 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [a28 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [a29 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [a2a 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [a2b 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [a2c 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a2d 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [a2e 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a2f 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [a30 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a31 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [a32 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [a33 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [a34 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [a35 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [a36 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [a37 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a39 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [a38 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [a3a 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a3b 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > alive: alive: -peer0.org2.example.com | [a3c 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [a3d 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [a3e 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [a3f 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a40 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [a41 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a42 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [a44 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [a45 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [a43 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [a47 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a48 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [a4a 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [a49 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a4b 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [a4f 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a50 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [a51 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [a52 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [a53 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [a54 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [a55 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [a4e 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [a56 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a4c 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [a57 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [a59 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [a5a 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a58 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [a46 05-31 05:21:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [acc 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [acd 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ace 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [acf 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [ad0 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [ad1 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ad2 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [ad3 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ad4 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [ad5 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [ad6 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [ad7 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [ad8 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [ad9 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [ada 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [adb 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [adc 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [add 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [ade 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [adf 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ae1 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [ae2 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ae0 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020+" signature:"0E\002!\000\225`\265\\|K_w\\\345n\234\210+\376\204\020N]\240D\222\274G\243h\212\032-\3279\310\002 !\255\213\261\201a0\235[s\200\3463\245wfU<\242>&\221\016\035\215pmS\007E\3150" secret_envelope: > -peer0.org1.example.com | [ae3 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [ae4 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [ae5 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ae6 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [ae7 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ae8 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [ae9 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [aea 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [aec 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [aeb 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [aed 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [aef 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [aee 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [af0 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [af1 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [af2 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [af3 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [af4 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [af5 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [af6 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [af7 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [af8 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" secret_envelope:A\002\377\236\207j\\\211\257R\337\217\233\262\306\002 \006\241\320\375\313.\265\255/Pr\230\216s\311a\211~\031\324\177,\374)\347\317\3609^\031S\374" > > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [af9 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [afa 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [afb 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [afe 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [afd 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [afc 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [b00 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [aff 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [b01 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [b04 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [b02 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [b05 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b06 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [b07 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [b08 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [abc 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [abd 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [abe 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [abf 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [ac0 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ac1 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [ac2 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ac3 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ac4 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ac5 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ac6 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [ac7 05-31 05:22:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ac8 05-31 05:22:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ac9 05-31 05:22:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [aca 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [acb 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [acc 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [acd 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ace 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [acf 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [ad0 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [ad1 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [ad2 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [ad3 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [ad4 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [ad5 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ad6 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ad7 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [ad8 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [ad9 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ada 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [adb 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [adc 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [add 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ade 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [adf 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ae0 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ae1 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ae2 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ae3 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [ae5 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ae6 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ae4 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ae7 05-31 05:22:06.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [ae8 05-31 05:22:06.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [ae9 05-31 05:22:06.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [aea 05-31 05:22:06.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [aeb 05-31 05:22:06.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [aec 05-31 05:22:06.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [aed 05-31 05:22:06.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [aee 05-31 05:22:06.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [aef 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [af0 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [af1 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [af2 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [764 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [765 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8fa0 gate 1527744100938251500 evaluation starts -orderer.example.com | [766 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8fa0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [767 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8fa0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [768 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [769 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [76a 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8fa0 principal matched by identity 0 -orderer.example.com | [76b 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 33 52 93 35 d1 60 10 99 3a a4 26 df f9 e3 55 e7 |3R.5.`..:.&...U.| -orderer.example.com | 00000010 76 c6 8e af 27 fd cc 24 ef 34 63 75 6a b3 18 bd |v...'..$.4cuj...| -orderer.example.com | [76c 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ed 17 d8 31 9e 78 ab 71 d4 f4 76 |0E.!....1.x.q..v| -orderer.example.com | 00000010 2b 1d c9 bf 4e 1e 6f 92 cd 96 32 e8 77 74 bc 5e |+...N.o...2.wt.^| -orderer.example.com | 00000020 91 ce 9a 4e b7 02 20 0f 2f 69 9c d5 73 c3 52 19 |...N.. ./i..s.R.| -orderer.example.com | 00000030 f5 44 fa bc ff 68 7c 6c 7b 43 6d d0 cd db 07 68 |.D...h|l{Cm....h| -orderer.example.com | 00000040 2a 5d 5d 29 3b 8a 2a |*]]);.*| -orderer.example.com | [76d 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8fa0 principal evaluation succeeds for identity 0 -orderer.example.com | [76e 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8fa0 gate 1527744100938251500 evaluation succeeds -orderer.example.com | [76f 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [770 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [771 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [772 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [773 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [774 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer0.org1.example.com | [b09 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [b0a 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b0b 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [b0c 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [b0d 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [b0e 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [b0f 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [b10 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [b11 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [b12 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b13 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b14 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [b15 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [b16 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b17 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [b18 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b19 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [b1a 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [b1b 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [b1c 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [b1d 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [b1e 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [b1f 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b20 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b21 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [b22 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b23 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b24 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b25 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [b26 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 43 but got ts: inc_num:1527744091508552400 seq_num:42 -peer0.org1.example.com | [b27 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b28 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b29 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [b2a 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [b2b 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [b2c 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [b2d 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [b2e 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [b2f 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b30 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b03 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [b31 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [b32 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [b33 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b34 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [b35 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b36 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [b37 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 46 but got ts: inc_num:1527744090808810100 seq_num:44 -peer0.org1.example.com | [b38 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b39 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b3a 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [b3b 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b3c 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b3d 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b3e 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [b3f 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 43 but got ts: inc_num:1527744091508552400 seq_num:42 -peer0.org1.example.com | [b40 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a4d 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [a5b 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [a5c 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [a5d 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a5e 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [a5f 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [a60 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a61 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [a62 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a63 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [a64 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [a65 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [a66 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [a68 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [a67 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [a69 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [a6a 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [a6b 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a6c 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [a6d 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [a6e 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [af3 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [af4 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [af5 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [af6 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [af7 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [af8 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [af9 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [afa 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [afb 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [afc 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [afe 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [aff 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [afd 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [b00 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [9a5 05-31 05:22:00.97 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [9a6 05-31 05:22:00.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [9a7 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [9a8 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [9a9 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9aa 05-31 05:22:01.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [9ab 05-31 05:22:01.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org1.example.com | [9ac 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [9ad 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [9ae 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9af 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9b0 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9b1 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9b2 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9b3 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9b4 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9b5 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9b6 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [9b7 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [9b8 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9b9 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9ba 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [9bb 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [b41 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b42 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [b43 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [b44 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [b45 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [b46 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [b47 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [b48 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b49 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b4a 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [b4b 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [b4c 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [b4d 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b4e 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [b4f 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b50 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [b51 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b52 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [b53 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [b54 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [b55 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [b56 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [b57 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [b58 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b59 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b5a 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [b5b 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [b5c 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020-" signature:"0D\002 \002+\320S(\204\271\360\325\270\370\262\211\234\363\2008^?\337A'*\366\366+\177\225r\234\276<\002 \024\277/\322\246)t}\363\262\254\231\200+7\267}\007\277\324z\037\3042\314\310\033\237D\003\371\364" > -peer0.org1.example.com | [b5d 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [b5e 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [b5f 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b60 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b61 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [b62 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b63 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b64 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b65 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [b66 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [b67 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [b68 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [b69 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [b6a 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [b6b 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b6c 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b6d 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [b6e 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [b6f 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b70 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [b71 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b72 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [b73 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b74 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b75 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b76 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b77 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [b78 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b79 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [b7a 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b7b 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [b7c 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b7d 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [b7e 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [b7f 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer1.org1.example.com | [9bc 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [9bd 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [9be 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [9bf 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [9c0 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [9c1 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [9c2 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [9c3 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [9c4 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9c6 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9c5 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9c7 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9c8 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9c9 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9ca 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [9cb 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [9cc 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9cd 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [9ce 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9cf 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9d0 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [9d1 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [9d2 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9d3 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [9d4 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9d5 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9d6 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [9d7 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [9d8 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9d9 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9da 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [9db 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [9dc 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [9dd 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [9de 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [9df 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [9e0 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [9e1 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [9e2 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9e3 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9e4 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [9e5 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [9e6 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9e7 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [9e8 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9e9 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9ea 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [9eb 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [9ec 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9ed 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b80 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [b81 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b82 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [b83 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [b84 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b85 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [b86 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b87 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b88 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b89 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [b8a 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [b8b 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [b8c 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [b8d 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [b8e 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [b8f 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [b90 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b91 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b92 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [b93 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [b94 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b95 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [b96 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [b97 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [a6f 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [a70 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [a71 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [a72 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [a73 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a74 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a75 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [a76 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a77 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a78 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a79 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [a7a 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [a7b 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [a7c 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [a7d 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [a7e 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [a7f 05-31 05:21:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a80 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [a81 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [a82 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a83 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [a84 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a85 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [a86 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a87 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b01 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [b02 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b03 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b04 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [b06 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b07 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b08 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b09 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [b0a 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [b0b 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [b0c 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [b0d 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [b0e 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [b0f 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b10 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [b05 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [b11 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b12 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [b14 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [b15 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b16 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b17 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [b13 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [b98 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b99 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [b9a 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b9b 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [b9c 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b9d 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [b9e 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [b9f 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ba0 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [ba1 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [ba2 05-31 05:22:06.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [ba3 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer0.org1.example.com | [ba4 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [ba5 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [ba6 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [ba7 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ba8 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [ba9 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [baa 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [bab 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [bac 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [bad 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [bae 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [baf 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [bb0 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a88 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [a89 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [a8a 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [a8b 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [a8c 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [a8d 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [a8e 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [a8f 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a90 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [a91 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [a92 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [a93 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a94 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [a95 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 39 but got ts: inc_num:1527744091618763800 seq_num:38 -peer0.org2.example.com | [a96 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a97 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a98 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [a99 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a9a 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a9b 05-31 05:21:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [a9c 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [a9d 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 42 but got ts: inc_num:1527744090808810100 seq_num:40 -peer0.org2.example.com | [a9e 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [a9f 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [aa0 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [b18 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b1a 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b1b 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b1c 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b19 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [b1d 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b1e 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [b1f 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b20 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b21 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [b22 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [b23 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [b24 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [b25 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [b26 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [b27 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [b28 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b29 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [b2a 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b2b 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [b2c 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b2d 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org2.example.com | [b2e 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b2f 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org2.example.com | [b30 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b31 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [b32 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bb1 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bb2 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [bb4 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [bb5 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bb7 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bb8 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [bb6 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bb9 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [bba 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [bbb 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [bbc 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [bb3 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bbd 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [bbf 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [bc0 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [bbe 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bc1 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [bc2 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bc3 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [bc4 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bc5 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [bc6 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bc7 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [775 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420351f00) start: > stop: > from 172.18.0.6:39290 -orderer.example.com | [776 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -orderer.example.com | [777 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -orderer.example.com | [778 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes -orderer.example.com | [779 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -orderer.example.com | [77a 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -orderer.example.com | [77b 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420351f00) for 172.18.0.6:39290 -orderer.example.com | [77c 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -orderer.example.com | [77d 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -orderer.example.com | [77e 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [77f 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420351f00) for 172.18.0.6:39290 -orderer.example.com | [780 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -orderer.example.com | [781 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [782 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:39646 -orderer.example.com | [783 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.4:39646 -orderer.example.com | [784 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [785 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [786 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [787 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [788 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [789 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [78a 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc -orderer.example.com | 2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r -orderer.example.com | 94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL -orderer.example.com | pKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x -orderer.example.com | Fi/K4VUkcrt2/JHLe2M= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [78b 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e320 gate 1527744101132169200 evaluation starts -orderer.example.com | [78c 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [78d 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [78e 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [78f 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 principal evaluation fails -orderer.example.com | [790 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e320 gate 1527744101132169200 evaluation fails -orderer.example.com | [791 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [792 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [793 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [794 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [795 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [796 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [797 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [798 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [799 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8090 gate 1527744101140629100 evaluation starts -orderer.example.com | [79a 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [79b 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [9ee 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [9ef 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [9f0 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9f1 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9f2 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [9f3 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9f4 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:10991477598238104586 tag:EMPTY mem_req:\270R\345;\301\030\275\311\272l\201\326fv\354\nh\335%t\267?\002 z\211\030\272r\361\375\235\365_\372\014.j\021e\241f\000\371\n\307\017\276z\250 T\343\262\\\r" > > > , Envelope: 1089 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [9f5 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:10991477598238104586 tag:EMPTY mem_req:\270R\345;\301\030\275\311\272l\201\326fv\354\nh\335%t\267?\002 z\211\030\272r\361\375\235\365_\372\014.j\021e\241f\000\371\n\307\017\276z\250 T\343\262\\\r" > > > , Envelope: 1089 bytes, Signature: 0 bytes -peer1.org1.example.com | [9f6 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [9f7 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 10991477598238104586, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 441 bytes, Signature: 0 bytes -peer1.org1.example.com | [9f8 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 10991477598238104586, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 441 bytes, Signature: 0 bytes -peer1.org1.example.com | [9f9 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [9fa 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 10991477598238104586, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 441 bytes, Signature: 0 bytes -peer1.org1.example.com | [9fb 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9fc 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [9fd 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [9fe 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [bc8 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [bc9 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [bca 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bcb 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [bcc 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [bcd 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [bce 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [bcf 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [bd0 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [bd1 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [bd2 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [bd3 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bd4 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [bd5 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bd6 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [bd7 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [bd8 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\304c\002^#\274\313\351=\372\200\253\354g\370\\\273\341,`\221\002 4\017\210{[n\r\003\363\241\222G\254\224r\316\222\341\334\025\315R\352G\224\013\000UI:Yg" > alive:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020/" signature:"0D\002 Yz\265[\362S{E\327n_Np\332AOP\007\023\324T\327\216m2\344\006A\035W\363^\002 -$\032\324\225k(\000\003\224&\337\263\307#\016\264\237\2721\0011\335\026\262\017\332\346\246f\273\016" > -peer0.org1.example.com | [bd9 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [bda 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [bdb 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [aa1 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [aa2 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [aa3 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [aa4 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [aa5 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [aa6 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [aa7 05-31 05:21:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [aa8 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [aa9 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [aaa 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [aab 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [aac 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [aad 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [aae 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [aaf 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [ab0 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [ab1 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [ab2 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [ab3 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [ab4 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ab5 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [ab6 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [ab7 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [ab8 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ab9 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b33 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b34 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [b35 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [b36 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [b37 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [b38 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [b39 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [b3a 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [b3b 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b3c 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [b3d 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [b3e 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b3f 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [b40 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b41 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [b42 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b43 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b44 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [b45 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [b46 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [b47 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [b48 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [b49 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [b4a 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [b4b 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b4c 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [79c 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [79d 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 principal evaluation fails -orderer.example.com | [79e 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8090 gate 1527744101140629100 evaluation fails -orderer.example.com | [79f 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [7a0 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [7a1 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [7a2 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8098 gate 1527744101141343700 evaluation starts -orderer.example.com | [7a3 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8098 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [7a4 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8098 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [7a5 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [7a6 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [7a7 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8098 principal matched by identity 0 -orderer.example.com | [7a8 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ab c4 68 d1 2e b2 17 62 a4 47 e2 03 d9 1c 12 e2 |..h....b.G......| -orderer.example.com | 00000010 e9 82 52 e9 46 a0 14 4a d5 3e 39 8b 1c b6 5c ac |..R.F..J.>9...\.| -orderer.example.com | [7a9 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 02 50 7b 56 4b 5a 3f 22 97 b5 d9 89 |0D. .P{VKZ?"....| -orderer.example.com | 00000010 8d 69 e4 1e 5f 93 21 2e d5 a7 6f 8b c6 c6 93 cf |.i.._.!...o.....| -orderer.example.com | 00000020 75 5c 47 f1 02 20 3c 82 2f 8c 84 5e 6f 73 be a0 |u\G.. <./..^os..| -orderer.example.com | 00000030 ec 01 bf 77 14 b3 98 ba 53 95 d0 99 e5 60 fb 39 |...w....S....`.9| -orderer.example.com | 00000040 2b c6 e3 12 1d d1 |+.....| -orderer.example.com | [7aa 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8098 principal evaluation succeeds for identity 0 -orderer.example.com | [7ab 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8098 gate 1527744101141343700 evaluation succeeds -orderer.example.com | [7ac 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [bdc 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [bdd 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [bde 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [bdf 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [be0 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [be1 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [be2 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [be3 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [be4 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [be5 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [be6 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [be7 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [be8 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [be9 05-31 05:22:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bea 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [beb 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [bec 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bed 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [bee 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bef 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [bf0 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [bf1 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [bf2 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [bf3 05-31 05:22:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org1.example.com | [bf4 05-31 05:22:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org1.example.com | [bf5 05-31 05:22:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bf6 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [bf7 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bf8 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [bf9 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [aba 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [abb 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [abc 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [abd 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [abe 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [abf 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ac1 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ac2 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [ac0 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ac3 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [ac4 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ac5 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ac6 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [ac7 05-31 05:22:01.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [ac8 05-31 05:22:01.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [ac9 05-31 05:22:01.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [aca 05-31 05:22:01.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [acb 05-31 05:22:01.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [acc 05-31 05:22:01.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [acd 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ace 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [acf 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ad0 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ad1 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ad2 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [b4d 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b4e 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [b4f 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b50 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b51 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [b52 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b53 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [b54 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b55 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [b56 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [b57 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [b58 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b59 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [b5a 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b5b 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [b5c 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b5d 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [b5e 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [b5f 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [b60 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b61 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [b62 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [b63 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [b64 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b65 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [b66 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b67 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [b68 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [b69 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [b6a 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [b6b 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [b6c 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [b6d 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [b6e 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [b6f 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b70 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [b71 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [b72 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [b73 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020/" signature:"0D\002 Yz\265[\362S{E\327n_Np\332AOP\007\023\324T\327\216m2\344\006A\035W\363^\002 -$\032\324\225k(\000\003\224&\337\263\307#\016\264\237\2721\0011\335\026\262\017\332\346\246f\273\016" > alive: alive: alive: -peer1.org2.example.com | [b74 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [b75 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b76 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [b77 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [b78 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [b79 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b7a 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b7b 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [b7c 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b7d 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [b7e 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b7f 05-31 05:22:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [b80 05-31 05:22:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b81 05-31 05:22:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [b82 05-31 05:22:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b83 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [b84 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [b85 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [b86 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b87 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [b88 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [b89 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [b8a 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b8b 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [b8c 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [b8d 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b8e 05-31 05:22:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [b8f 05-31 05:22:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [b90 05-31 05:22:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [b91 05-31 05:22:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [b92 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [b93 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [b94 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [b95 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [b96 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [b97 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [b98 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [b99 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [b9a 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [b9b 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [b9c 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > alive: alive: -peer1.org2.example.com | [b9d 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [b9e 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [b9f 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [ba0 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [ba1 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [ba2 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ba3 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [ba4 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ba5 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [ba6 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [ba7 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [ba8 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [ba9 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [baa 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [bab 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [bac 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [bad 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [bae 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [baf 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [bb0 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [bb1 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:D\300c\370\361n1'^\312\355\005o\031\375\251\326.,\273I\257Y\276c\002 ,\223\331\254q\\SS\356\240\231\323S$\213\311b]\360\366\\d\254\222\364\273'\235\312Z\272\034" secret_envelope: > -peer1.org2.example.com | [bb2 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org2.example.com | [bb3 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bb4 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [bb5 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [bb6 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [bb7 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [bb8 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [bb9 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [bba 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [bbb 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bbc 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [bbd 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bbe 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [bbf 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bc0 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [bc1 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [bc2 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [bc3 05-31 05:22:10.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [bc4 05-31 05:22:10.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [bc5 05-31 05:22:10.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [bc6 05-31 05:22:10.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [bc7 05-31 05:22:10.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [bc8 05-31 05:22:10.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [bc9 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [7ad 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [7ae 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [7af 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [7b0 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [7b1 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [7b2 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420314aa0) start: > stop: > from 172.18.0.4:39646 -orderer.example.com | [7b3 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -orderer.example.com | [7b4 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -orderer.example.com | [7b5 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes -orderer.example.com | [7b6 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -orderer.example.com | [7b7 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -orderer.example.com | [7b8 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -orderer.example.com | [7b9 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -orderer.example.com | [7ba 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -orderer.example.com | [7bb 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [7bc 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -orderer.example.com | [7bd 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -orderer.example.com | [7be 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [7bf 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:38448 -orderer.example.com | [7c0 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:38448 -orderer.example.com | [7c1 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [7c2 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [7c3 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [7c4 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [7c5 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [7c6 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [7c7 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj -orderer.example.com | SPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue -orderer.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l -orderer.example.com | XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S -orderer.example.com | Qh80aTnAegSTSqmA1w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7c8 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1527744101387499800 evaluation starts -orderer.example.com | [7c9 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [7ca 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [7cb 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [7cc 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 principal evaluation fails -orderer.example.com | [7cd 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1527744101387499800 evaluation fails -orderer.example.com | [7ce 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [7cf 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [7d0 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -orderer.example.com | [7d1 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -orderer.example.com | [7d2 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [7d3 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [7d4 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [7d5 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [7d6 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1527744101388532800 evaluation starts -orderer.example.com | [7d7 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [7d8 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [7d9 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [7da 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [7db 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 principal matched by identity 0 -orderer.example.com | [7dc 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c 3e fa ef 20 39 e9 85 27 d2 fb f0 d1 e7 42 46 |.>.. 9..'.....BF| -orderer.example.com | 00000010 3a d2 8a 90 44 cc 2a dc ae 47 77 2d d4 cd b9 f7 |:...D.*..Gw-....| -orderer.example.com | [7dd 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 05 a9 c0 86 01 8c c5 76 56 83 db 58 |0D. .......vV..X| -orderer.example.com | 00000010 cf df 31 94 e9 8e 94 e2 4e c2 fc da cd 09 c0 dd |..1.....N.......| -orderer.example.com | 00000020 c0 45 d4 0c 02 20 65 15 45 86 2a b1 08 34 57 75 |.E... e.E.*..4Wu| -orderer.example.com | 00000030 20 d9 9f 1b ee 6d 3f c2 21 68 40 6e a5 3b 4e ef | ....m?.!h@n.;N.| -orderer.example.com | 00000040 f4 45 f5 ae fb cd |.E....| -orderer.example.com | [7de 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 principal evaluation succeeds for identity 0 -orderer.example.com | [7df 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1527744101388532800 evaluation succeeds -orderer.example.com | [7e0 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [7e1 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [7e2 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [7e3 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [7e4 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [7e5 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [7e6 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42056bae0) start: > stop: > from 172.18.0.5:38448 -orderer.example.com | [7e7 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -orderer.example.com | [7e8 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -orderer.example.com | [7e9 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes -orderer.example.com | [7ea 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -orderer.example.com | [7eb 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -orderer.example.com | [7ec 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -orderer.example.com | [7ed 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -orderer.example.com | [7ee 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -orderer.example.com | [7ef 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [7f0 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -orderer.example.com | [7f1 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -orderer.example.com | [7f2 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [7f3 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41350 -orderer.example.com | [7f4 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:41350 with txid '82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031' of type ENDORSER_TRANSACTION -peer0.org1.example.com | [bfa 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [bfb 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bfc 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [bfd 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [bfe 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [bff 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [c00 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [c01 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c02 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [c03 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c04 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [c05 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [c06 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [c07 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [c08 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [c09 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [c0a 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [c0b 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [c0c 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c0d 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [c0e 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [c0f 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [ad3 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [ad4 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [ad5 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [ad6 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [ad7 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [ad8 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ad9 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [ada 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [adb 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [adc 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [add 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ade 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [adf 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [ae0 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ae1 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ae2 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [ae3 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ae4 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ae5 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [ae6 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ae7 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ae8 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [ae9 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [aea 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [aeb 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [9ff 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [a00 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [a01 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [a02 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [a03 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [a04 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [a05 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [a06 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a07 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [a08 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [a09 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [a0a 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [a0b 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [a0c 05-31 05:22:02.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a0d 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [a0e 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [a0f 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a10 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [a11 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [a12 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [a13 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [c10 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0200" signature:"0D\002 ]\221\370(\373\227=\354\017\201\332fn4;!6A\237\016L\240\255\236&\235}8Vy8:\002 (\343\224\262\243\026\002\177(\366%\n\" \365\377\343\370\214]\245\206C\202#\311,\200\353\200[\366" secret_envelope: > -peer0.org1.example.com | [c11 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [c12 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c13 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [c14 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [c15 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c16 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [c17 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [c18 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [c19 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [c1a 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [c1b 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [c1c 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [c1d 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c1e 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [c1f 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c20 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [c21 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c22 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [c23 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [c24 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c25 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [c26 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [c27 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c28 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [c29 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [c2a 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [c2b 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c2c 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [c2d 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [c2e 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [c2f 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [c30 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c31 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [c32 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [c33 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c34 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c35 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [c36 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c38 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [c37 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [c39 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c3a 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [c3b 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c3c 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c3d 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [c3e 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [c3f 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [c40 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [c41 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [c42 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [c43 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [c44 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c45 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [c46 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [c47 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [c48 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [c49 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c4a 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c4b 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c4c 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [c4d 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c4e 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c4f 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c50 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [bca 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [bcb 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [bcc 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [bcd 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bcf 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [bce 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [bd0 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bd1 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a14 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [a15 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [a16 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [a17 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [a18 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a1a 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [a1b 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [a1c 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020)" signature:"0D\002 &\322V\357\263\272`\214\334\343\221-Y\305\322\033r\310J\373\265_\007(\237\350\342\3279c^\222\002 [M\343\323GI{\342\215\211\303\302\377\254\261\366\327\366\320\177\377Ua\320\205%\314\n>\243\246\346" > alive: alive: alive: -peer1.org1.example.com | [a1d 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [a1e 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a19 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [a1f 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [a20 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [a21 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a22 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [a23 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [a24 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [a25 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [a26 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a27 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [a28 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [a29 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [a2a 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c51 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 48 but got ts: inc_num:1527744091508552400 seq_num:47 -peer0.org1.example.com | [c52 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [c53 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [c54 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c55 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [c56 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [c57 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [c58 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [c59 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [c5a 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [c5b 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [c5c 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c5d 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [c5e 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [c5f 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c60 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [c61 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c62 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 53 but got ts: inc_num:1527744091840124700 seq_num:51 -peer0.org1.example.com | [c63 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c64 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c65 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [c66 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c67 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c68 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [c69 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [c6a 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 48 but got ts: inc_num:1527744091508552400 seq_num:47 -orderer.example.com | [7f5 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [7f6 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [7f7 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [7f8 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [7f9 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [7fa 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [7fb 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [7fc 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1527744129874773700 evaluation starts -orderer.example.com | [7fd 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [aec 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [aed 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [aee 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [aef 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [af0 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [af1 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [af2 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [af3 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [af4 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [af5 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [af6 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [af7 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [af8 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [af9 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [afa 05-31 05:22:01.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [afb 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [afd 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [afc 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [afe 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [aff 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [b00 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [b01 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b02 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [b03 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b04 05-31 05:22:01.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [b05 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [b06 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [b07 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [b08 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b09 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [b0a 05-31 05:22:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [b0b 05-31 05:22:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [b0c 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer0.org2.example.com | [b0d 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [b0e 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [b10 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [b11 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b12 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [b13 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b0f 05-31 05:22:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [b14 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b15 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [b16 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [b17 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [b18 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [b19 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b1a 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [c6b 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c6c 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [c6d 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [c6e 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [c6f 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [c70 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [c71 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [c72 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [c73 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c74 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [c75 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [c76 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [c77 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [c78 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c79 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [c7a 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [c7b 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [c7c 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [c7d 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [c7e 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [c7f 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [c80 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [a2b 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a2c 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [a2d 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a2e 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [a2f 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [a30 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [a31 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [a32 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a33 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [a34 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a35 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [a36 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a37 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [a38 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [a39 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [a3a 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a3b 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [a3c 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [a3d 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [a3e 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a3f 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [a40 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [a41 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a42 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [a43 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [a44 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [a45 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [a46 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [a47 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [a48 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [a49 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a4a 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [a4b 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bd2 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [bd3 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [bd4 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [bd5 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [bd6 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [bd7 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [bd8 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [bd9 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [bda 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [bdc 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [bdb 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [bdd 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [bde 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [bdf 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [be0 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [be1 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [be2 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [be3 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [be4 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [be5 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [be6 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [be7 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [be8 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [be9 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [7fe 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [7ff 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [800 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 principal evaluation fails -orderer.example.com | [801 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1527744129874773700 evaluation fails -orderer.example.com | [802 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [803 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [804 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [805 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [806 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [807 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [808 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [809 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [80a 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e230 gate 1527744129876475600 evaluation starts -orderer.example.com | [80b 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e230 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [80c 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e230 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [80d 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e230 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [80e 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e230 principal evaluation fails -orderer.example.com | [80f 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e230 gate 1527744129876475600 evaluation fails -peer0.org1.example.com | [c81 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [c82 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [c83 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [c84 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [c85 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [c86 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [c87 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\363kN\324\356\002 o\227\367\266\244\301^\366\340(\204\256B\0340\322!f\314Pui\016\313\325\214\344\231W\260-p" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0202" signature:"0E\002!\000\367$/0\206;%6b\230\2124\250\302?a\376u3\353\030\300e%\01492\026\245$\344\217\002 \177\317\303\350\361\301bE\\\307\021\207\237\201\353\311V\324\033]\026L:!`\353\367\307\264\356\340n" > -peer0.org1.example.com | [c88 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [c89 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [c8a 05-31 05:22:08.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -peer0.org1.example.com | [c8b 05-31 05:22:08.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully -peer0.org1.example.com | [c8c 05-31 05:22:08.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -peer0.org1.example.com | [c8d 05-31 05:22:08.79 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -peer0.org1.example.com | [c8e 05-31 05:22:09.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 -peer0.org1.example.com | [c8f 05-31 05:22:09.80 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) -peer0.org1.example.com | [c90 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -peer0.org1.example.com | [c91 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [c92 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [c93 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org1.example.com | [c94 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 -peer0.org1.example.com | [c95 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer0.org1.example.com | [c96 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" -peer0.org1.example.com | [c97 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" -peer0.org1.example.com | [c98 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" -peer0.org1.example.com | [c99 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer0.org2.example.com | [b1b 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [b1c 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b1d 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [b1e 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [b1f 05-31 05:22:02.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [b20 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [b21 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [b22 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [b23 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [b24 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [b25 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [b26 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [b27 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b28 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer0.org2.example.com | [b29 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [b2a 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b2b 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [b2c 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [b2d 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [b2e 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b2f 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [b30 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b31 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [b32 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [b33 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [b36 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b35 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [b38 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b37 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [b39 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [b3a 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b3b 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [b3c 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [b34 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b3d 05-31 05:22:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b3e 05-31 05:22:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [b3f 05-31 05:22:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b40 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [b41 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b42 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [b43 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b44 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [b45 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [b46 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [b47 05-31 05:22:03.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b48 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [b49 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [810 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [811 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [812 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [813 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1527744129880254700 evaluation starts -orderer.example.com | [814 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [815 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [816 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [817 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [818 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal matched by identity 0 -orderer.example.com | [819 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 25 1a c4 8e 89 b6 1b 83 8e 11 c0 69 b4 51 b2 2b |%..........i.Q.+| -orderer.example.com | 00000010 3b 54 75 e5 56 48 9f 11 15 4c 9d 24 93 74 c6 94 |;Tu.VH...L.$.t..| -orderer.example.com | [81a 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b 00 65 50 4a b4 59 c9 4f 7f 43 5e |0D. ..ePJ.Y.O.C^| -orderer.example.com | 00000010 b8 90 97 05 cb 2f 65 05 58 0b 0b c9 b1 63 08 ac |...../e.X....c..| -orderer.example.com | 00000020 7b 11 1a 8f 02 20 16 81 ad 6f 29 36 9d 23 61 09 |{.... ...o)6.#a.| -orderer.example.com | 00000030 b9 e7 41 1d 8a 13 ca 78 ab 20 f3 c7 3c 9e cc aa |..A....x. ..<...| -orderer.example.com | 00000040 f8 db d4 57 1d 42 |...W.B| -orderer.example.com | [81b 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation succeeds for identity 0 -orderer.example.com | [81c 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1527744129880254700 evaluation succeeds -orderer.example.com | [81d 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [81e 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [81f 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [820 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -peer0.org1.example.com | [c9a 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer0.org1.example.com | [c9b 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [c9c 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [c9d 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] handling PUT_STATE from chaincode -peer0.org1.example.com | [c9e 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [c9f 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [ca0 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] handling PUT_STATE from chaincode -peer0.org1.example.com | [ca1 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [ca2 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [ca3 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [82a11985] notifying Txid:82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, channelID:businesschannel -peer0.org1.example.com | [ca4 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [ca5 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] Exit -peer0.org1.example.com | [ca6 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [ca7 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -peer0.org1.example.com | [ca8 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][82a11985] Exit -peer0.org1.example.com | [ca9 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][82a11985] Entry chaincode: name:"lscc" -peer0.org1.example.com | [caa 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][82a11985] escc for chaincode name:"lscc" is escc -peer0.org1.example.com | [cab 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, chaincode: lscc} -peer0.org1.example.com | [cac 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, chaincode: lscc} -peer0.org1.example.com | [cad 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][82a11985] Exit -peer0.org1.example.com | [cae 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -peer0.org1.example.com | [caf 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55374 -peer0.org1.example.com | [cb0 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [cb1 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [cb2 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [cb3 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [cb4 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [bea 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [beb 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [bec 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [bed 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [bee 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [bef 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [bf0 05-31 05:22:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bf1 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [bf2 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bf3 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [bf4 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [bf5 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [bf6 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [bf7 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [bf9 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [bfa 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [bf8 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [bfb 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [bfc 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [bfd 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [bfe 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [bff 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [c00 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [c01 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -orderer.example.com | [821 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [822 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [824 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [823 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:41350 -orderer.example.com | [825 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41350: rpc error: code = Canceled desc = context canceled -orderer.example.com | [826 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [827 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [828 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41358 -orderer.example.com | [829 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [82a 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [82b 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [82c 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...ED1C153DBF63E6146399CEEA1B65BE0C -orderer.example.com | [82d 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 48B01E2CA4D7FC1FE38BB8BB15AED0DA9315BBFB73F357E603AC5C3F61D087CF -orderer.example.com | [82e 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [82f 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [830 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [831 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...ED1C153DBF63E6146399CEEA1B65BE0C -orderer.example.com | [832 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 68554572255354488694283E1DA44B34C3DB0BBDFA9864DB18BD15093D1DBCB6 -orderer.example.com | [833 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xf3, 0xc7, 0x4f, 0xbb, 0x87, 0x22, 0x1c, 0x17, 0x22, 0xe5, 0x99, 0xfa, 0x51, 0x89, 0x6e, 0x4f, 0xee, 0x11, 0xe1, 0x74, 0x74, 0x8f, 0xd0, 0xe3, 0xb8, 0xb3, 0x7d, 0x74, 0x4f, 0x3e, 0x8f, 0x87} txOffsets= -orderer.example.com | txId=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 locPointer=offset=70, bytesLength=3459 -orderer.example.com | ] -orderer.example.com | [834 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45416], isChainEmpty=[false], lastBlockNumber=[3] -orderer.example.com | [835 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -orderer.example.com | [836 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [837 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -orderer.example.com | [838 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -orderer.example.com | [839 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [83a 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -orderer.example.com | [83b 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -orderer.example.com | [83c 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [83d 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -orderer.example.com | [83e 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -orderer.example.com | [83f 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [840 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420351f00) for 172.18.0.6:39290 -orderer.example.com | [841 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.6:39290: rpc error: code = Unavailable desc = transport is closing -peer0.org2.example.com | [b4a 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [b4b 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b4c 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [b4d 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b4e 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [b4f 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [b50 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [b51 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [b52 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [b53 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [b54 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [b55 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [b56 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [b57 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [b58 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [b59 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b5a 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020(" signature:"0D\002 y\356\313\373\023\0036\032)\344\035\344\t\177\227\366]\320$Qj\270\255~\"d|\3331c\227~\002 e\351\201\202\237\205\245H\311\321\355\216\343\373\353\320\362o\300_w&=\325;(\205\215\253\311\2348" > alive: alive: -peer0.org2.example.com | [b5b 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [b5c 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b5d 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [c02 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [c03 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [c04 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [c05 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [c06 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c07 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [c09 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c0a 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c0b 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [c08 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [c0c 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c0d 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [c0e 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 55 but got ts: inc_num:1527744091840124700 seq_num:54 -peer1.org2.example.com | [c0f 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c10 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c11 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [c12 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c13 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c14 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c15 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [c16 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 51 but got ts: inc_num:1527744091618763800 seq_num:49 -peer1.org2.example.com | [c17 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c18 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c19 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [c1a 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [c1b 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [c1c 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [c1d 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [c1e 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [c1f 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c20 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [c22 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c23 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [c24 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c21 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c25 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c26 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [c27 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c28 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c29 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [c2a 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [c2b 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c2d 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c2c 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [c2e 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c2f 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c30 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [c31 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c32 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [c33 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c34 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [c35 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -orderer.example.com | [842 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [843 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [844 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -orderer.example.com | [845 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -orderer.example.com | [846 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [847 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -orderer.example.com | [848 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -orderer.example.com | [849 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -orderer.example.com | [84a 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -orderer.example.com | [84b 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:41358 with txid '0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c' of type ENDORSER_TRANSACTION -orderer.example.com | [84c 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [84d 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [84e 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [84f 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [850 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [851 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [852 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [853 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d0 gate 1527744154081520100 evaluation starts -orderer.example.com | [854 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [a4c 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [a4d 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a4e 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [a4f 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [a50 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [a51 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a52 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [a53 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [a54 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [a55 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a56 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [a57 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [a58 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [a59 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [cb5 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [cb6 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [cb7 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [cb8 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [cb9 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [cba 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [cbb 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [cbc 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [cbd 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [cbe 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [cbf 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [cc0 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [cc2 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [cc3 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [cc4 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\363kN\324\356\002 o\227\367\266\244\301^\366\340(\204\256B\0340\322!f\314Pui\016\313\325\214\344\231W\260-p" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0203" signature:"0D\002 \021i\346\232\350\337\0062H\242\325\200\026\202\003\376\242/\013\326[\316\034\236\331\003M\003\360\0169a\002 \014\257G\221\215\241O6\246k5M\304\215\013\212\302\323\274w\333@\035\272(E\341k\242\326m\307" > -peer0.org1.example.com | [cc5 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [cc6 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [cc1 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [cc7 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c36 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [c37 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c38 05-31 05:22:11.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [c39 05-31 05:22:11.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [c3a 05-31 05:22:11.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [c3b 05-31 05:22:11.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org2.example.com | [c3c 05-31 05:22:11.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c3d 05-31 05:22:11.40 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [c3e 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [c3f 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [c40 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [c41 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c42 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [c43 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c44 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [c45 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c46 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [c47 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [c48 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [c49 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [c4a 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [c4b 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [c4c 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c4d 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [c4e 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [c4f 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [c50 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0203" signature:"0D\002 \021i\346\232\350\337\0062H\242\325\200\026\202\003\376\242/\013\326[\316\034\236\331\003M\003\360\0169a\002 \014\257G\221\215\241O6\246k5M\304\215\013\212\302\323\274w\333@\035\272(E\341k\242\326m\307" > alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > alive: -peer1.org2.example.com | [c51 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [c52 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c53 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c54 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [c55 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c56 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c57 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c58 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [c59 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 52 but got ts: inc_num:1527744091508552400 seq_num:51 -peer1.org2.example.com | [c5a 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c5b 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [c5c 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [c5d 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [c5f 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c60 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c5e 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c61 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c62 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c63 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [c64 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c65 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c66 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [c67 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c68 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [c6a 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c6b 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [c69 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c6c 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [c6d 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -peer1.org2.example.com | [c6e 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c6f 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [c70 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [c71 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c72 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [c74 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [c75 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [c76 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c73 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c77 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c78 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [c79 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c7a 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -peer1.org2.example.com | [c7b 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c7c 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org2.example.com | [c7d 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -peer0.org1.example.com | [cc8 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [cc9 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [cca 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ccb 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [ccc 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [ccd 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [cce 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [ccf 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [cd0 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [cd1 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [cd2 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [cd3 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [cd4 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [cd5 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [cd6 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [cd7 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [cd8 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [cd9 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [cda 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [cdb 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [cdc 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [cdd 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [cde 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [cdf 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ce0 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [ce1 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ce2 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [b5e 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [b5f 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b60 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [b61 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [b62 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [b63 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [b64 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b65 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [b66 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [b67 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [b68 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [b69 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b6a 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [b6b 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [b6c 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b6d 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [b6e 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [b6f 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [b70 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [b71 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [b72 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [b73 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [a5a 05-31 05:22:03.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [a5b 05-31 05:22:03.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [a5c 05-31 05:22:03.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [a5e 05-31 05:22:03.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [a60 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a5f 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a5d 05-31 05:22:03.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [a61 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [a62 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [a63 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [a64 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [a65 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a67 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [a68 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [a66 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [a69 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [a6a 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [a6b 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [a6c 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [a6d 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [a6e 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [c7e 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c7f 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [c80 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 55 but got ts: inc_num:1527744091840124700 seq_num:54 -peer1.org2.example.com | [c81 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c82 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c83 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [c84 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c85 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [c86 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [c87 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [c88 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [c89 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [c8a 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [c8b 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [c8c 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c8d 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [c8e 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c8f 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [c90 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [c91 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [c92 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c93 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [c94 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [c95 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [c96 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [c97 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -orderer.example.com | [855 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [856 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [857 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 principal evaluation fails -orderer.example.com | [858 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d0 gate 1527744154081520100 evaluation fails -orderer.example.com | [859 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [85a 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [85b 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [85c 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [85d 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [85e 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [85f 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [860 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [861 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2e0 gate 1527744154083199700 evaluation starts -orderer.example.com | [862 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [863 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [864 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [865 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [866 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e0 principal matched by identity 0 -peer0.org2.example.com | [b74 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [b75 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [b76 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [b77 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b78 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > alive: alive: -peer0.org2.example.com | [b79 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [b7a 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b7b 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [b7c 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [b7d 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b7e 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [b80 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b7f 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [b81 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [b82 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b83 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b84 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [b85 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [b86 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b87 05-31 05:22:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b88 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [b89 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [b8a 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [b8c 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a6f 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [a70 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a71 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [a72 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [a73 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [a74 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [a75 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [a76 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [a77 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [a78 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a79 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [a7a 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [a7b 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [a7c 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [a7d 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a7e 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [a7f 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [a80 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [a81 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [a82 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [a83 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [a84 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [a85 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a86 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [a87 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [a88 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ce3 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ce4 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [ce5 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [ce6 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ce7 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [ce8 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ce9 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [cea 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [ceb 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [ced 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [cee 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [cec 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [cef 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [cf0 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [cf1 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [cf2 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [cf3 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [cf4 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [cf5 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [cf6 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [cf7 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [cf8 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [cf9 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [cfa 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [cfb 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [cfd 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [867 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 d8 51 6c 65 a5 0c 39 e3 a7 59 20 ef 8a 82 1c a4 |.Qle..9..Y .....| -orderer.example.com | 00000010 12 a9 0a 9e 82 1a e0 ba a1 53 3e 3f b5 13 4a b7 |.........S>?..J.| -orderer.example.com | [868 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a9 f6 e4 56 20 f8 54 f6 e4 93 3d |0E.!....V .T...=| -orderer.example.com | 00000010 7d e8 cd dd c4 dc 75 ef 22 92 cf 0c 36 78 2c c9 |}.....u."...6x,.| -orderer.example.com | 00000020 32 3d 9d f3 18 02 20 11 1f 3a b2 5f 00 85 14 59 |2=.... ..:._...Y| -orderer.example.com | 00000030 f8 5a 0b 4d b4 b8 7e cb 29 de 97 f2 42 5f e2 13 |.Z.M..~.)...B_..| -orderer.example.com | 00000040 00 46 0f 17 53 32 12 |.F..S2.| -orderer.example.com | [869 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e0 principal evaluation succeeds for identity 0 -orderer.example.com | [86a 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2e0 gate 1527744154083199700 evaluation succeeds -orderer.example.com | [86b 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [86c 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [86d 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [86e 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [86f 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [870 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [871 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:41358 -orderer.example.com | [872 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [873 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41358: read: connection reset by peer -orderer.example.com | [874 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41358: rpc error: code = Canceled desc = context canceled -orderer.example.com | [875 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [876 05-31 05:22:36.08 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [877 05-31 05:22:36.08 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [878 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [879 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...55C584945C433A399912D1F7D035A323 -orderer.example.com | [87a 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 54DE0D5B1E6DDBAE57F3E80A4E47364CF99074219187AB155A7001BB651537BE -orderer.example.com | [87b 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [87c 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [87d 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [87e 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...55C584945C433A399912D1F7D035A323 -orderer.example.com | [87f 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 93DED0BE9C0AA0704F8288E657070386D3FB9CBF54A992CABCFBF5BA9E719309 -orderer.example.com | [880 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x9a, 0x51, 0x32, 0x74, 0x5b, 0x5e, 0xdc, 0xf4, 0xd1, 0x99, 0x68, 0x77, 0x79, 0x27, 0x0, 0xa0, 0x37, 0xef, 0x47, 0xcb, 0x4b, 0xc5, 0x8c, 0x46, 0x68, 0xc7, 0x45, 0x86, 0x87, 0xb6, 0xda, 0x34} txOffsets= -orderer.example.com | txId=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c locPointer=offset=70, bytesLength=3458 -orderer.example.com | ] -peer1.org1.example.com | [a89 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [a8a 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [a8b 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [a8c 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [a8d 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a8e 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [a8f 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [a90 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [a91 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [a92 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [a93 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [a94 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [a95 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a96 05-31 05:22:03.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [a98 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [a97 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [a99 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [a9a 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [a9b 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 45 but got ts: inc_num:1527744090808810100 seq_num:44 -peer1.org1.example.com | [a9c 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [a9d 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [a9e 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [a9f 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [aa0 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [c98 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org2.example.com | [c99 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c9a 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [c9b 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [c9c 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [c9d 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [c9e 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [c9f 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [ca0 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [ca1 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [ca2 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [ca3 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [ca4 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ca5 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ca6 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [ca7 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [ca9 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [caa 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [ca8 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > alive: -peer1.org2.example.com | [cab 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cac 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [cad 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cae 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [caf 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cb0 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [cb1 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} -peer1.org2.example.com | [cb2 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [cb3 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [cb4 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [cb5 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [cb6 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [cb7 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [cb8 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer1.org2.example.com | [cba 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cb9 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer1.org2.example.com | [cbc 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [cbb 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cbd 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cbe 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [cbf 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [cc0 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [cc1 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cc2 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [cc3 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cc4 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [cc5 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [cc6 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [cc7 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [cc8 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [cc9 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [cca 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ccb 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [ccc 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [ccd 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [cce 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [ccf 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [cd0 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [cd1 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [cd2 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [cd3 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [cd4 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [cd5 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [cd7 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [cd8 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [cd9 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [cda 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [cdb 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [cdc 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [cd6 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [881 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50738], isChainEmpty=[false], lastBlockNumber=[4] -orderer.example.com | [882 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 -orderer.example.com | [883 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -orderer.example.com | [885 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -orderer.example.com | [886 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -orderer.example.com | [887 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[45416], bytesOffset=[45418]} -orderer.example.com | [888 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [889 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -orderer.example.com | [884 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -orderer.example.com | [88b 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[45416], bytesOffset=[45418]} -orderer.example.com | [88c 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [88d 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -orderer.example.com | [88a 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] -orderer.example.com | [88e 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] -orderer.example.com | [88f 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [890 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41368 -orderer.example.com | [891 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:41368 with txid '8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4' of type ENDORSER_TRANSACTION -orderer.example.com | [892 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [893 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [894 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [895 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [896 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [897 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8270 gate 1527744176497447800 evaluation starts -orderer.example.com | [898 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [899 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [89a 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [89b 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 principal evaluation fails -orderer.example.com | [89c 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8270 gate 1527744176497447800 evaluation fails -orderer.example.com | [89d 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [89e 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [89f 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [8a0 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [8a1 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [8a2 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [8a3 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [8a4 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [8a5 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8280 gate 1527744176500295700 evaluation starts -orderer.example.com | [8a6 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8a7 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [8a8 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [8a9 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 principal evaluation fails -orderer.example.com | [8aa 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8280 gate 1527744176500295700 evaluation fails -peer0.org1.example.com | [cfe 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [cfc 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [cff 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [d00 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d01 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [d02 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [d03 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [d04 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d05 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [d06 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d07 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [d08 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [d09 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [d0a 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d0b 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:9200526324220404161 tag:EMPTY mem_req: > , Envelope: 982 bytes, Signature: 0 bytes -peer0.org1.example.com | [d0c 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d0d 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:9200526324220404161 tag:EMPTY mem_req: > , Envelope: 982 bytes, Signature: 0 bytes -peer0.org1.example.com | [d0e 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d0f 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [d10 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 9200526324220404161, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d11 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\363kN\324\356\002 o\227\367\266\244\301^\366\340(\204\256B\0340\322!f\314Pui\016\313\325\214\344\231W\260-p" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0204" signature:"0E\002!\000\247\372fx\273j\000\037\200\230\327w\242-\222c\222/\354\241v\265\351U\025\2776\002\276\305\r\271\002 t4\345\223>O\310>\031\225\027\024\030\342\220 \033\213\237>\256\274\223\213\234x8U\033f\000x" > -peer0.org1.example.com | [d12 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 9200526324220404161, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -peer0.org1.example.com | [d13 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d14 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org1.example.com | [d15 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d16 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org1.example.com | [d17 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [d18 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [d19 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [d1a 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [d1b 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [d1c 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [d1d 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [d1e 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [d1f 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d20 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [d21 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d23 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [d24 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [aa1 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [aa2 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [aa3 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [aa4 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [aa5 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [aa6 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [aa7 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [aa8 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [aa9 05-31 05:22:03.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [aaa 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [aab 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [aac 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [aad 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [aae 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [aaf 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [ab0 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [ab1 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ab2 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" secret_envelope:A\002\377\236\207j\\\211\257R\337\217\233\262\306\002 \006\241\320\375\313.\265\255/Pr\230\216s\311a\211~\031\324\177,\374)\347\317\3609^\031S\374" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [ab3 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" secret_envelope:A\002\377\236\207j\\\211\257R\337\217\233\262\306\002 \006\241\320\375\313.\265\255/Pr\230\216s\311a\211~\031\324\177,\374)\347\317\3609^\031S\374" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [ab5 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" secret_envelope:A\002\377\236\207j\\\211\257R\337\217\233\262\306\002 \006\241\320\375\313.\265\255/Pr\230\216s\311a\211~\031\324\177,\374)\347\317\3609^\031S\374" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [ab6 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [ab7 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [ab8 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [ab9 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [aba 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [abb 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [abc 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [abd 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [abe 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [abf 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [ac0 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [ac1 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" secret_envelope:A\002\377\236\207j\\\211\257R\337\217\233\262\306\002 \006\241\320\375\313.\265\255/Pr\230\216s\311a\211~\031\324\177,\374)\347\317\3609^\031S\374" > > alive:S*\360I`\324\205" > > -peer1.org1.example.com | [ac2 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [ac3 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [ab4 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ac4 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [ac5 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [ac6 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [ac7 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [ac8 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ac9 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [b8b 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [b8d 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [b8e 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [b8f 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b90 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [b91 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [b92 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b93 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\357G\202\344\017\244\372\300\260\340\246,\266\307" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b94 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b96 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [b95 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [b97 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [b98 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b99 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [cde 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [cdf 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [ce0 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [ce1 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [ce2 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [cdd 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [ce3 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ce4 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [ce5 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [ce6 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ce7 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [ce8 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ce9 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\030\367\323n\004Y\003\253\276H\017\246\016\255H\262\373\231\033'i\002 g\3638\024}\344n\377\333\322\226@\013\203\253Z9\274\331\326\260&f\315\266\004\364\310\016\214\007M" > > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [cea 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ceb 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\030\367\323n\004Y\003\253\276H\017\246\016\255H\262\373\231\033'i\002 g\3638\024}\344n\377\333\322\226@\013\203\253Z9\274\331\326\260&f\315\266\004\364\310\016\214\007M" > > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [cec 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [ced 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [cee 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [cef 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [cf0 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [8ab 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [8ac 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [8ad 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [8ae 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8288 gate 1527744176501489400 evaluation starts -orderer.example.com | [8af 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8288 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8b0 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8288 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [8b1 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8288 principal matched by identity 0 -orderer.example.com | [8b2 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 21 18 a9 5e 9e 60 f0 ef 68 ae 82 e9 9b ee 08 10 |!..^.`..h.......| -orderer.example.com | 00000010 44 33 5c 4a e6 e6 c1 ac c9 8e 4d c0 88 89 ea e1 |D3\J......M.....| -orderer.example.com | [8b3 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 be 6c e7 d4 20 70 e3 1a a9 1d b6 |0E.!..l.. p.....| -orderer.example.com | 00000010 15 f4 79 c1 67 e0 0c fc 63 f8 10 6c e6 a5 c6 82 |..y.g...c..l....| -orderer.example.com | 00000020 32 54 e7 24 59 02 20 24 e1 7c 47 83 b8 e1 ca 35 |2T.$Y. $.|G....5| -orderer.example.com | 00000030 d1 29 6c d2 1c 2f 4e 9f 68 ae 4f 4a 51 67 bb 78 |.)l../N.h.OJQg.x| -orderer.example.com | 00000040 12 47 e1 fc 81 5f ab |.G..._.| -orderer.example.com | [8b4 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8288 principal evaluation succeeds for identity 0 -orderer.example.com | [8b5 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8288 gate 1527744176501489400 evaluation succeeds -orderer.example.com | [8b6 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [8b7 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [8b8 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [8b9 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [8ba 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [8bb 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [8bc 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:41368 -orderer.example.com | [8bd 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -peer0.org1.example.com | [d22 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0205" signature:"0E\002!\000\270\200M3R\3319\226\305\323Uh+L\217\222\261\026\375;p\276\007\372\n\213\035\201\351\334\350\236\002 \024IK\240\261\t\221U\220v\276\364W\335\023\r\202\256\263Oq\202\267\204\344\310;\376D\353*\332" secret_envelope: > -peer0.org1.example.com | [d25 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d26 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [d27 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d28 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d29 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d2a 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [d2b 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 52 but got ts: inc_num:1527744091508552400 seq_num:51 -peer0.org1.example.com | [d2c 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [d2d 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d2e 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [d2f 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [d30 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d31 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d32 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [cf1 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [cf2 05-31 05:22:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [cf3 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [cf5 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [cf6 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [cf7 05-31 05:22:12.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\030\367\323n\004Y\003\253\276H\017\246\016\255H\262\373\231\033'i\002 g\3638\024}\344n\377\333\322\226@\013\203\253Z9\274\331\326\260&f\315\266\004\364\310\016\214\007M" > > alive: > -peer1.org2.example.com | [cf8 05-31 05:22:12.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes -peer1.org2.example.com | [cf9 05-31 05:22:12.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [cf4 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [cfa 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 3}, Envelope: 5364 bytes, Signature: 0 bytes -peer1.org2.example.com | [cfb 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [cfc 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [cfe 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4226b2620 env 0xc423504600 txn 0 -peer1.org2.example.com | [cff 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423504600 -peer1.org2.example.com | [d00 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -peer1.org2.example.com | [d01 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [d02 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [cfd 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [d03 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org2.example.com | [d04 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [d05 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [d06 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422e8ca80, header channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -peer1.org2.example.com | [d07 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [aca 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [acb 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [acc 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [acd 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ace 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [acf 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [ad0 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [ad1 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [ad2 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [ad3 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [ad4 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [ad5 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [ad6 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [ad7 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [ad8 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > alive: alive: alive: -peer1.org1.example.com | [ad9 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [ada 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [adb 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [adc 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [b9a 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [b9b 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [b9c 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [b9d 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [b9e 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [b9f 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [ba0 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [ba1 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [ba2 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [ba3 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [ba5 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [ba4 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ba6 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ba7 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [ba8 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [ba9 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [baa 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [bab 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [bac 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [bad 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bae 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [baf 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [bb0 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [bb1 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [bb2 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [bb3 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [bb4 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [bb5 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bb6 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [bb7 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [bb8 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [bb9 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [bba 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [bbb 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [bbc 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [bbd 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bbe 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [bbf 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [bc1 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [bc0 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [bc3 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [bc2 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [bc4 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 45 but got ts: inc_num:1527744091618763800 seq_num:44 -peer0.org2.example.com | [bc5 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bc6 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [bc7 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [bc8 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [bc9 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bca 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [add 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ade 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [adf 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ae0 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ae1 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ae2 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [ae3 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [ae4 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [ae5 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [ae6 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [ae7 05-31 05:22:05.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [ae8 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [ae9 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [aea 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [aeb 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [aec 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [aed 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [aee 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [aef 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [af0 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [af1 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [af2 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [af3 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [af4 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [af5 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [8be 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41368: read: connection reset by peer -orderer.example.com | [8bf 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41368: rpc error: code = Canceled desc = context canceled -orderer.example.com | [8c0 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [8c1 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [8c2 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8c3 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8c4 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A739E85E17D95B2644344DB917CD6010 -orderer.example.com | [8c5 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: CFB139C5AFEBE1B14202A91110110D1FF2DA3426B5F52716C339D084AB841692 -orderer.example.com | [8c6 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8c7 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [8c8 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [8c9 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...A739E85E17D95B2644344DB917CD6010 -orderer.example.com | [8ca 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 221490E1E0A16893767325A2A5AC5BDE0E975E0802C55F97B306A7DB1EA00A38 -orderer.example.com | [8cb 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x45, 0x52, 0x18, 0xd7, 0x37, 0x89, 0x65, 0x1a, 0xb0, 0x67, 0x41, 0xba, 0xca, 0x59, 0x80, 0x29, 0xb2, 0xe6, 0xf9, 0xbe, 0xb4, 0x2b, 0x95, 0xd6, 0x5d, 0xd7, 0x85, 0x87, 0x85, 0xf9, 0xd7, 0xcc} txOffsets= -orderer.example.com | txId=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 locPointer=offset=70, bytesLength=2922 -orderer.example.com | ] -orderer.example.com | [8cc 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] -orderer.example.com | [8cd 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 -orderer.example.com | [8ce 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -orderer.example.com | [8cf 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4786], Going to peek [8] bytes -orderer.example.com | [8d0 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4784], placementInfo={fileNum=[0], startOffset=[50738], bytesOffset=[50740]} -orderer.example.com | [8d1 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4784] read from file [0] -orderer.example.com | [8d2 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -orderer.example.com | [8d3 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -orderer.example.com | [8d4 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4786], Going to peek [8] bytes -orderer.example.com | [8d5 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4784], placementInfo={fileNum=[0], startOffset=[50738], bytesOffset=[50740]} -orderer.example.com | [8d6 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4784] read from file [0] -orderer.example.com | [8d7 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -orderer.example.com | [8d8 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -orderer.example.com | [8d9 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -orderer.example.com | [8da 05-31 05:23:19.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [8db 05-31 05:23:19.53 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41380 -orderer.example.com | [8dc 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:41380 with txid '55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5' of type ENDORSER_TRANSACTION -peer0.org1.example.com | [d33 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d34 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d35 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d36 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [d37 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d38 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d39 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d3a 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d3b 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [d3c 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d3d 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d3e 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d3f 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -peer0.org1.example.com | [d40 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -peer0.org1.example.com | [d41 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d42 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -peer0.org1.example.com | [d43 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d44 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [d45 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [d46 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [d47 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d48 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [d08 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [d09 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [d0a 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org2.example.com | [d0b 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -peer1.org2.example.com | [d0c 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [d0d 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc4226b6000 -peer1.org2.example.com | [d0e 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin -peer1.org2.example.com | [d0f 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [d10 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [d11 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [d12 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [d13 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org2.example.com | [d14 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org2.example.com | [d15 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [1f1f88e2-ed45-4fdc-b4d6-0c2197b83e5f] -peer1.org2.example.com | [d16 05-31 05:22:12.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [d17 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [1f1f88e2-ed45-4fdc-b4d6-0c2197b83e5f] -peer1.org2.example.com | [d18 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org2.example.com | [d19 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: -peer1.org2.example.com | [d1a 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 appears to be valid -peer1.org2.example.com | [d1b 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc4226b6000 -peer1.org2.example.com | [d1c 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4226b2620 env 0xc423504600 txn 0 -peer1.org2.example.com | [d1d 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [d1e 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [d1f 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -peer1.org2.example.com | [d20 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [d21 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -peer1.org2.example.com | [d22 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [d23 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [d24 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [d25 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer1.org2.example.com | [d26 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] marked as valid by state validator -peer1.org2.example.com | [d27 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [d28 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [d29 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [d2a 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc423513980)} -peer1.org2.example.com | [d2b 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -peer1.org2.example.com | [d2c 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -peer1.org2.example.com | [d2d 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -peer1.org2.example.com | [d2e 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} -peer1.org2.example.com | [d2f 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -peer1.org2.example.com | [d30 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} -peer1.org2.example.com | [d31 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc42045e880})} -peer1.org2.example.com | [d32 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -peer1.org2.example.com | [d33 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] -peer1.org2.example.com | [d34 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xf3, 0xc7, 0x4f, 0xbb, 0x87, 0x22, 0x1c, 0x17, 0x22, 0xe5, 0x99, 0xfa, 0x51, 0x89, 0x6e, 0x4f, 0xee, 0x11, 0xe1, 0x74, 0x74, 0x8f, 0xd0, 0xe3, 0xb8, 0xb3, 0x7d, 0x74, 0x4f, 0x3e, 0x8f, 0x87} txOffsets= -peer1.org2.example.com | txId=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 locPointer=offset=70, bytesLength=3459 -peer1.org2.example.com | ] -peer1.org2.example.com | [d35 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to index -peer1.org2.example.com | [d36 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx number:[0] ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to blockNumTranNum index -peer1.org2.example.com | [d37 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45420], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org2.example.com | [d38 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] -peer1.org2.example.com | [d39 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -peer1.org2.example.com | [d3a 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -peer1.org2.example.com | [d3b 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -peer1.org2.example.com | [d3c 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [d3d 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [d3e 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org2.example.com | [d3f 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [d40 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -peer1.org2.example.com | [d41 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [d42 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [83981526-1a42-454a-b6bb-bc8ed6ea4cc8] -peer1.org2.example.com | [d43 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] -peer1.org2.example.com | [d44 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer1.org2.example.com | [d45 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer1.org2.example.com | [d46 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] -peer1.org2.example.com | [d47 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [d48 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] -peer1.org2.example.com | [d49 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [83981526-1a42-454a-b6bb-bc8ed6ea4cc8] -peer1.org2.example.com | [d4a 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] -peer1.org2.example.com | [d4b 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org2.example.com | [d4c 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [d4d 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 -peer1.org2.example.com | [d4e 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [d4f 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [d50 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [d51 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [d52 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [d53 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [d54 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [d55 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [d56 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [d57 05-31 05:22:12.20 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -peer1.org2.example.com | [d58 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [d59 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [d5a 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [d5c 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [d5b 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [d5e 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [d5d 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [d5f 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [d60 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [d61 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [d63 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [d62 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [d64 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [d65 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [d66 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [d67 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [d68 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [d69 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [d6a 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [d6b 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [d6c 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [bcb 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [bcc 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 46 but got ts: inc_num:1527744090808810100 seq_num:45 -peer0.org2.example.com | [bcd 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bce 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [bcf 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [bd0 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [bd1 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [bd2 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [bd3 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [bd4 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [bd5 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bd6 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [bd7 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [bd8 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [bd9 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [bda 05-31 05:22:03.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [bdb 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [bdc 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bdd 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [bde 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [bdf 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [be0 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [be1 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [be2 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [be3 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [af6 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [af7 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [af8 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [af9 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [afa 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [afb 05-31 05:22:05.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [afc 05-31 05:22:05.97 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [afd 05-31 05:22:05.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [afe 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [aff 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [b00 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b01 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [b02 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [b03 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [b04 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b05 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [b06 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b07 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b08 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b09 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b0a 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b0b 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b0c 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b0d 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [b0e 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b0f 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b10 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b11 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [b12 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b13 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [b14 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [b15 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [b16 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [b17 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b19 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b18 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b1a 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b1b 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b1c 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b1d 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [b1e 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b1f 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b20 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b21 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [b22 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [b23 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [b24 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [b25 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [b26 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [b27 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [b28 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [b29 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b2a 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b2b 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [b2c 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b2d 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b2e 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [b2f 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [b30 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [b31 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b32 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b33 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b34 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b35 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b36 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b37 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [b38 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b39 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [b3a 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [b3b 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [b3c 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [b3d 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [b3e 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [b3f 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b40 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b41 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b42 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [b43 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b44 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b45 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b46 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [b47 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [b48 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [b49 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [b4a 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [b4b 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [b4c 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [b4d 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [b4e 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [b4f 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [b51 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [b52 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b53 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [b54 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [b55 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [b56 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [b57 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [b58 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [b59 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [b5a 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [b5b 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [b5c 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [b5d 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020." signature:"0D\002 k7x\337GV\024\354ix\033\334y]\021\272]>K\020\261!Z\246\335I\035\310\243\022\361\262\002 4\221\201\237\312G\034\026\021\"\350\356)\324\265S\346Z\312\261\204;d&\311]\017\017\227F0*" > alive: alive:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > alive:\025\352A\312\005\333\361E\271S\002M\230\035\340\\\206f\323\331\nZ'" > -peer1.org1.example.com | [b5e 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [b5f 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b50 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b60 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [b61 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [b62 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b63 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b64 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b65 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b66 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b67 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b68 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [b69 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [8dd 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [8de 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [8df 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [8e0 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [8e1 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [8e2 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82f0 gate 1527744199566858600 evaluation starts -orderer.example.com | [8e3 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8e4 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [8e5 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -orderer.example.com | [8e6 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f0 principal evaluation fails -orderer.example.com | [8e7 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82f0 gate 1527744199566858600 evaluation fails -orderer.example.com | [8e8 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [8e9 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [8ea 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [8eb 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [8ec 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [8ed 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [8ee 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [8ef 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -peer0.org1.example.com | [d49 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0206" signature:"0D\002 9tA\267\366\321NN\367\364\253\341\246\225\261\213Ca\326J\260\371Q\312\304\370\017\377\010\2228D\002 psF6\365]\376\346T\2631\345\377\026\206\346I1\245\356q\337\332\220\350o?3\304H\337\336" > -peer0.org1.example.com | [d4a 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -peer0.org1.example.com | [d4b 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d4c 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [d4d 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d4e 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [d4f 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d50 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [d52 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d51 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [d53 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [d54 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d56 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d55 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [d57 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [d58 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [d59 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d5a 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d5b 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:7208448587798055339 tag:EMPTY mem_req:\233[\010;\344\331\3768\344\301M\036\010\010\177\205" > > , Envelope: 983 bytes, Signature: 0 bytes -peer0.org1.example.com | [d5c 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d5e 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [d5d 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:7208448587798055339 tag:EMPTY mem_req:\233[\010;\344\331\3768\344\301M\036\010\010\177\205" > > , Envelope: 983 bytes, Signature: 0 bytes -peer0.org1.example.com | [d60 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d61 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [d5f 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [d62 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d63 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 7208448587798055339, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 657 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d65 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 7208448587798055339, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 657 bytes, Signature: 0 bytes -peer0.org1.example.com | [d66 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d64 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0207" signature:"0D\002 4\2276w\326\335!\357\007\237\250\302\"\252\3253\031#\001\2505X\215\222D\367\246\340\026!7\370\002 jv\321\275\220\315\0309w\245\210\216\3220\245\360\256V\302yK\326\254\315\013\227V\305\313I\002&" > -peer0.org1.example.com | [d67 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [d68 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [d69 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [d6a 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d6b 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d6c 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d6d 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [d6e 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [d70 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [d71 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d72 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [d73 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d74 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [d75 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d76 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [d77 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [d78 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [d79 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [d7a 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [d7b 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [d7c 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [d6f 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [d7d 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [d7e 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [d7f 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [d80 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [d81 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [d82 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [d83 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [d84 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [d86 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [d85 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d88 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d89 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [d87 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [d8a 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [d8b 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [d8c 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [d8d 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [d8e 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [d8f 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [d90 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 53 but got ts: inc_num:1527744091508552400 seq_num:52 -peer0.org1.example.com | [d91 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [d92 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [d93 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [d94 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [d95 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [d96 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [d97 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [d98 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [d99 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [d9a 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [d9b 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer0.org1.example.com | [d9d 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer0.org1.example.com | [d9e 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer0.org1.example.com | [d9f 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org1.example.com | [da0 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [da1 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org1.example.com | [da2 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [da3 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org1.example.com | [da4 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [da5 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [d9c 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [da6 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [da7 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [da8 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 57 but got ts: inc_num:1527744091840124700 seq_num:55 -peer0.org1.example.com | [da9 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [daa 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dab 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [dac 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dad 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [dae 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [daf 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [db0 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 53 but got ts: inc_num:1527744091508552400 seq_num:52 -peer0.org1.example.com | [db1 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [d6d 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [d6e 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [d6f 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [d70 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [d71 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [d72 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [d73 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [d74 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [d75 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [d76 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org2.example.com | [d77 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [d79 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org2.example.com | [d78 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org2.example.com | [d7a 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [d7b 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [d7c 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [d7d 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [d7e 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [d7f 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [d80 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [b6a 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b6b 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [b6c 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b6d 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b6e 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [b6f 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b70 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [b71 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [b72 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [b73 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [b74 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b75 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [b76 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [b77 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [b78 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [b79 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b7a 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [b7b 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [b7c 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b7d 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [b7e 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b7f 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [b80 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [b81 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [b82 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b83 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [b84 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [b85 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [8f0 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82f8 gate 1527744199570195900 evaluation starts -orderer.example.com | [8f1 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [8f2 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [8f3 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f8 principal matched by identity 0 -orderer.example.com | [8f4 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 65 ae 45 fe 4e c5 16 ff 18 6a 1c 14 57 67 46 e7 |e.E.N....j..WgF.| -orderer.example.com | 00000010 1c 89 2c f5 be 3a ad 7f 73 d5 13 1d 78 e2 8f 89 |..,..:..s...x...| -orderer.example.com | [8f5 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 de 05 ca 12 7d 46 74 b0 72 07 a9 |0E.!.....}Ft.r..| -orderer.example.com | 00000010 c1 27 1c ce 65 26 77 b5 c6 ba a4 9d 32 cf 7d c3 |.'..e&w.....2.}.| -orderer.example.com | 00000020 55 60 27 4c f0 02 20 49 0e 55 43 e7 ec 4b 2d e9 |U`'L.. I.UC..K-.| -orderer.example.com | 00000030 cb 82 c5 44 4a 3a c2 78 ab 42 05 89 ed 86 a2 9d |...DJ:.x.B......| -orderer.example.com | 00000040 09 fd 55 75 86 5b da |..Uu.[.| -orderer.example.com | [8f6 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f8 principal evaluation succeeds for identity 0 -orderer.example.com | [8f7 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82f8 gate 1527744199570195900 evaluation succeeds -orderer.example.com | [8f8 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [8f9 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [8fa 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [8fb 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [8fc 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [8fd 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [8fe 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:41380 -orderer.example.com | [8ff 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -orderer.example.com | [900 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41380: rpc error: code = Canceled desc = context canceled -orderer.example.com | [901 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [902 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -orderer.example.com | [903 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -peer0.org1.example.com | [db2 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [db3 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [db4 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [db5 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [db6 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [db7 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [db8 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [db9 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [dba 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [dbb 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dbc 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [dbd 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [dbe 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dbf 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dc0 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [dc1 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [dc2 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [dc3 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [dc4 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [dc5 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [dc6 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [dc7 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [dc8 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [dc9 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [be4 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [be5 05-31 05:22:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [be6 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [be7 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [be8 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [be9 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [bea 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [beb 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [bec 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [bed 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [bee 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [bef 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [bf0 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [bf1 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [bf2 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [bf3 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [bf4 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [bf5 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [bf7 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [bf8 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [bf6 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [bf9 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [bfa 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [bfb 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [bfc 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [bfd 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [bfe 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [bff 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c00 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c01 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [c02 05-31 05:22:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c03 05-31 05:22:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c04 05-31 05:22:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c05 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [c06 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [c07 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [c08 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [c09 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [c0a 05-31 05:22:06.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c0b 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c0c 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [c0d 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c0e 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c0f 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c10 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [c11 05-31 05:22:06.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [c12 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [c13 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [c14 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [c15 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [c16 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [c17 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c18 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [c19 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [c1a 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c1b 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c1c 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c1d 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c1e 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c1f 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c20 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [c21 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c22 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c23 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c24 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c25 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [c27 05-31 05:22:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c28 05-31 05:22:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c26 05-31 05:22:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c29 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c2a 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c2b 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [c2c 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c2d 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c2e 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c2f 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [c30 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [c31 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [c32 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [c33 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [c34 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [c35 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [c36 05-31 05:22:06.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c37 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c38 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c39 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [c3a 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c3b 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c3c 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c3d 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [c3e 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [c3f 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c40 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c41 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c42 05-31 05:22:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c43 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c44 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [c45 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c46 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c47 05-31 05:22:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c48 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [c49 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [c4a 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [c4b 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [c4c 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c4d 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [c4e 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [c4f 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [c50 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [c52 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c53 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c51 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c54 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c55 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c56 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c57 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [c58 05-31 05:22:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [c59 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c5a 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [c5b 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c5c 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [c5d 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [c5e 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [c5f 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [c60 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [c61 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [c62 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [c63 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c64 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [c65 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [c66 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > alive: > -peer0.org2.example.com | [c67 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [c68 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c69 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c6a 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c6b 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [c6c 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c6d 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c6e 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c6f 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [c70 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c71 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [c72 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [c73 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [c74 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [c75 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c76 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c77 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [c78 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c79 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [c7a 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [c7b 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c7c 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [c7d 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c7e 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [c7f 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [c80 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [c81 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c82 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c83 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [c84 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c85 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [c86 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -orderer.example.com | [904 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [905 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...6D99F32DB086B2EF1BB96EA2A959FDA1 -orderer.example.com | [906 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 217013CB2C843A0AD0733A82A99249478F3AFCA1F2F1659647D6668844B161EA -orderer.example.com | [907 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [908 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -orderer.example.com | [909 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [90a 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...6D99F32DB086B2EF1BB96EA2A959FDA1 -orderer.example.com | [90b 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: AB70707ED9AD95C466F4E2702548877437DD748446CAE9164E5CB06987B7553D -orderer.example.com | [90c 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x85, 0xb2, 0xc2, 0xca, 0xb9, 0x19, 0xa4, 0x86, 0x81, 0xab, 0xe7, 0xe5, 0x91, 0x9e, 0xc6, 0x6d, 0x34, 0xc3, 0x50, 0xbe, 0xd5, 0x41, 0x10, 0xaf, 0xb5, 0xb4, 0x21, 0x8f, 0x8b, 0xf9, 0x7f, 0xc8} txOffsets= -orderer.example.com | txId=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 locPointer=offset=70, bytesLength=2917 -orderer.example.com | ] -orderer.example.com | [90d 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60306], isChainEmpty=[false], lastBlockNumber=[6] -orderer.example.com | [90e 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 -orderer.example.com | [90f 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [911 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [912 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -orderer.example.com | [913 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -orderer.example.com | [914 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -orderer.example.com | [910 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -orderer.example.com | [916 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -orderer.example.com | [917 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -orderer.example.com | [918 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -orderer.example.com | [915 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -orderer.example.com | [919 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [91a 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [91b 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [91c 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41402 -orderer.example.com | [91d 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41402 -orderer.example.com | [91e 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [91f 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [920 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [921 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [922 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [923 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [924 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [925 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8350 gate 1527744204374371100 evaluation starts -orderer.example.com | [926 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [927 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [928 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [929 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [92a 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 principal matched by identity 0 -orderer.example.com | [92b 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 c1 37 c9 c1 29 84 1c eb 03 50 ac ff 26 56 68 c7 |.7..)....P..&Vh.| -orderer.example.com | 00000010 a2 80 4b dc 45 93 af 1e f6 e8 d0 34 3f 5d ab b8 |..K.E......4?]..| -orderer.example.com | [92c 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 3b 85 c8 d7 4f 21 98 ad dd db ef fd |0D. ;...O!......| -orderer.example.com | 00000010 a2 65 0a b9 57 18 ae 0f 63 77 06 ee 1c bd e9 51 |.e..W...cw.....Q| -orderer.example.com | 00000020 e4 34 82 65 02 20 53 74 2d b2 99 c3 62 8d 9b 25 |.4.e. St-...b..%| -orderer.example.com | 00000030 1a a8 0a 6f 85 6c e3 b8 c2 d2 a7 56 88 40 9e 64 |...o.l.....V.@.d| -orderer.example.com | 00000040 04 f4 47 38 d7 7e |..G8.~| -orderer.example.com | [92d 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 principal evaluation succeeds for identity 0 -orderer.example.com | [92e 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8350 gate 1527744204374371100 evaluation succeeds -orderer.example.com | [92f 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [930 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [931 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [932 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [933 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [934 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [935 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b89da0) start: > stop: > from 172.18.0.7:41402 -orderer.example.com | [936 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [937 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55524] -orderer.example.com | [938 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -orderer.example.com | [939 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -orderer.example.com | [93a 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -orderer.example.com | [93b 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b89da0) for 172.18.0.7:41402 -orderer.example.com | [93c 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41402 for (0xc420b89da0) -orderer.example.com | [93e 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [93f 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [940 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [93d 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41402 -orderer.example.com | [941 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [942 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41402 -orderer.example.com | [943 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41402: read: connection reset by peer -orderer.example.com | [944 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41402: rpc error: code = Canceled desc = context canceled -orderer.example.com | [945 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [946 05-31 05:23:24.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [947 05-31 05:23:24.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41404 -orderer.example.com | [948 05-31 05:23:24.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41404 -orderer.example.com | [949 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [94a 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [94b 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [94c 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [94d 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [94e 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b8 gate 1527744204611771800 evaluation starts -orderer.example.com | [94f 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [dca 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [dcb 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [dcc 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dcd 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [dce 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [dcf 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [dd0 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [dd1 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [dd2 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dd3 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dd4 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [dd5 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [dd6 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dd7 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [dd8 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [dd9 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [dda 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ddb 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [ddc 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [ddd 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 3}, Envelope: 5364 bytes, Signature: 0 bytes -peer0.org1.example.com | [dde 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ddf 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [de0 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [de1 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b47320 env 0xc423151b30 txn 0 -peer0.org1.example.com | [de2 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423151b30 -peer1.org2.example.com | [d81 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [d82 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [d83 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [d84 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [d85 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [d86 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [d88 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [d89 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org2.example.com | [d87 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org2.example.com | [d8a 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [d8b 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [d8c 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 60 but got ts: inc_num:1527744091840124700 seq_num:59 -peer1.org2.example.com | [d8d 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [d8e 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [d8f 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [d90 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [d91 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [d92 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [d93 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [d94 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [d95 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [d96 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [d97 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [d98 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [d99 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [d9a 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [d9b 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b86 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [b87 05-31 05:22:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b88 05-31 05:22:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [b89 05-31 05:22:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b8a 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [b8b 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [b8c 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [b8d 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b8e 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [b8f 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [b90 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer1.org1.example.com | [b91 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b92 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [b93 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [b94 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [b95 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [b96 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [b97 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [b98 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [b99 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [b9a 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [b9b 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [b9c 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [b9d 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b9e 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [b9f 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [ba0 05-31 05:22:07.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [ba1 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [ba2 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [de3 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -peer0.org1.example.com | [de4 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [de5 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [de6 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [de7 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [de8 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [de9 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422c1f500, header channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -peer0.org1.example.com | [dea 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [deb 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [dec 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [ded 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org1.example.com | [dee 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -peer0.org1.example.com | [def 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [df0 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc422e33000 -peer0.org1.example.com | [df1 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [df3 05-31 05:22:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [df4 05-31 05:22:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [df5 05-31 05:22:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [df6 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [df2 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin -peer0.org1.example.com | [df7 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [df8 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [df9 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [d9c 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org2.example.com | [d9d 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [d9e 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [d9f 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 60 but got ts: inc_num:1527744091840124700 seq_num:59 -peer1.org2.example.com | [da0 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [da1 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [da2 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [da3 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 55 but got ts: inc_num:1527744091508552400 seq_num:53 -peer1.org2.example.com | [da4 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [da5 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [da6 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [da7 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [da8 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [da9 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [daa 05-31 05:22:14.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [dab 05-31 05:22:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [dac 05-31 05:22:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [dad 05-31 05:22:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [dae 05-31 05:22:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership -peer1.org2.example.com | [daf 05-31 05:22:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [db0 05-31 05:22:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [db1 05-31 05:22:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [db2 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [db3 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [db4 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [db5 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [db6 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [db7 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [db8 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [db9 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [dba 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [dbb 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [dbc 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dbd 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [dbe 05-31 05:22:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dbf 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [dc0 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dc1 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [dc2 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dc3 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [dc4 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer1.org2.example.com | [dc5 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [dc6 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [dc7 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [dc8 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [dfa 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [dfb 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [dfc 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [dfd 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [dff 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [e00 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [e01 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [e02 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org1.example.com | [e03 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | [e04 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [89536da4-4dce-4e24-9add-ed78793d7113] -peer0.org1.example.com | [e05 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [e06 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [89536da4-4dce-4e24-9add-ed78793d7113] -peer0.org1.example.com | [e07 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org1.example.com | [e08 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: -peer0.org1.example.com | [e09 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 appears to be valid -peer0.org1.example.com | [e0a 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc422e33000 -peer0.org1.example.com | [e0b 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b47320 env 0xc423151b30 txn 0 -peer0.org1.example.com | [e0c 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [e0d 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [e0e 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -peer0.org1.example.com | [e0f 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [e10 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -peer0.org1.example.com | [e11 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [e12 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer0.org1.example.com | [e13 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [ba3 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [ba4 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ba5 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ba6 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ba7 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ba8 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ba9 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [baa 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [bab 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [bac 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [bad 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [bae 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [baf 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [dc9 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dca 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [dcb 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dcc 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [dcd 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [dce 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [dcf 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dd0 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [dd1 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [dd2 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [dd3 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dd4 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [dd5 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dd6 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [dd7 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [dd8 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [dd9 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [dda 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [ddb 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [ddc 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [ddd 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [dde 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ddf 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [de0 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [c87 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [c88 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c89 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [c8a 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [950 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [951 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 principal matched by identity 0 -orderer.example.com | [952 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 47 98 bb 34 d8 ee 3e 3a 6e ea af 1a 01 b7 a3 c0 |G..4..>:n.......| -orderer.example.com | 00000010 c9 be 51 90 b2 2e c1 19 0d ba 06 69 67 45 0f 99 |..Q........igE..| -orderer.example.com | [953 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a4 70 1b f6 a5 97 0a 02 90 2e 54 |0E.!..p........T| -orderer.example.com | 00000010 3e 1f 90 b5 12 71 ad 38 cf d9 05 d8 90 d7 8c 8c |>....q.8........| -orderer.example.com | 00000020 93 f4 9a 97 32 02 20 23 d4 a8 aa e7 f8 c7 4a 2e |....2. #......J.| -orderer.example.com | 00000030 7a a1 eb 99 1e 61 6d 3d f6 2b 6f b8 97 eb ab 05 |z....am=.+o.....| -orderer.example.com | 00000040 24 52 f6 53 df 6b 27 |$R.S.k'| -orderer.example.com | [954 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 principal evaluation succeeds for identity 0 -orderer.example.com | [955 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b8 gate 1527744204611771800 evaluation succeeds -orderer.example.com | [956 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [957 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [958 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [959 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [95a 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [95b 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [95c 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b521e0) start: > stop: > from 172.18.0.7:41404 -orderer.example.com | [95d 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [95e 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55524] -orderer.example.com | [95f 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -orderer.example.com | [960 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -orderer.example.com | [961 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -orderer.example.com | [962 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b521e0) for 172.18.0.7:41404 -peer0.org1.example.com | [e14 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer0.org1.example.com | [e15 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] marked as valid by state validator -peer0.org1.example.com | [e16 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [e17 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [e18 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [e19 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc4230cfad0)} -peer0.org1.example.com | [e1a 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -peer0.org1.example.com | [e1b 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -peer0.org1.example.com | [e1c 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -peer0.org1.example.com | [e1d 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} -peer0.org1.example.com | [e1e 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -peer0.org1.example.com | [e1f 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} -peer0.org1.example.com | [e20 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc420385420})} -peer0.org1.example.com | [e21 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -peer0.org1.example.com | [dfe 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [e22 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [e23 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [e24 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020:" signature:"0D\002 e%\277\241\324\320\271\360X\026\035\245~t`\373c6\207\025\023\255\332?\223\272\271qXGW\360\002 .\325d@3\335ml\336%\236|\227 In6/+W\234\352y\363\021KR~\353b\251\343" > -peer0.org1.example.com | [e25 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [de1 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [de3 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [de2 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020;" signature:"0D\002 W\333\232\241\313>3\204}\205\344/=\n \317=\301\353\366n\311H\220\204\310T\266\362\207\335\207\002 U\367CMV\262?\031\231\031\327s\217\262\036@e\366\314\324%\233o\243\266\225d:\263\255\213D" > alive:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > alive:!\237\270\002 \035\177+k\"\006\345\236\220f\341o\315\233\023o\201\014\206\221\033\232\000-T8\223n\016\262o\215" > -peer1.org2.example.com | [de4 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [de5 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [de7 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [de6 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [de8 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [de9 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [dea 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [deb 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [dec 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [ded 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer1.org2.example.com | [dee 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [def 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [df0 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [df1 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [df2 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [df3 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [df4 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [df5 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [df6 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c8b 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [c8c 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c8d 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [c8e 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [c8f 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [c90 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [c91 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [c92 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [c93 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [c94 05-31 05:22:07.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c95 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [c96 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [c97 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [c98 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c99 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [c9a 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [c9b 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [c9c 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [c9d 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [c9e 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [c9f 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [ca0 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [ca1 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [ca2 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [963 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41404 for (0xc420b521e0) -orderer.example.com | [964 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41404 -orderer.example.com | [965 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41404 -orderer.example.com | [966 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [967 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [968 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [969 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [96a 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [96b 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [96c 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [96d 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [96e 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [96f 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83c0 gate 1527744204617934000 evaluation starts -orderer.example.com | [970 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [971 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [972 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83c0 principal matched by identity 0 -orderer.example.com | [973 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 5a 05 36 49 a7 7a 0d b0 2b 0a e9 6e 02 34 cc 7e |Z.6I.z..+..n.4.~| -orderer.example.com | 00000010 33 bc ba 7e 86 78 ef 2d a0 c8 91 42 a2 f3 7c d3 |3..~.x.-...B..|.| -orderer.example.com | [974 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 98 07 1b 1a ab bd 71 f8 25 56 ca |0E.!.......q.%V.| -orderer.example.com | 00000010 b8 0e c1 e2 32 c5 10 35 8a 1c b4 42 9e aa b1 2b |....2..5...B...+| -orderer.example.com | 00000020 fc ae fd 64 e4 02 20 20 88 ef 60 58 75 94 65 b5 |...d.. ..`Xu.e.| -orderer.example.com | 00000030 0a cb ed b0 80 3b 56 5f f7 13 4e 08 47 6a 63 ef |.....;V_..N.Gjc.| -orderer.example.com | 00000040 bc d6 7e f0 db 19 7a |..~...z| -orderer.example.com | [975 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83c0 principal evaluation succeeds for identity 0 -orderer.example.com | [976 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83c0 gate 1527744204617934000 evaluation succeeds -orderer.example.com | [977 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [978 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [979 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [97a 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [97b 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [97c 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [97d 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420350f20) start: > stop: > from 172.18.0.7:41404 -orderer.example.com | [97e 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [97f 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] -orderer.example.com | [980 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34227], Going to peek [8] bytes -orderer.example.com | [981 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -orderer.example.com | [982 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [983 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420350f20) for 172.18.0.7:41404 -orderer.example.com | [984 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41404 for (0xc420350f20) -orderer.example.com | [985 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41404 -orderer.example.com | [986 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41404 -orderer.example.com | [987 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [988 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [989 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [98a 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [98b 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41404: rpc error: code = Canceled desc = context canceled -orderer.example.com | [98c 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [98d 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [98e 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41406 -orderer.example.com | [98f 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41406 -orderer.example.com | [990 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [991 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [992 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [993 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org2.example.com | [df7 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [df8 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [df9 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [dfa 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [dfb 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [dfc 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [dfd 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [dfe 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [dff 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [e00 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e01 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org2.example.com | [e02 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org2.example.com | [e03 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e04 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [e05 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e06 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [e07 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e08 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [e09 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [e0a 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [e0b 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [e0c 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [e0d 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [e0e 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [e0f 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e10 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [e11 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [e13 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [e12 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > alive:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > alive: -peer1.org2.example.com | [e14 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e15 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [e16 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [e17 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [e19 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [e18 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e1a 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e1b 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e1c 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e1d 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e1e 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e1f 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [e20 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [e21 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [e22 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e23 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [e24 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e25 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [e26 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [e27 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [e28 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [e29 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [e2a 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [e2b 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [e2c 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [e2d 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [e2e 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e2f 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [e30 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [e31 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:" signature:"0E\002!\000\3246A\262\277\375\316\311Z\244\375\300j\273w\237.4\211x|\230S8a\244G\256\225\231\311\353\002 e\372l\3100\206@G\376\345\272\307\353q;\220@G\350\214\355\373\363\021g:\241\324\356%b\221" secret_envelope:\204\224\252\360\213\220=4\237\320\260Yj\002 E\025\2143\\b\353\332\277\256 \351-\231\207Z\211\365D > -peer1.org2.example.com | [e32 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [e33 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e34 05-31 05:22:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [e35 05-31 05:22:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e36 05-31 05:22:16.40 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer0.org1.example.com | [e27 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] -peer0.org1.example.com | [e26 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e28 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xf3, 0xc7, 0x4f, 0xbb, 0x87, 0x22, 0x1c, 0x17, 0x22, 0xe5, 0x99, 0xfa, 0x51, 0x89, 0x6e, 0x4f, 0xee, 0x11, 0xe1, 0x74, 0x74, 0x8f, 0xd0, 0xe3, 0xb8, 0xb3, 0x7d, 0x74, 0x4f, 0x3e, 0x8f, 0x87} txOffsets= -peer0.org1.example.com | txId=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 locPointer=offset=70, bytesLength=3459 +peer0.org1.example.com | [670 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer0.org1.example.com | [671 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental +peer0.org1.example.com | [672 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 +peer1.org2.example.com | [73b 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [73c 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [73d 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [73e 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [73f 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [740 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [741 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [742 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [743 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [744 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [745 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [746 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [747 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [749 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [748 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [74a 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [74b 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [74c 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [74d 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [74e 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [74f 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [750 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [751 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [752 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [753 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [754 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [755 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [756 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [757 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [758 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [759 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [75a 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 29 but got ts: inc_num:1528769653227426900 seq_num:28 +peer1.org2.example.com | [75b 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [75c 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [75d 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [75e 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 31 but got ts: inc_num:1528769652429776900 seq_num:29 +peer1.org2.example.com | [75f 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [760 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [761 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [762 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [763 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [764 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [765 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [766 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [767 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [768 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [769 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [76a 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [76b 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [76c 06-12 02:14:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [76d 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [76e 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [76f 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [770 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [771 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [772 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [773 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [774 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [72e 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [72f 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [730 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [731 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [732 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [733 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [734 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [735 06-12 02:14:29.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [736 06-12 02:14:31.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [737 06-12 02:14:31.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [739 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [73a 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [73b 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [73c 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [73d 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [73e 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [73f 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [740 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [741 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [742 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [738 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [743 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [744 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [745 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [746 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [747 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [749 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [74a 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [74b 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [74c 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [74d 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [74e 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [74f 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [750 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [751 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [748 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [752 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [753 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [754 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [755 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [756 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [757 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [758 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [759 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [4f1 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [4f2 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [4f3 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [4f4 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [4f5 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [4f6 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [4f7 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [4f8 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [673 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org1.example.com | [674 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org1.example.com | [675 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [676 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [677 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [678 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [679 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [67a 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [67b 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [67c 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [67d 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [67e 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [67f 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [680 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [681 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [682 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [683 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [684 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [685 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [686 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [687 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [688 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [689 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [68a 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [68b 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [68d 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [68e 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [68c 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [68f 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [690 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [691 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [692 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [693 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [694 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [695 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [696 06-12 02:14:27.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [697 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer0.org1.example.com | [698 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [699 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [69a 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [69b 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [69d 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [69c 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [69e 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [69f 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6a0 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [775 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [776 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [777 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [778 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [779 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [77a 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [77b 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [77c 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [77d 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [77e 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > alive: alive:\312" > +peer1.org2.example.com | [77f 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [780 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [781 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [782 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [783 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [784 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [785 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [786 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [787 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [788 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 29 but got ts: inc_num:1528769652088169500 seq_num:28 +peer1.org2.example.com | [789 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [78a 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [78b 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [78c 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [78d 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [78e 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [78f 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [790 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [791 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [792 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [793 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [794 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [795 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [796 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [797 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [798 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [799 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [79a 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [79b 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [79c 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [79d 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [79e 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [79f 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [7a0 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7a1 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7a2 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [7a3 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [4f9 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [4fa 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [4fb 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [4fc 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [4fd 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [4fe 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +orderer.example.com | [4ff 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [500 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [501 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [502 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [503 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [504 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +orderer.example.com | [505 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +orderer.example.com | [506 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +orderer.example.com | [507 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [508 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [509 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [50a 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +orderer.example.com | [50b 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +orderer.example.com | [50c 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +orderer.example.com | [50d 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [50e 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [50f 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [510 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [511 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [512 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [513 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [514 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [515 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [6a1 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6a2 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [75a 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [75b 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [75c 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [75d 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [75e 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [75f 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [760 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [762 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [763 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [761 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\021e\273$%\241V\211K\244V\345-\314\272{z7\007M\266" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\032" signature:"0E\002!\000\206]\230\353\2615p\001\360\272&\271\225\252\247i%\037*\355\177\366\2552\223f\310\241\367\311$\327\002 \036\224\304\353Gm\217\232\260&\365<\"\344\020\207\025+>M\201\275\346\032\211\233\246\313W6&4" > alive: alive: +peer1.org1.example.com | [764 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [765 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [766 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [767 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [768 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [769 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [76a 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [76b 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [76c 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [76d 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [76e 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [76f 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [770 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [771 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [773 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [774 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [775 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [776 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [777 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [778 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [779 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [77a 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [77b 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [77c 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [77d 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [772 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [77e 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [780 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [781 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [782 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [783 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [784 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [516 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [517 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [518 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [519 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [51a 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [51b 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [51c 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [51d 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [51e 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [51f 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [520 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [521 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [522 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [523 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [524 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [525 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [526 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [527 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [528 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [529 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [52a 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [52b 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [52c 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [52d 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [52e 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [52f 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [530 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [531 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [532 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [533 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [534 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [6a3 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [6a4 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6a5 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6a6 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [6a7 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6a8 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [6a9 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [6aa 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [6ab 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [6ac 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6ae 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6ad 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6af 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6b0 06-12 02:14:27.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [6b1 06-12 02:14:27.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [6b2 06-12 02:14:27.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [6b3 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [6b4 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [6b5 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6b6 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6b7 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6b8 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [6b9 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [6ba 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6bb 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6bc 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [6bd 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [6be 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [6bf 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [6c0 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [6c1 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [6c2 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [6c3 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [6c4 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [6c5 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [6c6 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6c7 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6c8 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6c9 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6ca 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6cb 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6cc 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [6cd 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [6ce 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6cf 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [6d0 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6d1 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6d2 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [6d3 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7a4 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7a5 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7a6 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [7a7 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [7a8 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [7aa 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [7ab 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [7ac 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [7ad 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7a9 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [7af 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7b0 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7b1 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [7ae 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [7b2 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [7b3 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [7b4 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [7b6 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7b7 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7b8 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [7b9 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [7ba 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [7bb 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7bc 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [7bd 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7be 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [7b5 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7bf 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [7c0 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7c1 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [7c2 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [7c3 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [7c4 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7c5 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [7c6 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [7c7 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [7c8 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [7c9 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [7ca 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [7cb 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [7cc 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [7cd 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [7ce 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [7cf 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [7d0 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [7d2 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [7d3 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [535 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [536 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [537 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [538 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [539 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [53a 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [53b 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [53c 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [53d 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [53e 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [53f 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [540 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [541 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [542 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [543 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +orderer.example.com | [544 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [545 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [546 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [547 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [548 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [549 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +orderer.example.com | [54a 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +orderer.example.com | [54b 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [54c 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [54d 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...9E3C5D4763016D4E6D810E6474177C81 +orderer.example.com | [54e 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EFA94A647213AAD628BA0A4FAF622EDED1187778DB26766A9D432356572A4C75 +orderer.example.com | [54f 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 +orderer.example.com | [550 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [551 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +orderer.example.com | [552 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [553 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...9E3C5D4763016D4E6D810E6474177C81 +orderer.example.com | [554 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 32BB3F967BBF3382CCF8C711EFC8E314982125A22EFD493A0773F02663D97ECB +orderer.example.com | [555 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x71, 0x5a, 0x51, 0xe9, 0xa2, 0xaf, 0xec, 0xef, 0x2d, 0x90, 0x9d, 0xf1, 0x4a, 0x14, 0x48, 0x4f, 0xc, 0x23, 0xa9, 0xe9, 0xf2, 0xac, 0x62, 0xe, 0xce, 0x9a, 0x5e, 0x31, 0xff, 0x8c, 0x6, 0xcb} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=12094 +orderer.example.com | ] +peer0.org2.example.com | [638 06-12 02:14:25.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 84 68 78 89 119 109 47 116 81 73 53 102 82 68 79 109 111 115 48 103 82 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 90 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 90 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 120 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 90 73 84 86 87 54 99 48 115 120 47 115 121 102 101 112 106 75 72 56 110 71 104 114 68 120 55 56 85 75 101 74 10 74 54 50 103 70 108 107 121 48 65 75 55 53 69 74 74 110 47 81 101 68 71 99 82 71 118 120 108 74 47 111 105 47 88 55 67 70 53 109 113 74 65 101 108 88 116 72 119 54 109 117 51 109 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 101 67 98 122 68 48 99 81 102 43 118 51 10 105 114 48 85 53 53 52 97 103 114 116 75 88 54 50 107 84 120 79 77 52 83 68 98 107 55 69 67 77 48 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 78 106 119 113 110 104 121 10 122 97 56 117 112 88 116 110 111 52 87 47 116 111 118 80 75 122 113 47 83 104 68 82 68 114 101 56 65 67 52 87 83 77 109 48 65 105 66 109 112 67 87 115 81 90 106 78 106 100 76 47 75 78 114 48 109 113 109 106 100 120 98 88 10 102 118 53 89 83 57 47 121 115 100 56 106 121 52 97 43 112 103 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer0.org2.example.com | [639 06-12 02:14:25.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 106 67 67 65 99 67 103 65 119 73 66 65 103 73 82 65 79 51 85 114 78 82 115 80 53 106 75 77 75 47 120 84 74 43 54 106 108 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 103 119 77 84 77 119 77 68 99 48 77 68 73 50 87 104 99 78 77 106 103 119 77 84 73 52 77 68 99 48 77 68 73 50 10 87 106 66 98 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 102 77 66 48 71 65 49 85 69 65 120 77 87 99 71 86 108 99 106 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 10 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 78 73 116 103 106 85 116 105 107 55 88 99 114 47 84 115 56 118 114 108 70 85 82 85 67 78 111 83 55 114 99 10 50 72 118 107 106 67 53 100 72 56 69 55 70 88 97 117 70 119 76 101 81 106 65 82 65 112 80 56 85 70 52 79 112 116 70 82 87 120 120 70 104 48 66 71 109 76 72 101 86 43 113 57 111 120 54 106 84 84 66 76 77 65 52 71 10 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 72 103 68 65 77 66 103 78 86 72 82 77 66 65 102 56 69 65 106 65 65 77 67 115 71 65 49 85 100 73 119 81 107 77 67 75 65 73 72 103 109 56 119 57 72 69 72 47 114 10 57 52 113 57 70 79 101 101 71 111 75 55 83 108 43 116 112 69 56 84 106 79 69 103 50 53 79 120 65 106 78 72 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 100 50 81 72 76 10 112 75 80 79 118 116 87 106 88 69 66 111 55 104 72 51 108 66 117 51 120 97 76 78 66 107 75 112 52 66 115 72 56 97 115 86 57 119 73 103 85 110 82 89 43 47 53 70 114 66 49 52 84 83 49 43 67 56 79 55 115 113 49 120 10 70 105 47 75 52 86 85 107 99 114 116 50 47 74 72 76 101 50 77 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +peer0.org2.example.com | [63a 06-12 02:14:25.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [63b 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [63c 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [63d 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [63e 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [63f 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [640 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [641 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [642 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [643 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [644 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [645 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [646 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [647 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [648 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [649 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [64a 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [64b 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [64c 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [64d 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [64e 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [64f 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [650 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [651 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [652 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [653 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [654 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [655 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [656 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [657 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [658 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [659 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [65a 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [65b 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [65c 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [65d 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [7d1 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" secret_envelope: > alive:\023\201\242\315\343G\353)\3376\330I\2209Z\366R\007R\322\002 A\343\363\225\346\025\353\323&\353z\216 \177\377\225\n\3518\352Bg82\230kjP~x\226\362" secret_envelope: > +peer1.org2.example.com | [7d4 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [7d5 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7d6 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [7d7 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [7d8 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [7d9 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7da 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org2.example.com | [7db 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org2.example.com | [7dc 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org2.example.com | [7dd 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [7de 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7df 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [7e0 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [7e1 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [7e2 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [7e3 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [7e4 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [7e5 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [7e6 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [7e7 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [7e8 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [7e9 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7ea 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [7eb 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [7ec 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [7ed 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [7ee 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [7ef 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7f0 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [7f1 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7f2 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org2.example.com | [7f3 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org2.example.com | [7f4 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7f5 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [7f6 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [7f7 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [7f8 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [7f9 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7fa 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [7fb 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [7fc 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [7fd 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [7fe 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [7ff 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [800 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [801 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [802 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [803 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [804 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [805 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [806 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [807 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [808 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [809 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [80a 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [80b 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [80c 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [80d 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [80e 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [80f 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [810 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [811 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [812 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [813 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [814 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [815 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [816 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [817 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [785 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [786 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [787 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [788 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [789 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [78a 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [78b 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [78c 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" secret_envelope: > alive: > +peer1.org1.example.com | [78d 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org1.example.com | [78e 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [78f 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [790 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [791 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [792 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [793 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [794 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [77f 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [795 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [796 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [798 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [799 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [797 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [79a 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [65e 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [65f 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [660 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [661 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [662 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [663 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [664 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [665 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [666 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [667 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [668 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [669 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [66b 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [66c 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [66d 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [66e 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [66f 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [670 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [66a 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [671 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [672 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [673 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [674 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [675 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [676 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [677 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [678 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [679 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [67a 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [67b 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [67c 06-12 02:14:27.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [67d 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [67e 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [67f 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [681 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [680 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [683 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [684 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [682 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [685 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [686 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [688 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [689 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [68a 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [68b 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [687 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [68c 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [68d 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [68e 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [68f 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [690 06-12 02:14:27.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [691 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [692 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [693 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [694 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [695 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [696 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [697 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [698 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [699 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [69a 06-12 02:14:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [69b 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [69c 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [69d 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [69e 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [69f 06-12 02:14:27.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6a0 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [6a1 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [6a2 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6a3 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [6a4 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6a5 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [6a6 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [6a7 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [6a8 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [6a9 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [6aa 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [6ab 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [6ac 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [6ad 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [6ae 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [6af 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer0.org2.example.com | [6b0 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [6b1 06-12 02:14:27.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [6b2 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [6b3 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [6b4 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [6b5 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6b6 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [6b7 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6b8 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [6b9 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6ba 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [79b 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [79c 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [79d 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [79e 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [79f 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [7a0 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [7a1 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [7a2 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7a3 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [7a4 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [7a5 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [7a6 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [7a7 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7a8 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [7a9 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [7aa 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7ac 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org1.example.com | [7ad 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [7ae 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [7ab 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [7af 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [7b0 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [7b1 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [7b2 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [7b3 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [7b5 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [7b6 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [7b7 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [7b8 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [7b9 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [7ba 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [7bb 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [7bc 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [7bd 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [7b4 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [7be 06-12 02:14:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7bf 06-12 02:14:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [7c0 06-12 02:14:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7c1 06-12 02:14:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [7c2 06-12 02:14:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7c3 06-12 02:14:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [7c4 06-12 02:14:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [7c5 06-12 02:14:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7c6 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7c7 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7c8 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [7c9 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7ca 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7cb 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7cc 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [7cd 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [7ce 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [7cf 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [7d0 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [7d1 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [7d2 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [7d3 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [7d4 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [7d5 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [7d6 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7d7 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [7d8 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7d9 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [7da 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7db 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7dc 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [7dd 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7de 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7df 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [7e0 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [7e1 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [7e2 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [7e3 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [7e4 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [7e5 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7e6 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [7e7 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6bb 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [6bc 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [6bd 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [6be 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [6bf 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [6c0 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [6c1 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [6c2 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [6c3 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > alive: alive:\343\357=\337\031\334\000\356U\331\236\240\364\221\205k:\333\215k\002 9\016\300\332X%\021\377\201\227\242\351\214\305T=@]\234\314|)\271\356\032\004\243\3560=\323\311" > +peer0.org2.example.com | [6c4 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [6c5 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [6c6 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [6c7 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [6c8 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6c9 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6ca 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [6cc 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6cd 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6ce 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [6cf 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [6d0 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [6d1 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [6d2 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [6d3 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [6d4 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [6d5 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [6cb 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6d6 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [6d7 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [6d9 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6d8 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6da 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [6db 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6dd 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [6dc 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [6de 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6e0 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6e1 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6df 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6e2 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [6e3 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [6e4 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6e5 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [6e6 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [6e7 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [6e8 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6e9 06-12 02:14:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org1.example.com | [6d4 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [6d5 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [6d6 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [6d7 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [6d8 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [6d9 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [6da 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [6db 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [6dc 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [6dd 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [6de 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [6df 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [6e0 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [6e1 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [6e2 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [6e3 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [6e4 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [6e5 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [6e6 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [6e7 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [6e8 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [6e9 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [6ea 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\027" signature:"0E\002!\000\275\307\333!\322b\264\004\000\232\030d\314\327W\266&\212K\322\246\036\251S\334:_\231\014\324\341\027\002 \035\024\030S?\321#\275\026\261\324\337\325\253\237\022\027\000\332\321\035\005 \342\345\017\341x\343\371i\037" > +peer0.org1.example.com | [6eb 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [6ec 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6ed 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [6ee 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [6ef 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [6f0 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [6f1 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [6f2 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [6f3 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [6f4 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6f6 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [6f8 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [6f9 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [6fa 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [6f5 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [6fb 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6f7 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [6fc 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [6fd 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [556 06-12 02:14:18.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] +orderer.example.com | [557 06-12 02:14:18.64 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 +orderer.example.com | [558 06-12 02:14:20.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [559 06-12 02:14:20.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35738 +orderer.example.com | [55a 06-12 02:14:20.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35738 +orderer.example.com | [55b 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [55c 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35740 +orderer.example.com | [55d 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:35740 +orderer.example.com | [55e 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +orderer.example.com | [55f 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [560 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [561 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [562 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [563 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [564 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [565 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [566 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150360 gate 1528769660734984300 evaluation starts +orderer.example.com | [567 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150360 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [568 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150360 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [569 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150360 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [56a 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150360 principal evaluation fails +orderer.example.com | [56b 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150360 gate 1528769660734984300 evaluation fails +orderer.example.com | [56c 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [56d 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [56e 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +orderer.example.com | [56f 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +orderer.example.com | [570 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [571 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [572 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [573 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [574 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150378 gate 1528769660737038200 evaluation starts +orderer.example.com | [575 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150378 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [576 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150378 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [577 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150378 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [578 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150378 principal evaluation fails +orderer.example.com | [579 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150378 gate 1528769660737038200 evaluation fails +peer1.org1.example.com | [7e8 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [7e9 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [7ea 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [7eb 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7ec 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [7ed 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [7ee 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [7ef 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [7f0 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [7f1 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [7f2 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [7f3 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [7f4 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [7f5 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [7f6 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7f7 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [7f8 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [7fa 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [7fb 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [7f9 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > alive: alive: +peer1.org1.example.com | [7fc 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [7fd 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [7fe 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [7ff 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [800 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [801 06-12 02:14:33.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [802 06-12 02:14:33.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [803 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [804 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [805 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [806 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [807 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [808 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [809 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [80a 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [80b 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [80c 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [80d 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [80e 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [80f 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [811 06-12 02:14:33.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [812 06-12 02:14:33.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [813 06-12 02:14:33.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [814 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [810 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [815 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [816 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6ea 06-12 02:14:28.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [6eb 06-12 02:14:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [6ec 06-12 02:14:28.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [6ed 06-12 02:14:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [6ee 06-12 02:14:28.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [6ef 06-12 02:14:28.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [6f0 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [6f1 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [6f2 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [6f3 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [6f4 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [6f5 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [6f6 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [6f7 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6f8 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [6f9 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [6fa 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [6fb 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [6fc 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [6fd 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [6fe 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [57a 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [57b 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [57c 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [57d 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150388 gate 1528769660738567300 evaluation starts +orderer.example.com | [57e 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150388 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [57f 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150388 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [580 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [581 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [582 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150388 principal matched by identity 0 +orderer.example.com | [583 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 b9 22 98 cd a9 8b 5a f3 80 70 1b 65 a1 8f 01 ac |."....Z..p.e....| +orderer.example.com | 00000010 42 01 5d 05 87 dc 3e 3b 16 8c 75 e0 37 66 17 a0 |B.]...>;..u.7f..| +orderer.example.com | [584 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 91 61 b1 16 e9 18 1f 8a a3 d9 c5 |0D. h.a.........| +orderer.example.com | 00000010 82 f0 09 c9 8d 28 dc 50 c2 70 04 d4 e7 9e e3 ed |.....(.P.p......| +orderer.example.com | 00000020 d6 42 0b 39 02 20 0b e3 58 80 0a ce 4d f1 08 ba |.B.9. ..X...M...| +orderer.example.com | 00000030 b0 70 6c 37 60 9c 81 b7 dc 83 99 12 49 bb 85 8f |.pl7`.......I...| +orderer.example.com | 00000040 99 20 24 21 d1 6f |. $!.o| +orderer.example.com | [585 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150388 principal evaluation succeeds for identity 0 +orderer.example.com | [586 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150388 gate 1528769660738567300 evaluation succeeds +orderer.example.com | [587 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [588 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [589 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [58a 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +peer0.org1.example.com | [6fe 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [6ff 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [702 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [703 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [704 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [705 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [701 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [706 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org1.example.com | [707 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [700 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [708 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [709 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [70b 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [70c 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [70a 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [70d 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [70e 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [70f 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [710 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [711 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [712 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [713 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [715 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [714 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [716 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [717 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [718 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [719 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [71a 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [71b 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [71c 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [71d 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [71e 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [71f 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [720 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [721 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [722 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [723 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [724 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [725 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [726 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [727 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [728 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [729 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [72a 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [72b 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [72c 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [72d 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [72e 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [72f 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [730 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [732 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [733 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [731 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [734 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [735 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [736 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [737 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [738 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [739 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [73a 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [73b 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [73c 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [73d 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [73e 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [73f 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [740 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [742 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [741 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [743 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [744 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 27 but got ts: inc_num:1528769651824440500 seq_num:26 +peer0.org1.example.com | [745 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [746 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [747 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [748 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [749 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [74a 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [74b 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [74c 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 25 but got ts: inc_num:1528769653227426900 seq_num:23 +peer0.org1.example.com | [74d 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [74e 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [74f 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [750 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [817 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [818 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [819 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [81a 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [81b 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [81c 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [81d 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [81e 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [81f 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [820 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [821 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [822 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [823 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [824 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [825 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [826 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [827 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [819 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > alive:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > alive: +peer1.org2.example.com | [818 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [81b 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [81a 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [81c 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [81d 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [81f 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [81e 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [820 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [821 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [822 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [823 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [824 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [825 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [826 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [827 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [828 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [829 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [82a 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [82b 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [82c 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [82e 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [82d 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [82f 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [830 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [831 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [832 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [834 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [835 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [836 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [833 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [837 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [838 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [839 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [83a 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [83b 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [83c 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [83d 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [83e 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [83f 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [840 06-12 02:14:35.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [841 06-12 02:14:35.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [842 06-12 02:14:35.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [751 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [752 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [753 06-12 02:14:28.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [754 06-12 02:14:28.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [755 06-12 02:14:28.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [756 06-12 02:14:28.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [757 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [758 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [828 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [829 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [82a 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [82b 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [82c 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [82d 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [82e 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [82f 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [831 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [832 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [833 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [830 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [834 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [835 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [836 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [837 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [838 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [839 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [83b 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [83a 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [83c 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [83d 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [83e 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [6ff 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [700 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [701 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [702 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [703 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [704 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [705 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [706 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [707 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [708 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [709 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [70a 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [70b 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [70c 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [70d 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [70e 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [70f 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [710 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [711 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [712 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [713 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [714 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [58b 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [58c 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [58d 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [58e 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [58f 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [590 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [591 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [592 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [593 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [594 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [595 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [596 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [597 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [598 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [599 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [59a 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [59b 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [59c 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +orderer.example.com | [59d 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +orderer.example.com | [59e 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +peer1.org2.example.com | [844 06-12 02:14:35.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [846 06-12 02:14:35.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [843 06-12 02:14:35.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [845 06-12 02:14:35.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [847 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [848 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [849 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [84a 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [84b 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [84c 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [84d 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [84e 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [84f 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [850 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [851 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [852 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [853 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [854 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [855 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [856 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [857 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [858 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [859 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [85a 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [85c 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [75a 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [75b 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [75c 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [759 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [75d 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [75e 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [75f 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [761 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [762 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [760 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [763 06-12 02:14:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [764 06-12 02:14:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [765 06-12 02:14:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [766 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [767 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [768 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [769 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [76a 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [76b 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [76c 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [76d 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [76e 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [76f 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [770 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [771 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [772 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [773 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [774 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [775 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [776 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [777 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [778 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [779 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [77a 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [77b 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [77c 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [77d 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [77e 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [77f 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [780 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [781 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [782 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [783 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [784 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [785 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [786 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [787 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [788 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [789 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [78a 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [78b 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [78c 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [78d 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [78e 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [715 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [716 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [717 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [718 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [719 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [71a 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [71b 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [71c 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [71d 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [71e 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [71f 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [721 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [722 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [720 06-12 02:14:28.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [723 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [724 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [725 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [726 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [727 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [728 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [729 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [72a 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [72b 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [72c 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [72d 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [72e 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [72f 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [730 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [731 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [732 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [733 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [734 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [735 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [736 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [737 06-12 02:14:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [738 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 28 but got ts: inc_num:1528769651824440500 seq_num:27 +peer0.org2.example.com | [739 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [73a 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [73b 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [73c 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [73d 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [73e 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [73f 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [740 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [741 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [742 06-12 02:14:28.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [743 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [744 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [745 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [746 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [747 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [83f 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [840 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [841 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [842 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [843 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [844 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [845 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [846 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [847 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [849 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [848 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [84a 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [84b 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [84c 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [84d 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [84e 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [84f 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [850 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [851 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [852 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [853 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [854 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [856 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [855 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [857 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [858 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 34 but got ts: inc_num:1528769651824440500 seq_num:33 +peer1.org1.example.com | [859 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [78f 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [790 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [791 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [792 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [793 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [794 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [795 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [796 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [797 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [798 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [799 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [79a 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [79b 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [79c 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [79d 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [79e 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [79f 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [7a0 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [7a1 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [7a2 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [7a3 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [7a4 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [7a5 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [748 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [749 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [74a 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [74b 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [74c 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [74d 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [74e 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [74f 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [750 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [751 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [752 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [753 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [754 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [755 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [756 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [757 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [758 06-12 02:14:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [759 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [75a 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [75b 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [75c 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [75d 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [75e 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [75f 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [760 06-12 02:14:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [761 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [762 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [763 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [764 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [85a 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [85b 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [85c 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 31 but got ts: inc_num:1528769652088169500 seq_num:30 +peer1.org1.example.com | [85d 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [85e 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [85f 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [860 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [861 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [862 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [863 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [864 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [865 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [866 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [867 06-12 02:14:33.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [868 06-12 02:14:33.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [869 06-12 02:14:33.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [86a 06-12 02:14:33.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [86b 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [86c 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [86d 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [86e 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [86f 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [870 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7a6 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\031" signature:"0E\002!\000\265\264\034?\337C\345\323\224p\237\374\3327\233<\023\203\032\342Wk\021\300\213q\364\373\014\261=8\002 \n;\222F\337BP\363\3431\200'\375\234/e\211\350:\"\317a\014-\024\270\274\326\353\351K\372" > +peer0.org1.example.com | [7a7 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [7a8 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [7a9 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [7aa 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [7ab 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7ac 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [7ad 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [7ae 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7af 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [7b0 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [7b1 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [7b2 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7b3 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [7b4 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7b5 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [7b6 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [7b7 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [7b8 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [765 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [766 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [767 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [768 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [769 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [76a 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [76b 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [76c 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [76d 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [76e 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [76f 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [770 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [771 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [772 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [774 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [773 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\031" signature:"0E\002!\000\265\264\034?\337C\345\323\224p\237\374\3327\233<\023\203\032\342Wk\021\300\213q\364\373\014\261=8\002 \n;\222F\337BP\363\3431\200'\375\234/e\211\350:\"\317a\014-\024\270\274\326\353\351K\372" > alive: alive:\021e\273$%\241V\211K\244V\345-\314\272{z7\007M\266" > +peer0.org2.example.com | [775 06-12 02:14:29.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [776 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [777 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [778 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [779 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [77a 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [77b 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [77c 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [77d 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [77e 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [77f 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [780 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [781 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [782 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [783 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [784 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [785 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [787 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [788 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [789 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [78a 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [78b 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [786 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [78c 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [78d 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [78e 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [78f 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [790 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [791 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [792 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [793 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [795 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [794 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [796 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [797 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [798 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [799 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [79a 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [79b 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [79c 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [79d 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [79e 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [79f 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7a0 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [7a1 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7a2 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [7a4 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +orderer.example.com | [59f 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [5a0 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [5a1 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [5a2 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [5a3 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [5a4 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +orderer.example.com | [5a5 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [5a6 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [5a7 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +orderer.example.com | [5a8 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +orderer.example.com | [5a9 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4201505f8 gate 1528769660745054800 evaluation starts +orderer.example.com | [5aa 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [5ab 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505f8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [5ac 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [5ad 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505f8 principal matched by identity 0 +orderer.example.com | [5ae 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 59 eb 02 6e 43 cc 4b ef 49 6c 9b 49 9c 09 95 21 |Y..nC.K.Il.I...!| +orderer.example.com | 00000010 31 92 9a b4 2f 58 bc 47 a2 27 2b 8e ad 87 b6 24 |1.../X.G.'+....$| +peer1.org1.example.com | [871 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [872 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [873 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [874 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [875 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [876 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [877 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [878 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [879 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [87a 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [87b 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [87c 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [87d 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\037" signature:"0D\002 \177\345V\016e;!\350\254\021\207\313\267\201\304j/\361\361\3130n\261\237!\273(\0133\3545\274\002 \013\305\235 alive: alive: +peer1.org1.example.com | [87e 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [87f 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [880 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [881 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [882 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [883 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [884 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [85d 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [85b 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [85e 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [85f 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [860 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [861 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [862 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [863 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 36 but got ts: inc_num:1528769652429776900 seq_num:34 +peer1.org2.example.com | [864 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [865 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [866 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [867 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [868 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [869 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [86a 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [86b 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [86c 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [86d 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [86e 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [86f 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [870 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [871 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [873 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [872 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [874 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [875 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [876 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 36 but got ts: inc_num:1528769652429776900 seq_num:35 +peer1.org2.example.com | [877 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [878 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [879 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [87a 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 32 but got ts: inc_num:1528769652088169500 seq_num:31 +peer1.org2.example.com | [87b 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [87c 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [87d 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [87e 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [87f 06-12 02:14:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [880 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [881 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [882 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [883 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [884 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [885 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [886 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [887 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [888 06-12 02:14:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [889 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [88a 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [88b 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [88c 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [88d 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [88f 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [890 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [891 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [88e 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [892 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [893 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [894 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [895 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [896 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [7b9 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [7ba 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [7bb 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [7bc 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [7bd 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [7be 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [7bf 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [7c0 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [7c1 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\032" signature:"0E\002!\000\206]\230\353\2615p\001\360\272&\271\225\252\247i%\037*\355\177\366\2552\223f\310\241\367\311$\327\002 \036\224\304\353Gm\217\232\260&\365<\"\344\020\207\025+>M\201\275\346\032\211\233\246\313W6&4" secret_envelope: > +peer0.org1.example.com | [7c2 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org1.example.com | [7c3 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [7c4 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7c5 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7c6 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [7c7 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7c8 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7c9 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7ca 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [7cb 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [7cc 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [7cd 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [7ce 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [7cf 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [5af 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7b 4a 4b 38 d3 92 84 6a ab d3 a7 20 |0D. {JK8...j... | +orderer.example.com | 00000010 b0 fa cb d7 39 0e 56 0b 15 34 11 3e e9 e1 86 36 |....9.V..4.>...6| +orderer.example.com | 00000020 0e 1a 6f b7 02 20 4b ac 5f 73 3a 03 16 81 2d 01 |..o.. K._s:...-.| +orderer.example.com | 00000030 a1 a7 a6 7d 94 a5 54 89 d1 bf b0 74 e2 98 aa 3d |...}..T....t...=| +orderer.example.com | 00000040 49 8b 9d 37 2d 08 |I..7-.| +orderer.example.com | [5b0 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505f8 principal evaluation succeeds for identity 0 +orderer.example.com | [5b1 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4201505f8 gate 1528769660745054800 evaluation succeeds +orderer.example.com | [5b2 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [5b3 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [5b4 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [5b5 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5b6 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5b7 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5b8 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5b9 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5ba 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5bb 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [5bc 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5bd 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5be 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5bf 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [5c0 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [5c1 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [5c2 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5c3 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5c4 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5c5 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [5c6 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [5c7 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [5c8 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [5c9 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [5ca 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [5cb 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [5cc 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [5cd 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [5ce 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [5cf 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [5d0 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [5d1 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [5d2 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [5d3 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [5d4 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [5d5 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [5d6 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5d7 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [5d8 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [5d9 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [5da 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [5db 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +peer1.org1.example.com | [885 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [886 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [887 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [888 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [889 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [88a 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [88b 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [88c 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [88d 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [88e 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [88f 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [890 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [892 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [893 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [894 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" secret_envelope: > alive:\266\342\204\305&M\017\000=;\234=w\247\237.\347\217t \026>\t" > > +peer1.org1.example.com | [895 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [896 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [891 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [897 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [897 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [898 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [899 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [89a 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [89b 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > alive: +peer1.org2.example.com | [89c 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [89d 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [89e 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [89f 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8a0 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [8a1 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [8a2 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7d0 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [7d1 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [7d2 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7d3 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [7d5 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [7d6 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7d7 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7d8 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [7d4 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [7d9 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [7da 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [7db 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7dd 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [7dc 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7de 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7df 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [7e0 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7e1 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7e3 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [7e2 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [7e4 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [7e5 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [7e7 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [898 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [899 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [89a 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [89b 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [89c 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [89d 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [89e 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [89f 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [8a0 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [8a1 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [8a2 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [8a3 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [8a4 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [8a5 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [8a6 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [8a7 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [8a8 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [8a9 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8aa 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [8ab 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8ac 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [8ad 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8ae 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [8af 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [8b0 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [8b1 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [8b2 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [8b3 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [8b4 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [8b5 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8a3 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [8a4 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [8a5 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [8a6 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8a7 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [8a8 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8a9 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [8aa 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [8ab 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [8ac 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [8ad 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [8ae 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [8af 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [8b0 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [8b1 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [8b2 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [8b3 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [8b4 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [5dc 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [5dd 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [5de 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [5df 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +orderer.example.com | [5e0 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [5e1 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [5e2 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [5e3 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [5e4 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [5e5 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [5e6 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [5e7 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [5e8 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [5e9 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [5ea 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +orderer.example.com | QKuzs3j8kg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [5eb 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +orderer.example.com | 3BDFnYuSFYhOCexVkA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [5ec 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [5ed 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [5ee 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [5ef 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [5f0 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [8b5 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer1.org2.example.com | [8b6 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer1.org2.example.com | [8b7 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8b8 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [8b9 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8ba 06-12 02:14:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [8bb 06-12 02:14:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [8bc 06-12 02:14:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [8bd 06-12 02:14:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8be 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [8bf 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [8c1 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8c0 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [8c2 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [8c3 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8c4 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8c5 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [8c6 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [8c7 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8c8 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [8c9 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8ca 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [8cb 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8cc 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [8cd 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [8ce 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [8cf 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8d0 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org2.example.com | [8d1 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org2.example.com | [8d2 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8d3 06-12 02:14:36.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [7e8 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [7e9 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7ea 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [7eb 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7ec 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [7e6 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [7ed 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [7ee 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [7ef 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [7f0 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [7f1 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [7f2 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [7f3 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [7f4 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [7f5 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [7f6 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [7f8 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [7f9 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [7f7 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\033" signature:"0E\002!\000\320zmV}\301M\234\370|[\343\315\026\207\312\307\322)y\"\236\310\360\2462\252\271\335W\305\267\002 |\027x<\013W\027\332I\243\321\304\226\234\212@VXB:\272\255\316\376\027\313:PA\322\027$" > +peer0.org1.example.com | [7fa 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [7fb 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [7fc 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [7fd 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [8b6 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [8b7 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [8b8 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [8b9 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [8ba 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8bb 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [8bc 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [8bd 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8be 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [8bf 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8c0 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [8c1 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [8c2 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [8c3 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [8c4 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [8c5 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [8c6 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [8c7 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [8c8 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [8c9 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [8ca 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > alive: alive: +peer1.org1.example.com | [8cb 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [8cc 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [8cd 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [8ce 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [8cf 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8d0 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [8d1 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8d2 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8d3 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [8d4 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8d5 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8d6 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8d7 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [8d8 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [8d9 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [8da 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [8db 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [8dc 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [8dd 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [8de 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [8df 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8e0 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8e1 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [8e2 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8e3 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8e4 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [8e5 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [8e6 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [8e7 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8e8 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [8e9 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8ea 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [8eb 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8ec 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8ed 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [8ee 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8ef 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8f0 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [8f1 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8f2 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8f3 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [8f4 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [8f5 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8f6 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [8f7 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [8f8 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [7fe 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [7ff 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [800 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [801 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [802 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [803 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [804 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [805 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [806 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [807 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [808 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [809 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [80a 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [80b 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [80c 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [80d 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [80e 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [80f 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [810 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [811 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [812 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [813 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [814 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [815 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [816 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [817 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [818 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [819 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [81a 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [81b 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [81c 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [81d 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [81e 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [81f 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [820 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [821 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [822 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [823 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [824 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [825 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [827 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [826 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [828 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [829 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [82a 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [82b 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [82c 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [82d 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [82e 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [82f 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [830 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [831 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [832 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [833 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [834 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [835 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [836 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [837 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [838 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [839 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [83a 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [83b 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [83c 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [83d 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [83e 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8d4 06-12 02:14:36.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [8d5 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer1.org2.example.com | [8d6 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [8d7 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [8d8 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8d9 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8da 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8db 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8dc 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8dd 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8de 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8df 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [8e0 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8e1 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8e2 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8e3 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [8e4 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [8e5 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [8e6 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [8e7 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [8e8 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [8e9 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [8ea 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [8eb 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [8f9 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [8fa 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [8fb 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [8fc 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [8fd 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [8fe 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [8ff 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [900 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [901 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [902 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [903 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [904 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [905 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [906 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [907 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [908 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [909 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [90a 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [90b 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [90d 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [90e 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [90c 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [90f 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [910 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [911 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [7a3 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org2.example.com | [7a5 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7a6 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7a7 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [7a8 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7a9 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7aa 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [7ab 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [7ac 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [7ad 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [7ae 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7af 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [7b0 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7b1 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [7b2 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7b3 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [7b4 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [7b5 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [7b6 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [7b7 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [5f1 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [5f2 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [5f3 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [5f4 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [5f5 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [5f6 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +orderer.example.com | CSJWn+U1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [5f7 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [5f8 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [5f9 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [5fa 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [5fb 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [5fc 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [5fd 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +orderer.example.com | [5fe 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [5ff 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [600 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [601 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [602 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +orderer.example.com | [603 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +orderer.example.com | [604 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +orderer.example.com | [605 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [606 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [607 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [608 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +orderer.example.com | [609 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +orderer.example.com | [60a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +orderer.example.com | [60b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [60c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [60d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [60e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [60f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [610 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [611 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [612 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [613 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [614 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [615 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [616 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [617 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [618 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [619 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [61a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [61b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [61c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [61d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [61e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [61f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [620 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [621 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [622 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [623 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [624 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [625 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [626 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [627 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [628 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [629 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [62a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [62b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [62c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [62d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [62e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [62f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [630 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [631 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [632 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [633 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [634 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [635 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [636 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [637 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [638 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [639 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [63a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [63b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [63c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer0.org1.example.com | [840 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [83f 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [841 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [842 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [843 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [844 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [845 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [846 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [847 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [848 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [849 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [84a 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [84b 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [84c 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [84d 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [84e 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [84f 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [850 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [851 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 30 but got ts: inc_num:1528769653227426900 seq_num:29 +peer0.org1.example.com | [852 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [853 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [854 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [855 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [856 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [7b8 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [7b9 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [7ba 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [7bb 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [7bc 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [7be 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [7bf 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7bd 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > alive: alive: +peer0.org2.example.com | [7c0 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7c1 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [7c2 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7c3 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7c4 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7c6 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [7c7 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 29 but got ts: inc_num:1528769652088169500 seq_num:28 +peer0.org2.example.com | [7c5 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7c8 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [7ca 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [7cb 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [7cd 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [7c9 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [7cc 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7ce 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7cf 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7d0 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7d1 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7d2 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7d3 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7d5 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [7d4 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7d6 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [7d7 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7d8 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7d9 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [7da 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [7db 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7dc 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [7dd 06-12 02:14:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7de 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [7df 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [7e1 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [7e0 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7e3 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7e4 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7e5 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7e2 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [7e6 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [7e7 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7e8 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [912 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [913 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [914 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [915 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [916 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [917 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [919 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [91a 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [918 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [91b 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [91c 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [91d 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [91e 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [91f 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [920 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [921 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [922 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [923 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [924 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [925 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [926 06-12 02:14:37.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [927 06-12 02:14:37.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [63d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [63e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [63f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [640 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [641 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [642 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +orderer.example.com | [643 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [644 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [645 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [646 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [647 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [648 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +orderer.example.com | [649 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +orderer.example.com | [64a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [64b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [64c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FCD8FCD80522...81B7DC83991249BB858F99202421D16F +orderer.example.com | [64d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: FE1DD8D1EB6A7E0A685B371BCCDF7D578B73862B9E6A90C9AF5D5DE45105F7AA +orderer.example.com | [64e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [64f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [650 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [651 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [652 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [653 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [8ed 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [8ec 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8ee 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8ef 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [8f0 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8f1 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8f2 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [8f3 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8f4 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8f5 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [8f6 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8f7 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8f8 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [8f9 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [8fa 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [8fb 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [8fc 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [8fd 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [8fe 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [8ff 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [900 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [901 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [902 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [857 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [858 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [859 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 32 but got ts: inc_num:1528769652429776900 seq_num:31 +peer0.org1.example.com | [85a 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [85b 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [85c 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [85d 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [85e 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [85f 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [860 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [861 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [862 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [863 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [864 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [865 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [866 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [867 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [868 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [869 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [86a 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [86b 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [86c 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [86d 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [86e 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [86f 06-12 02:14:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [870 06-12 02:14:32.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [871 06-12 02:14:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [872 06-12 02:14:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [873 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer1.org1.example.com | [928 06-12 02:14:37.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [929 06-12 02:14:37.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [92a 06-12 02:14:37.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [92b 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [92c 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [92d 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [92e 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [92f 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [930 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [932 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [931 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [933 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [934 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [936 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [937 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [938 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [939 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [935 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [93a 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [93b 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [93c 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [93e 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [93d 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [93f 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [940 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [941 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [942 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [943 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [944 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [945 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [946 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [947 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [948 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [949 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [94a 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [94b 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [94d 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [94c 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [94e 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [94f 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [950 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [951 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [952 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [953 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [954 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [955 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [956 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [957 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [958 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [959 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [95a 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [95b 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [95c 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [95d 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [95e 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [95f 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [960 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [961 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [962 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [963 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [964 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [965 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [966 06-12 02:14:37.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [967 06-12 02:14:37.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [968 06-12 02:14:37.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [969 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [96a 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [96b 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [96c 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [96d 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [96e 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [96f 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [970 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [971 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [972 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [973 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [974 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [975 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [976 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [977 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [978 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [979 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [97a 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [97b 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [97c 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [97d 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [97e 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [97f 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [980 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [982 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [983 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [981 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [984 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [985 06-12 02:14:37.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [986 06-12 02:14:37.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [874 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [875 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [876 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [877 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [878 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [879 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [87a 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [87c 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [87b 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [87d 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [87e 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [87f 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [880 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [881 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [882 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [883 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [884 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [885 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [886 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [887 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [888 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [889 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [88a 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [88b 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [88c 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [88d 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [654 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO +orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o +orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR +orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [655 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e700 gate 1528769660780785000 evaluation starts +orderer.example.com | [656 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e700 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [657 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e700 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [658 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [659 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [65a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e700 principal matched by identity 0 +orderer.example.com | [65b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 fe 1d d8 d1 eb 6a 7e 0a 68 5b 37 1b cc df 7d 57 |.....j~.h[7...}W| +orderer.example.com | 00000010 8b 73 86 2b 9e 6a 90 c9 af 5d 5d e4 51 05 f7 aa |.s.+.j...]].Q...| +orderer.example.com | [65c 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 eb b8 b3 f8 7a c7 7a 86 0a 36 0a |0E.!.....z.z..6.| +orderer.example.com | 00000010 2d 54 e5 b5 d6 eb 44 6e c8 69 5b 47 f1 bd 17 46 |-T....Dn.i[G...F| +orderer.example.com | 00000020 2f b3 1b 15 73 02 20 2a 0c cb 52 e8 52 7d 32 a8 |/...s. *..R.R}2.| +orderer.example.com | 00000030 da 16 f8 75 a3 db 0d d9 9d b2 10 6e fd cf 56 9e |...u.......n..V.| +orderer.example.com | 00000040 49 74 a4 68 ca 7c f4 |It.h.|.| +orderer.example.com | [65d 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e700 principal evaluation succeeds for identity 0 +orderer.example.com | [65e 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e700 gate 1528769660780785000 evaluation succeeds +orderer.example.com | [65f 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [660 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [661 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +orderer.example.com | [662 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [663 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [664 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [666 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [667 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [668 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [669 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [66a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [66b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [66c 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [66d 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [66e 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [66f 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [670 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [671 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [672 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [673 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [674 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [675 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [676 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +orderer.example.com | [677 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +orderer.example.com | [678 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [679 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [67a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [67b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [67c 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [67d 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [67e 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +orderer.example.com | [67f 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [680 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [681 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +orderer.example.com | [682 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +peer1.org1.example.com | [987 06-12 02:14:37.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [988 06-12 02:14:38.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [989 06-12 02:14:38.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [98a 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [98b 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [98d 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [98e 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [98c 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [990 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [991 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [98f 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [992 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [993 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [994 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [995 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [996 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [997 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [998 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [999 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [99a 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [99b 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [99c 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [99d 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [88e 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [88f 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [890 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [891 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [893 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [894 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [892 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [895 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [896 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [897 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [898 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [899 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [89a 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [89b 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [89c 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [89d 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [89e 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [89f 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [8a0 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [8a2 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [8a3 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [8a1 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8a4 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [7e9 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [7ea 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [7eb 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [7ec 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [7ed 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [7ee 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [7ef 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [7f0 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7f1 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7f2 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [7f3 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7f4 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [7f5 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [7f6 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [7f7 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [7f8 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [7f9 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [7fa 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [7fc 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [7fb 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [7fd 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [7fe 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [7ff 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [800 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [801 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [803 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [802 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [804 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [805 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [806 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [807 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [808 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [809 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [80a 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [80b 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [80c 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [80d 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [80e 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [80f 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [810 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [811 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [812 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [813 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [815 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [814 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [816 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [818 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [817 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [819 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [81a 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [81b 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [81c 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [81d 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [81e 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [81f 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [820 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [821 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [822 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [823 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [824 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [825 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [826 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [827 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [828 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [99e 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [99f 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [9a0 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [9a1 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [9a2 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [9a3 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [9a4 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [9a6 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [9a7 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [9a5 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020$" signature:"0D\002 |\360K\200\275\315\003\326\200\340\271a\210\371\006\351)6\220\034\314\345\215R\272(A1\205\"\240\373\002 alive: alive:9\201" > +peer1.org1.example.com | [9a8 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [9a9 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [9aa 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [9ab 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [9ac 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9ad 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [9ae 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [9af 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9b0 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [9b1 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [9b2 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [9b3 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [9b4 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [9b5 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [9b6 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [9b7 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [9b8 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [9b9 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [9ba 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [9bb 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [9bc 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > alive:\205\317\002cw\274\275E\276D\334\303\275yJb\006\307C\017\262b\325\002 C\261\004\201\021\206p8b\332f\033\242O\010;\270\234*\374\207\375\322\201\334ar\356\021;\021V" secret_envelope: > +peer1.org1.example.com | [9bd 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [9be 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [9bf 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9c0 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9c1 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9c2 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [9c3 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [9c4 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [9c5 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [9c6 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9c7 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [9c8 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9c9 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9cb 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [9ca 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9cd 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [9cc 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [9ce 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [9cf 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [9d0 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [9d1 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9d2 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [9d3 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9d4 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [9d5 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9d6 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [9d7 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [9d8 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [9d9 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [9da 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9db 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9dc 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9dd 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9de 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [9df 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [9e0 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [9e1 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [9e2 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9e3 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [9e4 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [9e5 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9e6 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [9e7 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [9e8 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [9e9 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [9ea 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [9eb 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [9ec 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [9ed 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [9ee 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [9ef 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [9f0 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [9f1 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [9f2 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > alive: alive: +peer1.org1.example.com | [9f3 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [9f4 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [9f5 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9f6 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9f7 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9f8 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [9f9 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [9fa 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [9fb 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [9fc 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [9fd 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [9fe 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [9ff 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [a00 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [a02 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [a03 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a01 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [a04 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a05 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a06 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [a07 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [a08 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [a09 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a0a 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [a0b 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [a0c 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [a0d 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a0e 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [8a5 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [8a6 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8a7 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [8a8 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8a9 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [8aa 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [8ab 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [8ac 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [8ad 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [8ae 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [8af 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [8b0 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [8b1 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [8b2 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [8b3 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > alive:\312" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\036" signature:"0D\002 .\206\205\273\017o\274r\264\010\251\267S\240S\225\036\360`\200\243\004T\016\376B\362`\034`\034=\002 \0375\340\333\303;\204\317\274\201\337\260\2042\017UN\307\307b\356\354\017\344\273\322\360\266S\024<\322" > +peer0.org1.example.com | [8b4 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [8b5 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [8b6 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [903 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [904 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [905 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [906 06-12 02:14:37.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [907 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [908 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [909 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [90a 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [90b 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [90c 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [90d 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [90e 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [90f 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [911 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org2.example.com | [910 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020#" signature:"0D\002 \007\253\026\037#\205\\\036v\215\350 \031\005AK\2174\222\033s\303\351\321\300]R~K\342bS\002 C\223A\0067\250*\331\220\313\351N\316\235\014\310Ut\013\347\025\335\006\337|N\330\354M\244\003\314" > alive:\341!\350\372\223d\023\300" > +peer1.org2.example.com | [912 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [913 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [914 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [915 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [916 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [917 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [918 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [919 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [91a 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [91b 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [91c 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [91d 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [91e 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [91f 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [920 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [921 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [923 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [922 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [924 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [925 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [926 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [927 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [928 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [929 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [92b 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [92a 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [92c 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [92d 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [92e 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [92f 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [930 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [931 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [932 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [933 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [934 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [935 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [936 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [937 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [938 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [939 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [93a 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [93b 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [93c 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [93d 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [93e 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [93f 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [940 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [941 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [942 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [943 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [944 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [945 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [946 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [947 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [948 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [94a 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [949 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [94b 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [94c 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [94d 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [94e 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [94f 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [950 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [951 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [952 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [953 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [954 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [955 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [956 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [957 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [958 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [959 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [95a 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [95b 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [95c 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [95d 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [95e 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [960 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [961 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [95f 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [8b7 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [8b8 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [8b9 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8ba 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [8bb 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [8bc 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [8bd 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [8be 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8bf 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [8c0 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [8c1 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8c2 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [8c3 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [8c4 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [8c5 06-12 02:14:33.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8c6 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8c7 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [8c8 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8c9 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8ca 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8cb 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [8cc 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [8cd 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [8ce 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [8cf 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [8d0 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [8d1 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [8d2 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [8d3 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [8d4 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8d5 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [8d6 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [8d7 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [8d8 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [8d9 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [8da 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [8db 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [8dc 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [8dd 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [8de 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [8df 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [8e0 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [8e1 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\037" signature:"0D\002 \177\345V\016e;!\350\254\021\207\313\267\201\304j/\361\361\3130n\261\237!\273(\0133\3545\274\002 \013\305\235\303\t\367~F[\r\307\2503w\344v\363\212\034\271\305\330\363j\277\346$\256\254\364\254\002 /\002^v\217\270\016*2\323R\343\3213.\232\277l\240\201Q\330\313\316\342\311Td\003\217\211q" > > +peer0.org1.example.com | [8e2 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [8e4 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [8e3 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [8e5 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [8e8 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8e6 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8e9 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [8e7 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8ea 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8ec 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [8ed 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8ee 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8ef 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [8eb 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8f0 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8f1 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [8f2 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8f3 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [8f4 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [8f5 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [8f6 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [8f7 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [8f8 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [8f9 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [8fa 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8fb 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [8fc 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [962 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [963 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [964 06-12 02:14:39.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [965 06-12 02:14:39.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [966 06-12 02:14:39.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [967 06-12 02:14:39.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [968 06-12 02:14:39.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [969 06-12 02:14:39.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [96a 06-12 02:14:39.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [96b 06-12 02:14:39.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [96c 06-12 02:14:39.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [96e 06-12 02:14:39.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [96f 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [970 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [96d 06-12 02:14:39.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [971 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [972 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [973 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [974 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [975 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [976 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [977 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [978 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [979 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [97a 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [97b 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [97c 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [97d 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [97e 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [97f 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [980 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [981 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [982 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [983 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [985 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [986 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [984 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer1.org2.example.com | [987 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [988 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [989 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [98a 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [98b 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer1.org2.example.com | [98c 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [98d 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [98e 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [98f 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [990 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [991 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [992 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [683 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420150ab8 gate 1528769660786261400 evaluation starts +orderer.example.com | [684 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ab8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [685 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ab8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [686 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ab8 principal matched by identity 0 +orderer.example.com | [687 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 59 eb 02 6e 43 cc 4b ef 49 6c 9b 49 9c 09 95 21 |Y..nC.K.Il.I...!| +orderer.example.com | 00000010 31 92 9a b4 2f 58 bc 47 a2 27 2b 8e ad 87 b6 24 |1.../X.G.'+....$| +orderer.example.com | [688 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7b 4a 4b 38 d3 92 84 6a ab d3 a7 20 |0D. {JK8...j... | +orderer.example.com | 00000010 b0 fa cb d7 39 0e 56 0b 15 34 11 3e e9 e1 86 36 |....9.V..4.>...6| +orderer.example.com | 00000020 0e 1a 6f b7 02 20 4b ac 5f 73 3a 03 16 81 2d 01 |..o.. K._s:...-.| +orderer.example.com | 00000030 a1 a7 a6 7d 94 a5 54 89 d1 bf b0 74 e2 98 aa 3d |...}..T....t...=| +orderer.example.com | 00000040 49 8b 9d 37 2d 08 |I..7-.| +orderer.example.com | [689 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ab8 principal evaluation succeeds for identity 0 +orderer.example.com | [68a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420150ab8 gate 1528769660786261400 evaluation succeeds +orderer.example.com | [68b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [68c 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [68d 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [68e 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [68f 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [690 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [691 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [692 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [693 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [694 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [695 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [696 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [697 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +orderer.example.com | [698 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [699 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [69a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [69b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [69c 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [69d 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [69e 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [69f 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [6a0 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [6a1 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [6a2 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [6a3 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [6a4 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [6a5 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [6a6 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [6a7 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [6a8 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +orderer.example.com | [6a9 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [6aa 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [6ab 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [6ac 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [6ad 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [6ae 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6af 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [6b0 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6b1 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [6b2 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [665 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:35740 +orderer.example.com | [6b3 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +peer0.org2.example.com | [829 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [82a 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [82b 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [82c 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [82d 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [82e 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [82f 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [830 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 30 but got ts: inc_num:1528769652088169500 seq_num:29 +peer0.org2.example.com | [831 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [832 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [833 06-12 02:14:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [834 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 32 but got ts: inc_num:1528769651824440500 seq_num:31 +peer0.org2.example.com | [835 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [836 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [838 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [837 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [839 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [83a 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [83b 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [83c 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [83d 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [83e 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [83f 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [840 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [841 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [842 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8fd 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [8fe 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [8ff 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [900 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [901 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [902 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [903 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [904 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [905 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [906 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [907 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [908 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [909 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [90a 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > alive:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020 " signature:"0E\002!\000\345\233u\270Hh\277\n\372\006\312\224\267\037\323)\354\254~O.[\243\256\036\261^\2024\271\362\263\002 r\032\326\226\0073\201\250\202?;\016K}\304\377\2217\010A\006\345\315T\346\236\342\016z%\211V" > +peer0.org1.example.com | [90b 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [90c 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [90d 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [90e 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [90f 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [910 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [911 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [912 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [913 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [993 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [995 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [996 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [997 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [998 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [999 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [99a 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [994 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [99b 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [99c 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [99d 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [99e 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [99f 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [9a0 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [9a1 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [9a2 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [843 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [844 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [845 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [846 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [847 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [848 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [849 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [84a 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [84b 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [84c 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [84d 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [84e 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [84f 06-12 02:14:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [850 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [851 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [852 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [853 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [854 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [855 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [856 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [857 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [858 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [85a 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [859 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [85b 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [85c 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [85d 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [85e 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [85f 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [860 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [861 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [862 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [863 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [864 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [865 06-12 02:14:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [866 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [867 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [868 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [869 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [86a 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [86b 06-12 02:14:32.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [86c 06-12 02:14:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [86d 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [86e 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [86f 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [870 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [871 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [872 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [873 06-12 02:14:32.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [874 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [875 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [876 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [877 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [878 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [879 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [87a 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [87b 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [87c 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [87d 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [87e 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [87f 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [880 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [881 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [882 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [883 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [884 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [885 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [886 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [887 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [889 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [888 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [88a 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [88c 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [88b 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [88d 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [88e 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [88f 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [890 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [891 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [892 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [893 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [894 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [895 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [896 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [897 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [898 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [899 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [89a 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [89b 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [89c 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [89d 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [89e 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [8a0 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [8a1 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [89f 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\023\201\242\315\343G\353)\3376\330I\2209Z\366R\007R\322\002 A\343\363\225\346\025\353\323&\353z\216 \177\377\225\n\3518\352Bg82\230kjP~x\226\362" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\036" signature:"0D\002 .\206\205\273\017o\274r\264\010\251\267S\240S\225\036\360`\200\243\004T\016\376B\362`\034`\034=\002 \0375\340\333\303;\204\317\274\201\337\260\2042\017UN\307\307b\356\354\017\344\273\322\360\266S\024<\322" > alive:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > alive: +peer0.org2.example.com | [8a2 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [8a3 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [8a4 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8a5 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [8a6 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [8a7 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [8a8 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [8a9 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [8aa 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [8ab 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8ac 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [8ad 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [8ae 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8af 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [8b0 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [8b1 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [8b2 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [8b3 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [8b4 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [8b5 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [8b6 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [8b7 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [8b8 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [8b9 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [8ba 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [8bb 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer0.org2.example.com | [8bc 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [8bd 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [8be 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [8bf 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [8c0 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [8c1 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8c2 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [8c3 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8c4 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [a0f 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [a10 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a11 06-12 02:14:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [a12 06-12 02:14:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [a13 06-12 02:14:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [a14 06-12 02:14:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [a15 06-12 02:14:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [a16 06-12 02:14:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a17 06-12 02:14:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [a19 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a18 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a1a 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [a1b 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [a1c 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a1d 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [a1e 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a1f 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [a20 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a21 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a22 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer1.org2.example.com | [9a3 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [9a4 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [9a5 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [9a6 06-12 02:14:39.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [9a7 06-12 02:14:39.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [9a8 06-12 02:14:39.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [9a9 06-12 02:14:39.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [9aa 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [9ab 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [9ac 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [9ad 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9ae 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [9af 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9b0 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [9b1 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [9b2 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [9b3 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [9b4 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [9b5 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [9b6 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [9b7 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [9b8 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [9b9 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [9ba 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org1.example.com | [914 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [915 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [916 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [917 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [918 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [919 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [91a 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [91b 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [91c 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [91d 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [91e 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [91f 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [920 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [921 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [922 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [923 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a23 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [a24 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [a27 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [a25 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [a26 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [a28 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [a29 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [a2a 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [a2b 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a2c 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a2e 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a2f 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [a2d 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [a30 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [a31 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [a32 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a33 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a34 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [a35 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a36 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a37 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a38 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [a39 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 40 but got ts: inc_num:1528769652088169500 seq_num:38 +peer1.org1.example.com | [a3a 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a3b 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [a3c 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [a3d 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [a3e 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [a3f 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [a40 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [a41 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [a42 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a43 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a44 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [a45 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a46 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [a47 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [a48 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 43 but got ts: inc_num:1528769651824440500 seq_num:42 +peer1.org1.example.com | [a49 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a4a 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a4b 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [a4c 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 40 but got ts: inc_num:1528769652088169500 seq_num:39 +peer1.org1.example.com | [a4d 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a4e 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a4f 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [a50 06-12 02:14:41.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a51 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a52 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [a53 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [a54 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [a55 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [9bb 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [9bd 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [9be 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [9bc 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:9\201" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > alive: +peer1.org2.example.com | [9bf 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [9c0 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9c1 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [9c2 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [9c3 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9c4 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [9c5 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [9c6 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [9c7 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9c8 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\271H\005\337\3564\340,!\r\366\227\232\245\016s\267\272\3447\330\322\230\276\3343\330\216\002 Rt=\204\251&(p\210F\t[\221\357\035\206\023z\224\333T\207\366\356\255m\322\257\016h;\013" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [9c9 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9ca 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\271H\005\337\3564\340,!\r\366\227\232\245\016s\267\272\3447\330\322\230\276\3343\330\216\002 Rt=\204\251&(p\210F\t[\221\357\035\206\023z\224\333T\207\366\356\255m\322\257\016h;\013" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [9cb 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [9cc 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b4 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6b5 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [6b6 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [6b7 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +orderer.example.com | [6b8 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [6b9 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [6ba 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [6bb 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [6bc 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6bd 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [6be 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [6bf 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6c0 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [6c1 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +orderer.example.com | [6c2 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +orderer.example.com | QKuzs3j8kg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6c3 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +orderer.example.com | 3BDFnYuSFYhOCexVkA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6c4 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [6c5 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [6c6 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [6c7 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [6c8 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [6c9 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [6ca 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [6cb 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [6cc 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [6cd 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [6ce 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35740: read: connection reset by peer +orderer.example.com | [6cf 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +orderer.example.com | CSJWn+U1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6d0 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35740: rpc error: code = Canceled desc = context canceled +orderer.example.com | [6d1 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [6d2 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org2.example.com | [8c5 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [8c6 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [8c7 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [8c8 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [8c9 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [8ca 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [8cb 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [8cc 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [8cd 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [8ce 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [8cf 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [924 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [925 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [926 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [927 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [928 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [929 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [92a 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [92b 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [92c 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [92d 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [92e 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [92f 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [930 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [931 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [932 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [933 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [934 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [935 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [936 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [937 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [938 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [939 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [93a 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a56 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [a57 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [a58 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [a59 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a5a 06-12 02:14:41.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a5b 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a5c 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a5d 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [a5e 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a5f 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a60 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a61 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [a62 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} +peer1.org1.example.com | [a63 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [a64 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [a65 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [a66 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [a67 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a68 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a69 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer1.org1.example.com | [a6a 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer1.org1.example.com | [a6b 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a6d 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a6c 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [6d3 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35738: rpc error: code = Canceled desc = context canceled +orderer.example.com | [6d4 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [6d5 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [6d6 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +orderer.example.com | [6d7 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +orderer.example.com | [6d8 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +orderer.example.com | [6d9 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +orderer.example.com | [6da 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [8d0 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > alive:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > alive: alive: +peer0.org2.example.com | [8d1 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [8d2 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [8d3 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [8d4 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8d5 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [8d6 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8d7 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [8d8 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [8d9 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [8da 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [8dc 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [8dd 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [8db 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [8de 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [8df 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [8e0 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [8e1 06-12 02:14:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [8e2 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [8e3 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [8e4 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [8e5 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [8e6 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [93d 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [93e 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [93f 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [93b 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [93c 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [940 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [941 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [942 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [943 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [944 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [945 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [946 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [947 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [949 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [948 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [94a 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [94b 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [94c 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [94d 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [94e 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [94f 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [950 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [951 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [952 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [953 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [954 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [955 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [956 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [957 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [958 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [959 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [95a 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 37 but got ts: inc_num:1528769652429776900 seq_num:36 +peer0.org1.example.com | [95b 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [95c 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [95d 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [95e 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 35 but got ts: inc_num:1528769653227426900 seq_num:34 +peer0.org1.example.com | [95f 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [960 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [961 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [962 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [963 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [964 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [965 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [966 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [967 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [968 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [969 06-12 02:14:36.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [96a 06-12 02:14:36.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [96b 06-12 02:14:36.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [96c 06-12 02:14:36.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [96d 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [8e7 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [8e8 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [8e9 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8ea 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [8eb 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [8ec 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8ed 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [8ee 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [8ef 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [8f0 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [8f1 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [8f2 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [8f3 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [8f4 06-12 02:14:36.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [8f5 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [8f6 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [8f7 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [8f8 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [8f9 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [8fa 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [8fb 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer0.org2.example.com | [8fc 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer0.org2.example.com | [8fd 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [8fe 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [8ff 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [900 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [901 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [902 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [903 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [904 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [905 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [906 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [907 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [908 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [909 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [90a 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [90b 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [90c 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [90d 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [90e 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer0.org2.example.com | [90f 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [910 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [6db 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +orderer.example.com | [6dc 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +orderer.example.com | [6dd 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +orderer.example.com | [6de 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +orderer.example.com | [6df 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +orderer.example.com | [6e0 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +orderer.example.com | [6e1 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +orderer.example.com | [6e2 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +orderer.example.com | [6e3 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +orderer.example.com | [6e4 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +orderer.example.com | [6e5 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +orderer.example.com | [6e6 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +orderer.example.com | [6e7 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +orderer.example.com | [6e8 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +orderer.example.com | [6e9 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +orderer.example.com | [6ea 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +orderer.example.com | [6eb 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [6ec 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [6ed 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +orderer.example.com | [6ee 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +orderer.example.com | [6ef 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [6f0 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +orderer.example.com | [6f1 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [6f2 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +orderer.example.com | [6f3 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +orderer.example.com | [6f4 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +orderer.example.com | [6f5 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +orderer.example.com | [6f6 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +orderer.example.com | [6f7 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +orderer.example.com | [6f8 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +orderer.example.com | [6f9 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +orderer.example.com | [6fa 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +orderer.example.com | [6fb 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [a6e 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a70 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [a71 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a72 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a73 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a6f 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a74 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a75 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [a76 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a77 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a78 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a79 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a7a 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a7b 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [a7c 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a7d 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org1.example.com | [a7e 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a7f 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a80 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a81 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [a82 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a83 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a84 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a85 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [a86 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [a87 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [a88 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [a89 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [a8a 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [a8b 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [a8c 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a8d 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [a8e 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a90 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a91 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [a8f 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [a93 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a95 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a96 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a97 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a92 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a94 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a98 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [a99 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a9a 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [a9b 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [a9c 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [a9d 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [a9e 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org1.example.com | [a9f 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [aa0 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer0.org1.example.com | [96e 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [96f 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [970 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [971 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [972 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [973 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [974 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [975 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [976 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [977 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [978 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [979 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [97a 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [97b 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [97c 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [97d 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [97e 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [97f 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [980 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [981 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [982 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [983 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [984 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [985 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [986 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [987 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [988 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [989 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [98a 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [98b 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [9cd 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [9ce 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [9cf 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [9d0 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [9d1 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [9d2 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [9d3 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [9d4 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [9d5 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [9d6 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\271H\005\337\3564\340,!\r\366\227\232\245\016s\267\272\3447\330\322\230\276\3343\330\216\002 Rt=\204\251&(p\210F\t[\221\357\035\206\023z\224\333T\207\366\356\255m\322\257\016h;\013" > > alive:\271KG\334\265h/\214\332\366\005\322\362\347G>ft=6Z\267\363n\002 \317{\267\261[WbP'P\250\330T\005\250\035\321B\\\366\373d\271\363^\206\307\337\326\177\345" secret_envelope: > +peer1.org2.example.com | [9d7 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [9d8 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [9d9 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [9da 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9db 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [9dc 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [9dd 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [9de 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9df 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [9e0 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [9e2 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [9e1 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [9e3 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [9e5 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [911 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [912 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [913 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [914 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [915 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [916 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [917 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [918 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [919 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [91a 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [91b 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [91c 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [91d 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [91e 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [920 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [91f 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [921 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [922 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [923 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [924 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [925 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [926 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 37 but got ts: inc_num:1528769651824440500 seq_num:36 +peer0.org2.example.com | [927 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [928 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [929 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [aa1 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [aa2 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [aa3 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [aa4 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [aa5 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [aa6 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [aa7 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [aa8 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [aa9 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [aaa 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [aab 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [aac 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [aad 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [aae 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [aaf 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [ab0 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [ab1 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [ab2 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [ab3 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [ab4 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [ab5 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [ab7 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ab6 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [ab8 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ab9 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [aba 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [abb 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [abc 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [abd 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [abe 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [abf 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [ac0 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [ac1 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ac2 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [ac3 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [ac4 06-12 02:14:43.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [ac5 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer1.org1.example.com | [ac6 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [ac8 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [ac9 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [ac7 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [acb 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [acc 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [acd 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [aca 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ace 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [acf 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [ad0 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [ad1 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ad2 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [ad3 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ad4 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [ad5 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [ad6 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [ad7 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [ad8 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [ad9 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [ada 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership +peer1.org1.example.com | [adb 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [adc 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [add 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [ade 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [adf 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [ae0 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020)" signature:"0D\002 B\231r\235\327\352]\337\246\302-\037\247\000?e\352\200\013&C\343\210\350g\345\tL\336&\220\235\002 {Z\252[i\272J\336\212\324\021,A\002m\001\315\374\371\201~}\325\037\315Jv7\202\235\037\305" > alive: alive: alive: +peer1.org1.example.com | [ae1 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [ae2 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ae3 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [ae4 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [ae5 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [ae6 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [ae7 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ae8 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [ae9 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [aea 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [aeb 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [aec 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [aed 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [aee 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [aef 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [af0 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [af1 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [af2 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [af3 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [af4 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [af5 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [af6 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [af8 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [af9 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [af7 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" secret_envelope: > alive: > +peer1.org1.example.com | [afa 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [afb 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [afc 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [afd 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [afe 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [aff 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [b00 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [b01 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b02 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [b03 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [b04 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [b05 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b06 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b07 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [b08 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b09 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [b0a 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [b0b 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b0c 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [b0d 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b0e 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [b0f 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [b10 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b11 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [b12 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [b13 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [b14 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b15 06-12 02:14:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [b16 06-12 02:14:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [b17 06-12 02:14:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [b18 06-12 02:14:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b19 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [b1a 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [b1b 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [b1c 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [b1d 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b1e 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [b1f 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [b20 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b21 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [b22 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [b23 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [b24 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [b25 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [b26 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [b27 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [b28 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [b29 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b2a 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [b2b 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [b2c 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [b2d 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > alive: alive: +peer1.org1.example.com | [b2e 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [b2f 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b30 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [b31 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [b32 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b33 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [b34 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b35 06-12 02:14:45.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [b36 06-12 02:14:45.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [b37 06-12 02:14:45.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [b38 06-12 02:14:45.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [b39 06-12 02:14:45.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [b3a 06-12 02:14:45.24 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [b3b 06-12 02:14:45.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [b3c 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b3d 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [b3e 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b3f 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [b41 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b42 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [b40 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [b43 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [b44 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b45 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [b46 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [b47 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b48 06-12 02:14:45.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [b49 06-12 02:14:45.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [b4a 06-12 02:14:45.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [b4b 06-12 02:14:45.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b4c 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [b4e 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [b4f 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b4d 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [b50 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [b51 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [b52 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b53 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [b54 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [b55 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [b56 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b57 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [b58 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [b59 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [b5a 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b5b 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [b5c 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [b5d 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [b5f 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b60 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [b61 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [b5e 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [b63 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [b62 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b64 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [b65 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [b66 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [b67 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [b68 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [b69 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [b6a 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [b6b 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [b6c 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b6d 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [b6f 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b70 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [b6e 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [b71 06-12 02:14:45.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [b72 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [b73 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 48 but got ts: inc_num:1528769651824440500 seq_num:47 +peer1.org1.example.com | [b74 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b75 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [b76 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [b77 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [b78 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [b79 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [b7a 06-12 02:14:45.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [b7b 06-12 02:14:45.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [b7c 06-12 02:14:45.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b7d 06-12 02:14:45.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [b7e 06-12 02:14:45.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [b7f 06-12 02:14:45.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [b80 06-12 02:14:45.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b81 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [b82 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [b83 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [b84 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [b85 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [b86 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [b87 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [b88 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b89 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [b8a 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [b8b 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [b8c 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [b8d 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [b8e 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [6fc 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [6fd 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +orderer.example.com | [6fe 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +orderer.example.com | [6ff 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [700 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [701 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [702 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [703 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [704 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [705 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [706 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [707 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [708 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [709 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [70a 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [70b 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [70c 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [70d 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [70e 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [70f 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [710 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [711 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [712 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [713 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [714 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [715 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +orderer.example.com | [716 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [717 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [718 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [719 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [71a 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [71b 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org2.example.com | [9e4 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [9e6 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [9e7 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9e8 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [9e9 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [9ea 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9eb 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [9ec 06-12 02:14:40.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9ed 06-12 02:14:40.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [9ee 06-12 02:14:40.78 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [9ef 06-12 02:14:40.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [9f0 06-12 02:14:40.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [9f1 06-12 02:14:40.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org2.example.com | [9f2 06-12 02:14:40.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org2.example.com | [9f3 06-12 02:14:40.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9f4 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [9f5 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [9f6 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [9f7 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [9f8 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9f9 06-12 02:14:41.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [9fa 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [9fb 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [9fc 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [9fd 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [92a 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 36 but got ts: inc_num:1528769653227426900 seq_num:35 +peer0.org2.example.com | [92b 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [92c 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [92d 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [92e 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [92f 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [930 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [931 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [932 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [933 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [934 06-12 02:14:36.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [935 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [936 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [937 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [938 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [93a 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [93b 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [939 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [93c 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [93d 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [93e 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [93f 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [940 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [941 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [942 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [943 06-12 02:14:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [944 06-12 02:14:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [945 06-12 02:14:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [946 06-12 02:14:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [947 06-12 02:14:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [948 06-12 02:14:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [949 06-12 02:14:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [94a 06-12 02:14:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [94b 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [94c 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [94d 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [94e 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [94f 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [950 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [951 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [952 06-12 02:14:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [953 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [954 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [955 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [956 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [957 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [958 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [959 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [95a 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [95b 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [95c 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [95d 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [95e 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [95f 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [960 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [961 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [962 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [964 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [963 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [965 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [966 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [967 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [968 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [969 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [96a 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [96b 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [96c 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [96d 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [96e 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [96f 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [970 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [971 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [972 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [973 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [974 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [975 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [976 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [977 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [978 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [979 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [97a 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [97b 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [97c 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [97d 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [97e 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [97f 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [980 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [981 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [982 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [983 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [984 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [985 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [986 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [987 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [988 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [989 06-12 02:14:37.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [98a 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [98b 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [98c 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [98d 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [98e 06-12 02:14:37.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [98f 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [990 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [991 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [9fe 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [9ff 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [a00 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [a01 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [a02 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [a03 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [a04 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [a05 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a06 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [a07 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [a08 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > alive: +peer1.org2.example.com | [a09 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [a0a 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a0b 06-12 02:14:41.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [a0c 06-12 02:14:41.83 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer1.org2.example.com | [a0d 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer1.org2.example.com | [a0e 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a0f 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer1.org2.example.com | [a11 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a10 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a12 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a13 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a14 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a15 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a16 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [a17 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a18 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a19 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a1a 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [a1b 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a1d 06-12 02:14:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [a1c 06-12 02:14:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a1e 06-12 02:14:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a1f 06-12 02:14:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a20 06-12 02:14:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [a21 06-12 02:14:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a22 06-12 02:14:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a23 06-12 02:14:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a24 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer1.org2.example.com | [a25 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer1.org2.example.com | [a26 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a28 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a27 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer1.org2.example.com | [a29 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a2a 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a2b 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [a2c 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a2d 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a2e 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a2f 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [a30 06-12 02:14:42.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [a31 06-12 02:14:42.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [a32 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [a33 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [a34 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [a35 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [a36 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a37 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [a38 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [a39 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a3a 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a3b 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a3e 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a3c 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a3d 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a3f 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [a40 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a42 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a41 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [992 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [993 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [995 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [996 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [997 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [994 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [998 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [999 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [99a 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [99b 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [99c 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [99d 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [99e 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [99f 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [9a0 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [9a2 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [9a1 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020#" signature:"0D\002 \007\253\026\037#\205\\\036v\215\350 \031\005AK\2174\222\033s\303\351\321\300]R~K\342bS\002 C\223A\0067\250*\331\220\313\351N\316\235\014\310Ut\013\347\025\335\006\337|N\330\354M\244\003\314" > alive: alive: +peer0.org2.example.com | [9a3 06-12 02:14:37.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [9a4 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org2.example.com | [9a5 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [9a6 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [b90 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b8f 06-12 02:14:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [b91 06-12 02:14:45.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [b92 06-12 02:14:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [b93 06-12 02:14:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [b94 06-12 02:14:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [b95 06-12 02:14:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [b96 06-12 02:14:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [b97 06-12 02:14:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [b98 06-12 02:14:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [b99 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [b9a 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [b9b 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [b9c 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [b9d 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [b9e 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [b9f 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [ba0 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [ba1 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [ba2 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [ba3 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [ba4 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [ba5 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [ba6 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [ba7 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [ba8 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [ba9 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [baa 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [bab 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [bac 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [bad 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [bae 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [baf 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bb0 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [bb1 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [bb2 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [bb3 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [bb4 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [bb5 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bb6 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [bb7 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [bb8 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bb9 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bba 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [bbb 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bbc 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bbd 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bbe 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [bbf 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [bc0 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [bc1 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [bc2 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [bc3 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [bc4 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [bc5 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [bc6 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [bc7 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [bc8 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [98c 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [98d 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [98e 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [98f 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [990 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [991 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [992 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [993 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [994 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [995 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [996 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [997 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [998 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [999 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [99a 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [99b 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [99c 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [99d 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\"" signature:"0E\002!\000\303\023S\355\013z;|\240`\006\260\335g\035\204\"\030\033\323my\025\026\344\001\rJr\303\236\216\002 gc\231({\2726\236\305\203\211\336\307\242\344\317\361\366\t'\261\352\313\366\245?\\\357\356\204\222\017" > +peer1.org2.example.com | [a44 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a43 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [a45 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a46 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a47 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a48 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a49 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [a4a 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a4b 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a4c 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a4d 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [a4e 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [a4f 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a51 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a52 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [a50 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [a53 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [a54 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [a55 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [a56 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [a57 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a58 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a59 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a5a 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a5b 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a5c 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [bc9 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [bca 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bcb 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [bcc 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bcd 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [bce 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bcf 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bd0 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [bd1 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bd2 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bd3 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [bd4 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bd5 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bd6 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [bd7 06-12 02:14:47.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [bd8 06-12 02:14:47.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [bd9 06-12 02:14:47.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bda 06-12 02:14:47.20 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [bdb 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bdc 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bdd 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [bde 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bdf 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [be0 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [71c 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [71d 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [71e 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [71f 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +orderer.example.com | [720 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [721 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [722 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [723 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [724 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [725 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +orderer.example.com | [726 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +orderer.example.com | [727 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [728 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [729 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...E8EC096FD6CFEC77FAE1A4B3009400BD +orderer.example.com | [72a 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 38CB78A3EE06B86CAEB5AC51742C15475B25BF8C464E9ED1D3968C7888825874 +orderer.example.com | [72b 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfigBlockNum from 1 to 2 +orderer.example.com | [72c 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [72d 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [72e 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [72f 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...E8EC096FD6CFEC77FAE1A4B3009400BD +orderer.example.com | [730 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 90154B0D845860E911D4BDA39F34A50BF9898A39CFCFCD9E1A52CD81F8A2E030 +orderer.example.com | [731 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x11, 0x61, 0x9f, 0x74, 0x2a, 0x75, 0xba, 0x72, 0x46, 0x54, 0x9e, 0xb0, 0xdc, 0xb3, 0x98, 0xed, 0xeb, 0xfa, 0xa0, 0xae, 0xea, 0x73, 0x9a, 0x0, 0x40, 0x67, 0xea, 0x20, 0x7a, 0xc0, 0xec, 0x73} txOffsets= +orderer.example.com | txId= locPointer=offset=70, bytesLength=12151 +orderer.example.com | ] +orderer.example.com | [732 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40095], isChainEmpty=[false], lastBlockNumber=[2] +orderer.example.com | [733 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 +orderer.example.com | [734 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [735 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:45286 +orderer.example.com | [736 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.4:45286 +orderer.example.com | [737 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [738 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [739 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [73a 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [9a7 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [9a9 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [9ab 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9ac 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [9a8 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9aa 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9ad 06-12 02:14:37.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [9ae 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [9af 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [9b0 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [9b1 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [9b2 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [9b3 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [9b4 06-12 02:14:37.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [9b5 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9b6 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [9b7 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [9b8 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9b9 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9ba 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [9bb 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [9bc 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [9bd 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [99e 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [99f 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9a0 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [9a1 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [9a2 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9a3 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [9a4 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [9a5 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9a6 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9a7 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9a8 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [9aa 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9ab 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9ac 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [9ad 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [9ae 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [9af 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [9b0 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [9b1 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [9b2 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [9b3 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [9b4 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9a9 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9b5 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a5d 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a5e 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a5f 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a60 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [a61 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [a62 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a63 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a64 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a65 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a66 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a67 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [a68 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a69 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [a6a 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a6b 06-12 02:14:42.58 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org2.example.com | [a6c 06-12 02:14:42.59 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org2.example.com | [a6d 06-12 02:14:42.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org2.example.com | [a6e 06-12 02:14:42.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [a6f 06-12 02:14:42.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a70 06-12 02:14:42.59 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [a71 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a72 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a73 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [a74 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a75 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [be1 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [be2 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [be3 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [be4 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [be5 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [be6 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [be7 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [be8 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [be9 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [bea 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [beb 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bec 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [bed 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bee 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [bef 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bf0 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bf1 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [bf2 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bf3 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bf4 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [bf5 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bf6 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [bf7 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bf8 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [bf9 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [9be 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [9bf 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [9c0 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [9c1 06-12 02:14:38.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [9c2 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [9c3 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9c4 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [9c5 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [9c6 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9c7 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9c8 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [9ca 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [9c9 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [9cb 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9cc 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [9cd 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9ce 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9cf 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [9d0 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [9d1 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9d2 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [9d3 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [9d4 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [9d5 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [9d6 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [9d7 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9b6 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [9b7 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9b8 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9b9 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [9ba 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [9bb 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [9bc 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9be 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9bd 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9bf 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9c0 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9c1 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [9c2 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9c3 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9c4 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [9c5 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [9c6 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [9c7 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [9c8 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [9c9 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [9ca 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9cb 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9cc 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9cd 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9ce 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9cf 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9d0 06-12 02:14:37.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer1.org1.example.com | [bfa 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [bfb 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [bfc 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [bfd 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [bfe 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [bff 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c00 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [c01 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c02 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [c03 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [c04 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [c05 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [c06 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [c07 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [c08 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [c09 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [c0a 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [c0b 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c0c 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020." signature:"0D\002 \020Ln\305/]cv\261\376\t\336\223(\244*\362\240jM2\t\003Jk\225\310{\260p&\024\002 h}\345\030_d\016\344\257\376E\353\026!\344\273D^\340\272/\247\311\026x+\315\326\215\324\026\002" > alive:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > alive: +peer0.org2.example.com | [9d8 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [9d9 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [9da 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [9db 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [9dc 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [9dd 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [9de 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [9df 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [9e0 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [9e1 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [9e2 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [9e3 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [9e4 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [9e5 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [9e6 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [9e8 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer0.org2.example.com | [9e9 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9d1 06-12 02:14:37.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [9d2 06-12 02:14:37.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [9d3 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [9d4 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [9d5 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9d6 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [9d7 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [9d8 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [9d9 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9da 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [9dc 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [9dd 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9de 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [9db 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9df 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [9e0 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [9e1 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [9e2 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [9e3 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [9e4 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [9e5 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [9e6 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [9e7 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c0d 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [c0e 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c0f 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c10 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c11 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c12 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [c13 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c14 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [c15 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [c16 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c17 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [c18 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [c19 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [c1a 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [c1b 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [c1c 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [c1d 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [c1e 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [c1f 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [c20 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [c21 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [9e7 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org2.example.com | [9ea 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [9eb 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [9ec 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [9ed 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [9ee 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [9ef 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [9f0 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [9f1 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [9f2 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [9f3 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [9f4 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [9f5 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [9f6 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [9f7 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [9f8 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [9fa 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [9f9 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [9fb 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 644 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [9e8 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020$" signature:"0D\002 |\360K\200\275\315\003\326\200\340\271a\210\371\006\351)6\220\034\314\345\215R\272(A1\205\"\240\373\002 > +peer0.org1.example.com | [9e9 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org1.example.com | [9ea 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9eb 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9ec 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9ed 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [9ee 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [9ef 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9f0 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9f1 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [9f2 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [9f3 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [9f4 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [9f5 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [9f6 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [9f7 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [9f8 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [9f9 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [9fa 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [9fb 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9fc 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c22 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c23 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" secret_envelope: > alive: > +peer1.org1.example.com | [c24 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org1.example.com | [c25 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c26 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c27 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c28 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c29 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [c2a 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [c2b 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [c2c 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [c2d 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c2e 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [c2f 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [c30 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [c31 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [c32 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c33 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c35 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c36 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c34 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c37 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a76 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a77 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [a78 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a79 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [a7a 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [a7b 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [a7c 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [a7d 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [a7e 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [a7f 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [a80 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a81 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a82 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a83 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a84 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a85 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [a86 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a87 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a88 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [a89 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [a8a 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [a8b 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a8c 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [a8d 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a8e 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a8f 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [9fd 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [9ff 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [9fe 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a00 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a01 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [a02 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a04 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a05 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [a03 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a06 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [a07 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a08 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a09 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [a0a 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a0b 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [a0c 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a0d 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a0e 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a0f 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [a10 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [a11 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [a12 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [a13 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [a14 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [a15 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a16 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [c38 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [c39 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c3a 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c3b 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c3c 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c3d 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c3e 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c40 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [c3f 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [c41 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [c42 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c43 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [c44 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c45 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org1.example.com | [c46 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c47 06-12 02:14:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [c48 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c49 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [c4a 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c4b 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c4c 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c4d 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c4e 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c4f 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c50 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c51 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c52 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [c53 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c54 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [73b 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [73c 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [73d 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ +orderer.example.com | J62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy +orderer.example.com | za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX +orderer.example.com | fv5YS9/ysd8jy4a+pg== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [73e 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1528769662205018800 evaluation starts +orderer.example.com | [73f 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [740 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [741 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [742 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation fails +orderer.example.com | [743 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1528769662205018800 evaluation fails +orderer.example.com | [744 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [745 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [746 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +orderer.example.com | [747 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +orderer.example.com | [748 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [749 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [74a 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [a17 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [a18 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [a1a 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a19 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a1b 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a1c 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a1d 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a1e 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a1f 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [a20 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a21 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a22 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [a23 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a24 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a25 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [a26 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a27 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a28 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [a29 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [a2a 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [a2b 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [a2c 06-12 02:14:39.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [a2d 06-12 02:14:39.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a2e 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [c55 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [c56 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c57 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [c58 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c59 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [c5a 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [c5b 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [c5c 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [c5d 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [c5e 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [c5f 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [c60 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [c61 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [c62 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c64 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [c65 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c63 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > alive:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > alive:o\332I\373V\365\301W1\227i\244sv3\275\274\217\206\233\273\373I7\023&\002 (\247\032\315\344\276\372*\3658Cb\340.\273\276#\262\237\254\305b\201\033\374 +peer1.org1.example.com | [c66 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c67 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c68 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [9fc 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > alive:'H\205\214\025\274gU\n\312\271\372\271Q\351" > alive: alive:\227\325?B\244\326\320\220\332\340\373\314\014\320\231\343\334\030\330\002\0378\363YA\201\341\307\245\247)BU\366\033\2577ePqs\033\2459\227\2539\376\341\211aS" > +peer0.org2.example.com | [9fd 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 644 bytes, Signature: 0 bytes +peer0.org2.example.com | [9fe 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [9ff 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [a00 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a01 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [a02 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a03 06-12 02:14:40.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [a04 06-12 02:14:40.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [a05 06-12 02:14:40.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [a06 06-12 02:14:40.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [a08 06-12 02:14:40.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [a07 06-12 02:14:40.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [a09 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [a0a 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a0b 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [a0c 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [a0f 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [a10 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a0d 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [a0e 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [a11 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a12 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a13 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [a14 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [a15 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a16 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [a17 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [a18 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a19 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\271H\005\337\3564\340,!\r\366\227\232\245\016s\267\272\3447\330\322\230\276\3343\330\216\002 Rt=\204\251&(p\210F\t[\221\357\035\206\023z\224\333T\207\366\356\255m\322\257\016h;\013" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [a1a 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [a1b 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [a1c 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [a1d 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a1e 06-12 02:14:40.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [a1f 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a20 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [a21 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a22 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [a23 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a24 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [a25 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [a26 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [a27 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [a28 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a29 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [a2a 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [a2b 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a2c 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [a2d 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [a2e 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a2f 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [a30 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [a31 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [a32 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [a33 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [a34 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [a35 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [a36 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a37 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [a38 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [a39 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a3a 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [a3b 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [a3c 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [a3d 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [a3e 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [a3f 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [a40 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a41 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [a42 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [a43 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [a44 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [a45 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [a46 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [a47 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [a48 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a49 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [a4a 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [a4b 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 41 but got ts: inc_num:1528769653227426900 seq_num:40 +peer0.org2.example.com | [a4c 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a4d 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [a4e 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [a4f 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [a50 06-12 02:14:40.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [a51 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [a52 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [a53 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [a54 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a55 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [a57 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a56 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [a58 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [a59 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [a5a 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [a5b 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a5c 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [a5d 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [a5e 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [a5f 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [a60 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [a61 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [a62 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [a63 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a64 06-12 02:14:40.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [a65 06-12 02:14:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [a67 06-12 02:14:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [a68 06-12 02:14:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a69 06-12 02:14:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [a6a 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a66 06-12 02:14:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [a6b 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a6c 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [a6d 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a6e 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [a6f 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [a70 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a71 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [a72 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a73 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [a74 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [a90 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [a91 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [a92 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [a93 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [a94 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [a95 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [a96 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a97 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [a98 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a99 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [a9a 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [a9b 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [a9c 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [a9d 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [a9e 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [a9f 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [aa0 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [aa1 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [aa2 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [aa3 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [aa4 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a2f 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [a30 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a31 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [a32 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a33 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [a34 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [a35 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [a36 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [a37 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [a38 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [a39 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a3a 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [a3b 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [a3c 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [a3d 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:'H\205\214\025\274gU\n\312\271\372\271Q\351" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020%" signature:"0E\002!\000\332\354H\356K\365\254\025\314}\310\347\2142\230k\027\375\353+\217>f\231]\246`\360\324\220\306+\002 ZR:@hg\351\332/\354\214\326\345\241\002\024}2\014\375S\372\001\254\307\016\366\274C\220Qf" > +peer0.org1.example.com | [a3e 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [a3f 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a40 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [a41 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [a42 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [a43 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [a75 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [a76 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a77 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [a78 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [a79 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [a7a 06-12 02:14:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a7b 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [a7c 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [a7d 06-12 02:14:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a7e 06-12 02:14:40.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [a7f 06-12 02:14:40.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [a80 06-12 02:14:40.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [a81 06-12 02:14:40.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [a82 06-12 02:14:40.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a83 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [a84 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [a85 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [a86 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a87 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [a88 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a89 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [a8a 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [a8b 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [a8c 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [74b 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [74c 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e200 gate 1528769662208167600 evaluation starts +orderer.example.com | [74d 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e200 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [74e 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e200 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [74f 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [750 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [751 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e200 principal matched by identity 0 +orderer.example.com | [752 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 80 57 26 08 17 03 a9 f5 21 75 e8 43 d6 a1 22 73 |.W&.....!u.C.."s| +orderer.example.com | 00000010 28 9a fd 30 3d c1 a2 a3 88 c2 94 62 7e fb 7f a4 |(..0=......b~...| +orderer.example.com | [753 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f2 08 58 5b 35 1c d2 cd 6f af af |0E.!...X[5...o..| +orderer.example.com | 00000010 5a fc 3b fa a1 7b 86 db 71 45 7c 46 a1 05 c1 51 |Z.;..{..qE|F...Q| +orderer.example.com | 00000020 8b f3 4c e7 46 02 20 0f 9e 5a 69 0f 1f cb 7f 36 |..L.F. ..Zi....6| +orderer.example.com | 00000030 2f fa d2 b2 52 1f e0 af d4 45 93 1f 08 6c e8 c3 |/...R....E...l..| +orderer.example.com | 00000040 ba be d2 f5 4d 4e 23 |....MN#| +orderer.example.com | [754 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e200 principal evaluation succeeds for identity 0 +orderer.example.com | [755 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e200 gate 1528769662208167600 evaluation succeeds +orderer.example.com | [756 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [757 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [758 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [759 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [75a 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [75b 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [75c 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c0be80) start: > stop: > from 172.18.0.4:45286 +peer1.org1.example.com | [c69 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [c6a 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c6b 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [c6c 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c6d 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [c6e 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c70 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [c6f 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c71 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c72 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c73 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c74 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [c75 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c76 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c77 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [c78 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [c79 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [c7a 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c7b 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [c7c 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [c7d 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [c7e 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a8d 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [a8e 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [a8f 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [a90 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [a91 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [a92 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [a93 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [a94 06-12 02:14:41.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\271KG\334\265h/\214\332\366\005\322\362\347G>ft=6Z\267\363n\002 \317{\267\261[WbP'P\250\330T\005\250\035\321B\\\366\373d\271\363^\206\307\337\326\177\345" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020'" signature:"0D\002 \013\t\344\323pw\036_HH\331\327\236\222\312J;1\221a\236\230\022\020\014q\240\2466\021\"Y\002 \016\321\027\226\274B\221\032R\203\344@7\032\006\205\310a\345\370\275:VU\317\332\325\372\211\342\021\342" > alive: alive:\326\374\227|:\031j\267\312\346;\373\027p\210\201\312\274\2500[hS\226\215\002 f\351 \270\254\031\257\221_\377\226\227\226\023\267>\257,\014\337\245\323\220-\346\361\357\003U\254\323\335" > +peer0.org2.example.com | [a95 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [a96 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [a97 06-12 02:14:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [a98 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [a99 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [a9a 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [a9b 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [a9c 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [a9d 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [a9e 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} +peer0.org2.example.com | [a9f 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [aa0 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [aa5 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [aa6 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [aa8 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [aa7 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [aa9 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [aaa 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [aab 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [aac 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [aad 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [aaf 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [aae 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [ab0 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ab2 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [ab3 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ab4 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [ab5 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ab6 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [ab7 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ab8 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [ab9 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [a44 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [a45 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [a46 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [a47 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a48 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [a49 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a4a 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [a4b 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a4c 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [a4d 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [a4e 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [a4f 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a50 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [a51 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [a52 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [a53 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a54 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [a55 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [a56 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c7f 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [c80 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [c81 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c82 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c83 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c84 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [c86 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [c87 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [c88 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c89 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c85 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [c8a 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [c8b 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [c8d 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [c8c 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [c8f 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [c8e 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [c90 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c91 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [c92 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [aa1 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [aa2 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [aa3 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [aa4 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [aa5 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer0.org2.example.com | [aa6 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer0.org2.example.com | [aa7 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [aa8 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [aa9 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [aaa 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [a57 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [a58 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [a5a 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [a59 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [a5b 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [a5c 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a5d 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a5e 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [a5f 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [a60 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [a61 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [a62 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a63 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [a64 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a65 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [a66 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [a67 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [a68 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [a69 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [a6a 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [a6b 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a6c 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [a6d 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [a6e 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [a6f 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [a70 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [a71 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [a72 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [a73 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a74 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a75 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [a76 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a78 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org1.example.com | [a77 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a79 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a7a 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [a7b 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [a7c 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [a7d 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [a7e 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [a7f 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [a80 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a81 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [a83 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a82 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org1.example.com | [a84 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a85 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [a86 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a87 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a88 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [a89 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [a8a 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [a8b 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [a8c 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [a8d 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [a8e 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [a8f 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a90 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [a91 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 644 bytes, Signature: 0 bytes +peer0.org1.example.com | [a92 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 644 bytes, Signature: 0 bytes +peer0.org1.example.com | [a93 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [a94 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 644 bytes, Signature: 0 bytes +peer0.org1.example.com | [a95 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a96 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [a97 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a98 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a99 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [a9a 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [a9b 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 41 but got ts: inc_num:1528769651824440500 seq_num:40 +peer0.org1.example.com | [a9c 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [a9d 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [a9e 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [a9f 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} +peer0.org1.example.com | [aa0 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [aa1 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [aa2 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [aa3 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [aa4 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [aa5 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [aa6 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [aa7 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [aa8 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [aa9 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [aaa 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [aab 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [aac 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [aad 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [aae 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [aaf 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ab0 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [ab1 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ab2 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [ab3 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [ab4 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ab5 06-12 02:14:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [ab6 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [ab7 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [ab8 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [ab9 06-12 02:14:40.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [aba 06-12 02:14:40.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [abb 06-12 02:14:40.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [abc 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [abd 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [abe 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [abf 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [ac0 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [ac1 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ac2 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ac3 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ac4 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ac5 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [ac6 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ac7 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [ac8 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [ac9 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [aca 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [acb 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [acc 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [acd 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [ace 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [acf 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [ad0 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership +peer0.org1.example.com | [ad1 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [ad2 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [ad3 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [ad4 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [ad5 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [ad7 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [ad8 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [ad6 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\205\317\002cw\274\275E\276D\334\303\275yJb\006\307C\017\262b\325\002 C\261\004\201\021\206p8b\332f\033\242O\010;\270\234*\374\207\375\322\201\334ar\356\021;\021V" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020'" signature:"0D\002 \013\t\344\323pw\036_HH\331\327\236\222\312J;1\221a\236\230\022\020\014q\240\2466\021\"Y\002 \016\321\027\226\274B\221\032R\203\344@7\032\006\205\310a\345\370\275:VU\317\332\325\372\211\342\021\342" > +peer0.org1.example.com | [ad9 06-12 02:14:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [ada 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [adb 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [adc 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [add 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [ade 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [adf 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ae0 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ae1 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [ae2 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ae3 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [ae4 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ae5 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [ae6 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [ae7 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [ae8 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [ae9 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [aea 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [aeb 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [aec 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [aed 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [aee 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [aef 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [af0 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [af1 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020(" signature:"0D\002 J\250\037\346Dr1\210\021\340\312\235-\303\035Cj\031\022Eu,\006W\247j\325\201\t\005#\010\002 PEw\243\345\037\230v\267\256\276\n \342\272\2146\244\352\255\013dW\353\376r\231\366\367v8\017" secret_envelope: > +peer0.org1.example.com | [af2 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org1.example.com | [af3 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [af4 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [af5 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [af6 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [af7 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [af8 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [af9 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [afa 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [afb 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} +peer0.org1.example.com | [afc 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [afd 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [afe 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [aff 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [b00 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [b01 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b02 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer0.org1.example.com | [b03 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +peer0.org1.example.com | [b04 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [b06 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b05 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [b07 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b08 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [b09 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [b0a 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [b0b 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b0c 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org1.example.com | [b0d 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b0e 06-12 02:14:42.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [b0f 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer0.org1.example.com | [b10 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [b11 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [b12 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b13 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b14 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b15 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b16 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b17 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b18 06-12 02:14:42.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [b19 06-12 02:14:42.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [b1a 06-12 02:14:42.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [b1b 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [b1c 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [b1d 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b1e 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b1f 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [b20 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b21 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [c93 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c94 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [c95 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c96 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [c97 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c98 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [c99 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [c9a 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [c9b 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [c9c 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [c9d 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [c9e 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [c9f 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [ca0 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [ca1 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [ca2 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [ca4 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ca3 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [ca5 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [ca6 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [ca7 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [ca9 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [caa 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [cab 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [ca8 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [cac 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [cad 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 53 but got ts: inc_num:1528769651824440500 seq_num:52 +peer1.org1.example.com | [cae 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [caf 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [cb0 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [cb1 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [cb2 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [cb3 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [cb4 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [cb5 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [cb6 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [cb7 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [cb8 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [cb9 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [cba 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [cbb 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [cbc 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [cbd 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [cbe 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [cbf 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [cc0 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [cc2 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [cc1 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [cc3 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [cc4 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [cc5 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [cc6 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [cc7 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [cc8 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [cc9 06-12 02:14:49.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [cca 06-12 02:14:49.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [ccb 06-12 02:14:49.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [ccc 06-12 02:14:49.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [ccd 06-12 02:14:49.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [cce 06-12 02:14:49.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [ccf 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes +peer1.org1.example.com | [cd0 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes +peer1.org1.example.com | [cd1 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [cd2 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [cd3 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [cd4 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423c301a0 env 0xc423b90c60 txn 0 +peer1.org1.example.com | [cd5 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423b90c60 +peer1.org1.example.com | [cd6 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +peer1.org1.example.com | [cd7 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [cd8 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [cd9 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org1.example.com | [cda 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [cdb 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [cdc 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4233e9500, header channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +peer1.org1.example.com | [cdd 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [cde 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [cdf 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [ce0 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org1.example.com | [ce1 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +peer1.org1.example.com | [ce2 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [ce3 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423c2b000 +peer1.org1.example.com | [ce4 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin +peer1.org1.example.com | [ce5 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [ce6 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +peer1.org1.example.com | [ce7 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org1.example.com | [ce8 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [ce9 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org1.example.com | [cea 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [ceb 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [a7fc980d-2ee6-455d-b746-c0b1bb5e6195] +peer1.org1.example.com | [cec 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [ced 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [a7fc980d-2ee6-455d-b746-c0b1bb5e6195] +peer1.org1.example.com | [cee 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org1.example.com | [cef 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: +peer1.org1.example.com | [cf0 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac appears to be valid +peer1.org1.example.com | [cf1 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423c2b000 +peer1.org1.example.com | [cf2 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423c301a0 env 0xc423b90c60 txn 0 +peer1.org1.example.com | [cf3 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +orderer.example.com | [75d 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +orderer.example.com | [75e 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12121] +orderer.example.com | [75f 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes +orderer.example.com | [760 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13956], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +orderer.example.com | [761 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13956] read from file [0] +orderer.example.com | [762 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +orderer.example.com | [763 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14016], Going to peek [8] bytes +orderer.example.com | [764 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +orderer.example.com | [765 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +orderer.example.com | [766 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +orderer.example.com | [767 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +orderer.example.com | [768 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [769 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:51658 +orderer.example.com | [76a 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:51658 +orderer.example.com | [76b 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [76c 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [76d 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [76e 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [76f 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [770 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [771 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj +orderer.example.com | SPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue +orderer.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l +orderer.example.com | XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S +orderer.example.com | Qh80aTnAegSTSqmA1w== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [772 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201500d8 gate 1528769662591078200 evaluation starts +orderer.example.com | [773 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201500d8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [aba 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [abb 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [abc 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [abd 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [abe 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [abf 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [ab1 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [ac0 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ac2 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [ac3 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ac4 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [ac5 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ac6 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [ac7 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [ac8 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [ac9 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [aca 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [acb 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [acc 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [acd 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [ace 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [acf 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [ac1 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [ad0 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ad1 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [ad2 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ad3 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [b22 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b23 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [b24 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [b25 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [b26 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [b27 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [b28 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [b29 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [b2a 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b2b 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [b2c 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [aac 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [aab 06-12 02:14:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [aad 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [aae 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [aaf 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [ab0 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [ab1 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ab2 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [ab3 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ab4 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +peer0.org2.example.com | [ab5 06-12 02:14:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ab6 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ab7 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [ab8 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ab9 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [aba 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [cf4 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [cf5 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +peer1.org1.example.com | [cf6 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [cf7 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +peer1.org1.example.com | [cf8 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [774 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201500d8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [775 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201500d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [776 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201500d8 principal evaluation fails +orderer.example.com | [777 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201500d8 gate 1528769662591078200 evaluation fails +orderer.example.com | [778 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [779 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [77a 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +orderer.example.com | [77b 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +orderer.example.com | [77c 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [77d 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [77e 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [77f 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +orderer.example.com | [780 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150108 gate 1528769662593461600 evaluation starts +orderer.example.com | [781 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150108 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [782 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150108 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [783 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150108 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +orderer.example.com | [784 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150108 principal evaluation fails +orderer.example.com | [785 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150108 gate 1528769662593461600 evaluation fails +orderer.example.com | [786 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [787 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +orderer.example.com | [788 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +orderer.example.com | [789 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150158 gate 1528769662595045400 evaluation starts +orderer.example.com | [78a 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [78b 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [78c 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [78d 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [78e 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 principal matched by identity 0 +orderer.example.com | [78f 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 b2 ff e0 92 a3 56 1b 7e fe 19 1c 4a 85 be 73 20 |.....V.~...J..s | +orderer.example.com | 00000010 3e 07 d0 a5 9f e4 8d ed 6c 76 35 82 a4 59 62 53 |>.......lv5..YbS| +orderer.example.com | [790 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b ef 70 d9 ec a2 ef 4f df 9b 81 35 |0D. ..p....O...5| +orderer.example.com | 00000010 3f fe 61 d6 b1 ab 78 63 df 05 e5 3e 3a 62 76 31 |?.a...xc...>:bv1| +orderer.example.com | 00000020 36 d4 62 ef 02 20 5d 21 a0 73 43 00 3a cc 87 e8 |6.b.. ]!.sC.:...| +orderer.example.com | 00000030 1d 4c fb 52 53 ad 62 43 f1 24 2d 32 5c 3c b9 be |.L.RS.bC.$-2\<..| +orderer.example.com | 00000040 d0 60 fa 35 3a 8e |.`.5:.| +orderer.example.com | [791 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 principal evaluation succeeds for identity 0 +orderer.example.com | [792 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150158 gate 1528769662595045400 evaluation succeeds +orderer.example.com | [793 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [b2d 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b2e 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b2f 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b30 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b31 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b32 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b33 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [b34 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b35 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b37 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b36 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b38 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b39 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [b3a 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b3b 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b3c 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b3d 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b3e 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [b3f 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b40 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b41 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b42 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [b43 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [b44 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [b45 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [b46 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [b47 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [b48 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [b49 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b4a 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b4b 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b4c 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [b4d 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [b4e 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [b4f 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b50 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b51 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b52 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b53 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b54 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b55 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b56 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b57 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b58 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [b59 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b5a 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b5b 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b5c 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [b5d 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [b5e 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [cf9 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer1.org1.example.com | [cfa 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [cfb 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer1.org1.example.com | [cfc 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] marked as valid by state validator +peer1.org1.example.com | [cfd 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [cfe 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [cff 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [d00 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc423c76d50)} +peer1.org1.example.com | [d01 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] +peer1.org1.example.com | [d02 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +peer1.org1.example.com | [d03 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +peer1.org1.example.com | [d04 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} +peer1.org1.example.com | [d05 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +peer1.org1.example.com | [d06 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} +peer1.org1.example.com | [d07 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc420224ac0})} +peer1.org1.example.com | [d08 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +peer1.org1.example.com | [d09 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] +peer1.org1.example.com | [d0a 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x85, 0xcf, 0x9e, 0x4c, 0xc1, 0xd7, 0xb8, 0xde, 0x8c, 0xf1, 0x23, 0x5e, 0x4b, 0x7f, 0x6f, 0x1d, 0xcc, 0x70, 0x69, 0xaa, 0x7e, 0x1a, 0x8e, 0x7b, 0x90, 0x1f, 0x84, 0xc8, 0xe2, 0xfb, 0xcd, 0x8} txOffsets= +peer1.org1.example.com | txId=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac locPointer=offset=70, bytesLength=3459 +peer1.org1.example.com | ] +peer1.org1.example.com | [d0b 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to index +peer1.org1.example.com | [d0c 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx number:[0] ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to blockNumTranNum index +peer1.org1.example.com | [d0d 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45423], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org1.example.com | [d0e 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] +peer1.org1.example.com | [d0f 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] +peer1.org1.example.com | [d10 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +peer1.org1.example.com | [d11 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +peer1.org1.example.com | [d12 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [d13 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org1.example.com | [d14 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [d15 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [d16 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [d17 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer1.org1.example.com | [d18 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [d1a 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [af6e670e-5656-436d-a405-f95751cd24f8] +peer1.org1.example.com | [d19 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [4] +peer1.org1.example.com | [d1d 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] +peer1.org1.example.com | [d1b 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer1.org1.example.com | [d1e 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org1.example.com | [d1f 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [4] +peer1.org1.example.com | [d1c 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] +peer1.org1.example.com | [d20 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [d21 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] +peer1.org1.example.com | [d22 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [af6e670e-5656-436d-a405-f95751cd24f8] +peer1.org1.example.com | [d23 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] +peer1.org1.example.com | [d24 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +peer1.org1.example.com | [d25 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org1.example.com | [d26 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [d27 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac +peer1.org1.example.com | [d28 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [d29 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [d2a 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [794 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +orderer.example.com | [795 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +orderer.example.com | [796 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +orderer.example.com | [797 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [798 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [799 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420156260) start: > stop: > from 172.18.0.5:51658 +orderer.example.com | [79a 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +orderer.example.com | [79b 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12121] +orderer.example.com | [79c 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes +orderer.example.com | [79d 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13956], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +orderer.example.com | [79e 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13956] read from file [0] +orderer.example.com | [79f 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +orderer.example.com | [7a0 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14016], Going to peek [8] bytes +orderer.example.com | [7a1 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +orderer.example.com | [7a2 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +orderer.example.com | [7a3 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +orderer.example.com | [7a4 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +orderer.example.com | [7a5 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [7a6 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35792 +orderer.example.com | [7a7 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:35792 with txid 'bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac' of type ENDORSER_TRANSACTION +orderer.example.com | [7a8 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [7a9 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7aa 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [7ab 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7ac 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [7ad 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [7ae 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [b5f 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [b60 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b61 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [b62 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [b63 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b64 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [b65 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [b66 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [b67 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [b68 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [b69 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [b6a 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership +peer0.org1.example.com | [b6b 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [b6c 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [b6d 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [b6e 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [b6f 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [b70 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020*" signature:"0E\002!\000\204\262\310q\336NR:\"_@\331\306C\320\320YR7\202\263\000Kdx?\"m\207\325\265i\002 {?Z\024\275\314\300.\241ga\"\215\025\217\320\nc\031A\021\372\214\236\\\314~S<\332\346\023" > +peer0.org1.example.com | [b71 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [b72 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b73 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [b74 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [b75 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [b76 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [b77 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [b78 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [b79 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [b7a 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b7b 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [b7c 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b7d 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [b7e 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b7f 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [b80 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [b81 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [b82 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b83 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [b84 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [b85 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [b86 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b87 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [b88 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [b89 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b8a 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [b8b 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [b8c 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [b8d 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [b8e 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b8f 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [b90 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [b91 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b92 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [b94 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [b95 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [b93 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [b96 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [b97 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [b98 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [b99 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [b9a 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [b9b 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [b9c 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [b9d 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [b9e 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [b9f 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [ba0 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [ba1 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [ba2 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [ba3 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [ba4 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [ba5 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [ba6 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [ba7 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [ba8 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [ba9 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [baa 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [bab 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [bac 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [bad 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [bae 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [baf 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [bb0 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [bb1 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [bb2 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [bb3 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [bb4 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [bb5 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [bb6 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [bb7 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [bb8 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [bb9 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [bba 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [bbb 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [bbc 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [bbd 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [bbe 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 46 but got ts: inc_num:1528769651824440500 seq_num:45 +peer0.org1.example.com | [bbf 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [bc0 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [bc1 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [bc2 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [bc3 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [bc4 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [bc5 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [bc6 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [bc7 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [bc8 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [bc9 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [bca 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [bcb 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [bcc 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [bcd 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [bce 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [bcf 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [bd0 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [bd1 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [bd2 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [bd3 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [bd4 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [bd5 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [bd6 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [bd7 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [bd8 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [bd9 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [bda 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [bdb 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [d2b 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [d2c 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [d2d 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [d2e 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [d2f 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [d30 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [d31 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d32 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [d33 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d34 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d35 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d36 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [d37 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [d39 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d38 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [d3a 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [d3b 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [d3d 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [d3e 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [d3f 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [d3c 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d40 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [d41 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [d42 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [d43 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ad4 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ad5 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [ad6 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ad7 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [ad8 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [ad9 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [ada 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [adb 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [adc 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [add 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [ade 06-12 02:14:43.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [adf 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [ae0 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [ae1 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [ae2 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ae3 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ae4 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ae5 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ae6 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ae7 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [ae8 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [ae9 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [bdc 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [bdd 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [bde 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [bdf 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [be0 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [be1 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [be2 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [be3 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [be4 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [be5 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [be6 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [be7 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [abb 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [abc 06-12 02:14:42.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [abd 06-12 02:14:42.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [abe 06-12 02:14:42.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [abf 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [ac0 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [ac1 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [ac2 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ac3 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [ac4 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [ac5 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ac6 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ac7 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [ac8 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [ac9 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [aca 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [acb 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [acc 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [acd 06-12 02:14:42.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ace 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [acf 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ad0 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [ad1 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ad2 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ad3 06-12 02:14:42.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ad4 06-12 02:14:42.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +orderer.example.com | 3BDFnYuSFYhOCexVkA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [7af 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e280 gate 1528769688636389200 evaluation starts +orderer.example.com | [7b0 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [7b1 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [7b2 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [7b3 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 principal evaluation fails +orderer.example.com | [7b4 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e280 gate 1528769688636389200 evaluation fails +orderer.example.com | [7b5 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [7b6 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [7b7 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +orderer.example.com | [7b8 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +orderer.example.com | [7b9 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [7ba 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [7bb 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7bc 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [7bd 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1528769688640122300 evaluation starts +orderer.example.com | [7be 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [aea 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [aeb 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [aec 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [aed 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [aee 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [aef 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [af0 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [af1 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > alive: alive: +peer1.org2.example.com | [af2 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [af3 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [af4 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [af5 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [af6 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [af7 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [af8 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [af9 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [afa 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [afb 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [afc 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [afd 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [afe 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [be8 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [be9 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [bea 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [beb 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [bec 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [bed 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [bee 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [bef 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [bf0 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [bf1 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [bf2 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [bf3 06-12 02:14:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [bf4 06-12 02:14:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [bf5 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [bf6 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [bf7 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [bf8 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [bf9 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [bfa 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [bfb 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [bfc 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [bfd 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [bfe 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [bff 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [ad5 06-12 02:14:42.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer0.org2.example.com | [ad6 06-12 02:14:42.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [ad7 06-12 02:14:42.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ad8 06-12 02:14:42.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [ad9 06-12 02:14:42.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ada 06-12 02:14:42.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [adb 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [adc 06-12 02:14:42.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [add 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ade 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [adf 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ae0 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ae1 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ae2 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [ae3 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ae4 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [ae5 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ae6 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [ae7 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [ae8 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [ae9 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [aea 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [aeb 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d44 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d45 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d46 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [d47 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [d49 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d4a 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [d4b 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [d48 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [d4c 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [d4d 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d4e 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d4f 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d50 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [d51 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d52 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [d53 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [d54 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [d56 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [d55 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d57 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d58 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [d59 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [d5a 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [aff 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [b00 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [b01 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [b02 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [b03 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [b04 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [b05 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [b06 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [b07 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [b08 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b09 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [b0a 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [b0b 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer1.org2.example.com | [b0c 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org2.example.com | [b0d 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b0e 06-12 02:14:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [b0f 06-12 02:14:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b10 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [b11 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [b12 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [b13 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c00 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [c01 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [c02 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [c03 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [c04 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [c05 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [c06 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [c07 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [c08 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [c09 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020," signature:"0E\002!\000\371\320\211\343\024\001\307\356\365\013\021\217\016A\300)n\342F*\246\210Z\252\030QO\317z\266\374`\002 %.\027\370!{\212\344\330\340\244kC\357\n\304M/\351(\252\254\370ZN\033\2607\177uO\264" > +peer0.org1.example.com | [c0a 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [c0b 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c0c 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [c0d 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [c0e 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c0f 06-12 02:14:44.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [c10 06-12 02:14:44.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [c11 06-12 02:14:44.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c12 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [c13 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [c14 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [c15 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [aec 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [aed 06-12 02:14:42.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [aee 06-12 02:14:42.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [aef 06-12 02:14:42.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [af0 06-12 02:14:42.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [af1 06-12 02:14:42.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [af2 06-12 02:14:42.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [af3 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [af4 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [af5 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [af6 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [af7 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [af8 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [af9 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [afa 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [afb 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [afc 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [afd 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [afe 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [aff 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [b00 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [b01 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [b02 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d5b 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [d5c 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [d5d 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [d5e 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [d60 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [d5f 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [d61 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [d62 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\004_v\337)\212\374\353\235\241)\255\222" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0202" signature:"0E\002!\000\3540\267\246@\305\253\203\335\321\221H\001\235R\330/\277\025\0312\004\311-i\030\265\326\021[\215)\002 $\337\354,\277j\204\324\2356,N\310\"\264\006 \341\031\254\000e\231]\355\266\"m\316k\027\025" > alive: alive: +peer1.org1.example.com | [d63 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [d64 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [d65 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d67 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [d66 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d68 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d69 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d6b 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d6c 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [d6a 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d6e 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [d6d 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [d6f 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [7bf 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [7c0 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [7c1 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal evaluation fails +orderer.example.com | [7c2 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1528769688640122300 evaluation fails +orderer.example.com | [7c3 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [7c4 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [7c5 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [7c6 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1528769688642475700 evaluation starts +orderer.example.com | [7c7 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [7c8 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [7c9 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +orderer.example.com | [7ca 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org1MSP validating identity +orderer.example.com | [7cb 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal matched by identity 0 +peer1.org2.example.com | [b14 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [b15 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [b16 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [b17 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b18 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b19 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [b1a 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b1b 06-12 02:14:44.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [b1c 06-12 02:14:44.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [b1d 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b1e 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [b1f 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [b20 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [b21 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [b22 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b23 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b24 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [b25 06-12 02:14:44.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b26 06-12 02:14:44.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [b27 06-12 02:14:44.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [b28 06-12 02:14:44.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b29 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [b2a 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [b2b 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [b2c 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [b2d 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b2e 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [c16 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [c17 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c18 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [c19 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c1a 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [c1b 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [c1c 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [c1d 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [c1e 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [c1f 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [c20 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [c21 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [c22 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [c23 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [c24 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020-" signature:"0D\002 F\000\345?\223\252\336yR[\303#\003\321\271\300\224\237\275\2175\346\236X\334\032\016\240\364QaC\002 ,\221\256\tFx\215;\255\231}\307g+d\000\342\0147\262\250.\231\306w\350\024\355`\306\227\242" secret_envelope:\r}3" > > +peer0.org1.example.com | [c25 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org1.example.com | [c26 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c27 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c28 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c29 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [c2a 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b03 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b04 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b05 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b06 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b07 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [b08 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b09 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b0a 06-12 02:14:43.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [b0b 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b0c 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b0d 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [b0e 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b0f 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b10 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [b11 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [b12 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [b13 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [b14 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [b15 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b16 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [b17 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [b18 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b19 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [b1a 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [b2f 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [b30 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b31 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [b32 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b33 06-12 02:14:45.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [b34 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [b35 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [b36 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [b37 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [b38 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [b39 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [b3a 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b3b 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [b3c 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [b3e 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [b3f 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b3d 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > alive:\346\002 [\261\325o{\223\243\251\371\316_\023\320|-\006]\335\363\030\337J\240\254\021|.w*ag " > +peer1.org2.example.com | [b40 06-12 02:14:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [b41 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [b42 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [c2b 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c2c 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c2d 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [c2e 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [c2f 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [c30 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [c31 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [c32 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [c33 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [c34 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [c35 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c36 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [c37 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c38 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c39 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [c3a 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c3b 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c3c 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [c3d 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c3e 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c3f 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [c40 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [c41 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [c42 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c43 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [d70 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [d71 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [d72 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [d73 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [d74 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [d75 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d76 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d77 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [d78 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [d79 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d7a 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [d7b 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d7c 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [d7d 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [d7e 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [d7f 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d80 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [d81 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [d82 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [d83 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d84 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d85 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [d86 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d87 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [d88 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b43 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [b44 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [b45 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b46 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [b47 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b48 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [b49 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b4a 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b4b 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [b4c 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b4d 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b4e 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b4f 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [b50 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [b51 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [b52 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [b53 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [b54 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [b55 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [b56 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b57 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b58 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b59 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [b5a 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [b5b 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [b5c 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b5d 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b5f 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b5e 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b60 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b61 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b62 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b63 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b64 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [b65 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b66 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b67 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b68 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b69 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b6a 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [b6b 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b6c 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b6e 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [b6d 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b6f 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b70 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [b71 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [b72 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [d89 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [d8a 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [d8b 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d8c 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [d8d 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [d8e 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [d8f 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [d90 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [d91 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [d92 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [d93 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [d94 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [d95 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [d96 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [d97 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [d98 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" secret_envelope: > alive: > +peer1.org1.example.com | [d99 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [d9a 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c44 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [c45 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c46 06-12 02:14:47.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [c47 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [c48 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [c4a 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [c4b 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c49 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c4c 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c4d 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c4e 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c4f 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c50 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [c51 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [c52 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [c53 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [c54 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [c55 06-12 02:14:47.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c56 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c57 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c58 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [c59 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c5a 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c5b 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b73 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [b74 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [b75 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [b76 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [b77 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b78 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b79 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b7a 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b7b 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b7c 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [b7d 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b7e 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b7f 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [b80 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [b81 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [b82 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b83 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b84 06-12 02:14:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [b85 06-12 02:14:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b86 06-12 02:14:47.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [b87 06-12 02:14:47.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b88 06-12 02:14:47.59 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [b89 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [b8a 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [b8b 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [b8d 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [b8c 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [b8e 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +orderer.example.com | [7cc 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 2e 77 e9 dc 18 45 c0 27 7b 8d 79 2d f6 d3 8c bc |.w...E.'{.y-....| +orderer.example.com | 00000010 73 c9 41 aa 24 70 df 8a dc f0 75 61 29 b8 5b aa |s.A.$p....ua).[.| +orderer.example.com | [7cd 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 03 ce eb 20 f4 20 84 b3 6a d2 54 a6 |0D. ... . ..j.T.| +orderer.example.com | 00000010 8e 8f 9c d3 bf 50 be 0d d3 95 9c b7 a7 dc c9 3c |.....P.........<| +orderer.example.com | 00000020 ea c3 a0 01 02 20 41 1e a1 0c a9 81 73 e5 c3 ce |..... A.....s...| +orderer.example.com | 00000030 42 cc 17 ad 45 b8 f3 bf 89 2d 28 2d 97 eb 43 80 |B...E....-(-..C.| +orderer.example.com | 00000040 ce 7a 4b 39 89 75 |.zK9.u| +orderer.example.com | [7ce 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal evaluation succeeds for identity 0 +orderer.example.com | [7cf 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1528769688642475700 evaluation succeeds +orderer.example.com | [7d0 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [7d1 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [7d2 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [7d3 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [7d4 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [7d5 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [7d6 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:35792 +orderer.example.com | [7d7 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [7d8 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35792: read: connection reset by peer +orderer.example.com | [7d9 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35792: rpc error: code = Canceled desc = context canceled +orderer.example.com | [7da 06-12 02:14:48.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [7db 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [7dc 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35798 +orderer.example.com | [7dd 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [7de 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [7df 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [7e0 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B3D2347BD738FF38336070EE4E9BB4D6 +orderer.example.com | [7e1 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 9AFD3D50D7ECB113EF9933240156CAD6237C952D519D76D2CBF450795051DB97 +orderer.example.com | [7e2 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [7e3 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [7e4 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [7e5 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...B3D2347BD738FF38336070EE4E9BB4D6 +orderer.example.com | [7e6 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 76EBFA627B463D62906C17D178F59B463D62B0DC4F7E536C3D8603825AA9A7F0 +orderer.example.com | [7e7 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x85, 0xcf, 0x9e, 0x4c, 0xc1, 0xd7, 0xb8, 0xde, 0x8c, 0xf1, 0x23, 0x5e, 0x4b, 0x7f, 0x6f, 0x1d, 0xcc, 0x70, 0x69, 0xaa, 0x7e, 0x1a, 0x8e, 0x7b, 0x90, 0x1f, 0x84, 0xc8, 0xe2, 0xfb, 0xcd, 0x8} txOffsets= +peer1.org1.example.com | [d9b 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [d9c 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [d9d 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [d9e 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [d9f 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [da0 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [da1 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org1.example.com | [da2 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [da3 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [da4 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [da5 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [da6 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [da7 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [da8 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [da9 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [daa 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [dab 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org1.example.com | [dac 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [dad 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [dae 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [daf 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [b8f 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [b90 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b91 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [b92 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b93 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [b94 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [b95 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [b96 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [b97 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b98 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [b99 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [b9a 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b9b 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [b9c 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [b9d 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [b9e 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [b9f 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [ba0 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [b1b 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [b1c 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [b1d 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [b1e 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [b1f 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership +peer0.org2.example.com | [b20 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [b21 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b22 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [b23 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [b24 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [b25 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer0.org2.example.com | [b26 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [b27 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b28 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [b29 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [b2a 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [b2b 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b2c 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [b2d 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b2e 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [b2f 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b30 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [db0 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [db1 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [db2 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [db3 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [db4 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [db5 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [db6 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [db7 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:6812725869896769966 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [db8 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:6812725869896769966 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes +peer1.org1.example.com | [db9 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [dba 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 6812725869896769966, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 546 bytes, Signature: 0 bytes +peer1.org1.example.com | [dbb 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 6812725869896769966, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 546 bytes, Signature: 0 bytes +peer1.org1.example.com | [dbc 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [dbd 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 6812725869896769966, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 546 bytes, Signature: 0 bytes +peer1.org1.example.com | [dbe 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [dbf 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [dc0 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [ba1 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [ba2 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ba3 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ba4 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ba5 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ba6 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ba7 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ba8 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org2.example.com | [ba9 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [baa 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org2.example.com | [bac 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org2.example.com | [bab 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org2.example.com | [bad 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bae 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [baf 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bb0 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [bb1 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [bb2 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [bb3 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [bb4 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [bb5 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | txId=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac locPointer=offset=70, bytesLength=3459 +orderer.example.com | ] +orderer.example.com | [7e8 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45419], isChainEmpty=[false], lastBlockNumber=[3] +orderer.example.com | [7e9 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 +orderer.example.com | [7ea 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [7eb 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5324], Going to peek [8] bytes +orderer.example.com | [7ec 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[40095], bytesOffset=[40097]} +orderer.example.com | [7ed 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] +orderer.example.com | [7ee 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +orderer.example.com | [7ef 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +orderer.example.com | [7f0 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +orderer.example.com | [7f1 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5324], Going to peek [8] bytes +orderer.example.com | [7f2 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[40095], bytesOffset=[40097]} +orderer.example.com | [7f3 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] +orderer.example.com | [7f4 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +orderer.example.com | [7f5 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +orderer.example.com | [7f6 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:35798 with txid '1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046' of type ENDORSER_TRANSACTION +orderer.example.com | [7f7 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [7f8 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7f9 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [7fa 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [7fb 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [7fc 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [7fd 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [7fe 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503c8 gate 1528769710321856500 evaluation starts +orderer.example.com | [7ff 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [c5c 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [c5d 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [c5e 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [c5f 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [c60 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [c61 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [c62 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [c63 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [c64 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [c65 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [c66 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c67 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c68 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c69 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c6a 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c6b 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [c6c 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c6d 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c6e 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [c6f 06-12 02:14:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c70 06-12 02:14:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c71 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [c72 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c73 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c74 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [b31 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [b32 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [b33 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [b34 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [b35 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [b36 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b37 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [b38 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [b39 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [b3b 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [b3c 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b3a 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > alive: alive: alive:\240\2639\377\256\201\250\035\002 \001XG\034\321?5\310\n-\3408k\263\316\231 \355R\347+ok;\300\311\271\275\025D\201\362" > +peer0.org2.example.com | [b3d 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [b3e 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b3f 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [b40 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b41 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [b42 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [b43 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [b45 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [b44 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [b46 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b47 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [b48 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [b49 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [800 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [801 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [802 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 principal evaluation fails +orderer.example.com | [803 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503c8 gate 1528769710321856500 evaluation fails +orderer.example.com | [804 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [805 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [806 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +orderer.example.com | [807 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +orderer.example.com | [808 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [809 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [80a 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [80b 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [80c 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503e8 gate 1528769710322507800 evaluation starts +orderer.example.com | [80d 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [bb6 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [bb7 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [bb8 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [bb9 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [bba 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org2.example.com | [bbc 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [bbd 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org2.example.com | [bbb 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bbe 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [bbf 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [bc0 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bc1 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [bc2 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bc3 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [bc4 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bc5 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [bc6 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [bc7 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [bc8 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [bc9 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [bca 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [bcb 06-12 02:14:47.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [bcc 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [bcd 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org2.example.com | [bce 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [bcf 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bd0 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [bd1 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [dc1 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [dc2 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [dc3 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [dc4 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [dc5 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [dc6 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [dc7 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [dc8 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [dc9 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [dca 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [dcb 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [dcc 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [dcd 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [dce 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [dcf 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [dd0 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [dd1 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [dd2 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 740 bytes, Signature: 0 bytes +peer1.org1.example.com | [dd3 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 740 bytes, Signature: 0 bytes +peer1.org1.example.com | [dd4 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [dd5 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org1.example.com | [dd6 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [dd7 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b4a 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b4b 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [b4c 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b4d 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [b4e 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [b4f 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b50 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [b51 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [b52 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b53 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [b54 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [b55 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [b56 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b57 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [b58 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [80e 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [80f 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +orderer.example.com | [810 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [811 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 principal matched by identity 0 +orderer.example.com | [812 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c ae 75 ec 61 85 d1 41 ea 58 99 f2 e3 74 dc 4b |..u.a..A.X...t.K| +orderer.example.com | 00000010 89 18 64 ec 96 e3 2a 5f 20 e4 d7 d2 8e 88 05 39 |..d...*_ ......9| +orderer.example.com | [813 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7e 69 3d 37 b3 9e 1b 40 6f c7 b4 60 |0D. ~i=7...@o..`| +orderer.example.com | 00000010 77 92 1e ba 76 e8 62 48 2b aa ff db 7a 99 8f 5e |w...v.bH+...z..^| +orderer.example.com | 00000020 cd 88 31 6c 02 20 48 8c 94 93 5c 1b 6d 91 c8 37 |..1l. H...\.m..7| +orderer.example.com | 00000030 c8 5f fe 71 7c 74 63 61 b3 a4 82 7f bd c9 2c 5d |._.q|tca......,]| +orderer.example.com | 00000040 de db 3b 38 70 8e |..;8p.| +orderer.example.com | [814 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 principal evaluation succeeds for identity 0 +orderer.example.com | [815 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503e8 gate 1528769710322507800 evaluation succeeds +orderer.example.com | [816 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [817 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [818 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [819 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [81a 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [81b 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [81c 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:35798 +orderer.example.com | [81d 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [81e 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35798: rpc error: code = Canceled desc = context canceled +orderer.example.com | [81f 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [820 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [821 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [822 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [823 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...4C2A4C99E19C521E20E0733FB8BF616A +orderer.example.com | [824 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DD13392EE918ECD49C21193B495FEC41D5489405FDF9CE83084539A262E45801 +orderer.example.com | [825 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [826 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [827 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer0.org1.example.com | [c75 06-12 02:14:47.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +peer0.org1.example.com | [c76 06-12 02:14:47.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully +peer0.org1.example.com | [c77 06-12 02:14:47.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +peer0.org1.example.com | [c78 06-12 02:14:47.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +peer0.org1.example.com | [c79 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [c7a 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [c7b 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [c7c 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [c7d 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c7e 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [c7f 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [c80 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [c81 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [c82 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [c83 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [c84 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [c85 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [c86 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [c87 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [c88 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [c89 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [c8a 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [c8b 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [c8c 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [bd2 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [bd3 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bd4 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [bd5 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [bd6 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [bd7 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [bd8 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [bd9 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [bda 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [bdb 06-12 02:14:47.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [bdc 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [bdd 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [bde 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [bdf 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [be0 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [be1 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [be2 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [be3 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [be4 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [be5 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [be6 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [be7 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [dd8 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [dd9 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [dda 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [ddb 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ddc 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 755 bytes, Signature: 0 bytes +peer1.org1.example.com | [ddd 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [dde 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [ddf 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [de0 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [de1 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [de2 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [de3 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [de4 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [de5 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [de6 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [de7 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [de8 06-12 02:14:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [de9 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [dea 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [deb 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [dec 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ded 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [dee 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [def 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [df0 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [df1 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [828 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...4C2A4C99E19C521E20E0733FB8BF616A +orderer.example.com | [829 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 9B749AE771D9A0015428B507263B00C6909C4284DB1E253083A958F71F5CF158 +orderer.example.com | [82a 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xb2, 0x2, 0x73, 0xc0, 0x68, 0xb4, 0x1b, 0x5, 0x97, 0xfa, 0x28, 0x78, 0xb9, 0x53, 0x7d, 0x1c, 0xa4, 0x85, 0x7c, 0xde, 0xf6, 0x7e, 0x5d, 0x4d, 0x44, 0xc8, 0x94, 0x3b, 0x89, 0xd3, 0x6c, 0x25} txOffsets= +orderer.example.com | txId=1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 locPointer=offset=70, bytesLength=3460 +orderer.example.com | ] +orderer.example.com | [82b 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50742], isChainEmpty=[false], lastBlockNumber=[4] +orderer.example.com | [82c 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 +orderer.example.com | [82d 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +orderer.example.com | [82e 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5323], Going to peek [8] bytes +orderer.example.com | [82f 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5321], placementInfo={fileNum=[0], startOffset=[45419], bytesOffset=[45421]} +orderer.example.com | [830 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5321] read from file [0] +orderer.example.com | [831 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +orderer.example.com | [832 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +orderer.example.com | [833 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5323], Going to peek [8] bytes +orderer.example.com | [834 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5321], placementInfo={fileNum=[0], startOffset=[45419], bytesOffset=[45421]} +orderer.example.com | [835 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5321] read from file [0] +orderer.example.com | [837 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +orderer.example.com | [836 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +orderer.example.com | [838 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +orderer.example.com | [839 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [83a 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35808 +orderer.example.com | [83b 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:35808 with txid '40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad' of type ENDORSER_TRANSACTION +orderer.example.com | [83c 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [83d 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [83e 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [83f 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [840 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [841 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e370 gate 1528769734878003300 evaluation starts +orderer.example.com | [842 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e370 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [be8 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [be9 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [bea 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [beb 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [bec 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [bed 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [bee 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:TN\257\313\267\327n\330\017\213\271\202h\245\0104\270>\343\000\250u\352\315\355\256J4\200\2226" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > alive: +peer1.org2.example.com | [bef 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [bf0 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [bf1 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [bf2 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [bf3 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bf4 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bf5 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [bf6 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [bf7 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bf8 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [bf9 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [bfa 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [bfb 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [bfc 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [b59 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [b5a 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [b5c 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [b5d 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b5b 06-12 02:14:44.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [b5f 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b5e 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [b60 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org2.example.com | [b61 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org2.example.com | [b62 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b63 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org2.example.com | [b64 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [b65 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [b66 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [b67 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b68 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [b69 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [b6a 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [b6b 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [b6c 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [b6d 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [b6e 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [b6f 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [c8d 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020/" signature:"0D\002 G\330\315\033Z\312\264\252\352\270?\224\276\352\237f\337\272v \351\025\014&X/\335&\256\240\364e\002 ;o\271\301H\212\\\363\343U\020h\033\350\312\np9\350\"\206\330\365\256L\235\022\216\365I\252}" > +peer0.org1.example.com | [c8e 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [c8f 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c90 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [c91 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [c92 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [c93 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [c94 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [c95 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [c96 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [c97 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c98 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [c99 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c9a 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [c9b 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [c9c 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [c9d 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [c9e 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [c9f 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ca0 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [bfd 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [bfe 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [bff 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [c00 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [c01 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [c02 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [c03 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [c04 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [c06 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [c07 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [c08 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c09 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [c0a 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [c05 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [c0b 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [c0c 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [c0d 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [c0f 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [c10 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [c0e 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c11 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [c12 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [c13 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c14 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [c15 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [c16 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org2.example.com | [b70 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [b71 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [b72 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b73 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [b74 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [b75 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [b76 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [b77 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b78 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b79 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [b7a 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b7b 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [b7c 06-12 02:14:44.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [b7d 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 47 but got ts: inc_num:1528769651824440500 seq_num:45 +peer0.org2.example.com | [b7e 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b7f 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [b80 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [b81 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [b82 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [b83 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [b84 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [b85 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [b86 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b87 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [b88 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [b89 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [b8a 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [df2 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [df3 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [df4 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [df5 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [df6 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [df7 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [df8 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [dfa 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [dfb 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [dfc 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [df9 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [dfd 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [dfe 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [dff 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [e00 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e01 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e02 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e04 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [e03 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [e05 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [e06 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [e07 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e08 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e09 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [e0a 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e0b 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [843 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e370 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [844 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e370 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [845 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e370 principal evaluation fails +orderer.example.com | [846 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e370 gate 1528769734878003300 evaluation fails +orderer.example.com | [847 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [848 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [849 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +orderer.example.com | [84a 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +orderer.example.com | [84b 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [84c 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [84d 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [84e 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [84f 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e378 gate 1528769734881189100 evaluation starts +orderer.example.com | [850 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e378 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [851 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e378 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [ca2 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [ca1 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [ca3 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ca4 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [ca5 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [ca6 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ca7 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [ca8 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [ca9 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [caa 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [cab 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [cac 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [cad 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [cae 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [caf 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [cb0 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [c17 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c18 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\3611\242\260\234\255r\330\334\007h\002 \002\000b\346_\344\302\363\342\226\316\216z\226\304\266fZ\224?\022J\003\350s\212\230\021w\344S\261" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [c19 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c1a 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\3611\242\260\234\255r\330\334\007h\002 \002\000b\346_\344\302\363\342\226\316\216z\226\304\266fZ\224?\022J\003\350s\212\230\021w\344S\261" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [c1b 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [c1c 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [c1d 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [c1e 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [c1f 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [c20 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [c21 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [c22 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [c23 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [c24 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [c25 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\3611\242\260\234\255r\330\334\007h\002 \002\000b\346_\344\302\363\342\226\316\216z\226\304\266fZ\224?\022J\003\350s\212\230\021w\344S\261" > > alive:\031\300\263-\\\212\206j=\3146\010{\273v\224\031\225c\010\031\3535\357\035" secret_envelope: > +peer1.org2.example.com | [c26 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [c27 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [c28 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [c29 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [c2a 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c2b 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [c2c 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [c2d 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [c2e 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c2f 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [c30 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [c31 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [c32 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [c33 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [c34 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [c36 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [c35 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [c38 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c37 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [c39 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [c3a 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c3b 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer1.org2.example.com | [c3c 06-12 02:14:48.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c3d 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [c3e 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [c3f 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [c40 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [c41 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [c42 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [c43 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c44 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [c45 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [c46 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [cb2 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [cb3 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [cb4 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [cb1 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [cb5 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [cb6 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cb7 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [cb8 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [cb9 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [cba 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [cbb 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [cbc 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [cbd 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [cbe 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cbf 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [cc0 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [cc1 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [cc2 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [cc3 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [cc4 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [cc5 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [cc6 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cc7 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [cc8 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cc9 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e0c 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [e0d 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [e0e 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [e0f 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e10 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [e11 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [e12 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [e13 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [e14 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [e15 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [e16 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [e17 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [e18 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e19 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [e1a 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [e1b 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [e1d 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [e1e 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e1c 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0206" signature:"0D\002 \002%\240\330\335\261Uo)\372\244\374B\022\327:\214b[\213PO\252\023\254\315\345\276o$\225\215\002 \032\364f\300\030\3768\225N\0132b\023\303\235tH\372)\306\376\211\177\035\260\301\370\372\210\253z\007" > alive: alive: +orderer.example.com | [852 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e378 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [853 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e378 principal evaluation fails +orderer.example.com | [854 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e378 gate 1528769734881189100 evaluation fails +orderer.example.com | [855 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [856 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [857 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [858 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e380 gate 1528769734883420600 evaluation starts +orderer.example.com | [859 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e380 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [85a 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e380 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [85b 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e380 principal matched by identity 0 +orderer.example.com | [85c 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 c2 fd 3d d7 77 b1 dc 89 ce 1d b5 c0 7e 2d c4 d0 |..=.w.......~-..| +orderer.example.com | 00000010 7f 6c da e1 26 f8 50 ba 22 f0 f6 35 ca 78 9f 44 |.l..&.P."..5.x.D| +orderer.example.com | [85d 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 63 92 ad d9 97 80 25 06 b3 45 98 9e |0D. c.....%..E..| +orderer.example.com | 00000010 63 52 ba bc 23 6c 35 04 cf f2 47 08 5f fd 96 c5 |cR..#l5...G._...| +orderer.example.com | 00000020 bc 5a d6 bd 02 20 45 70 d8 1c fd dc 3d e0 80 14 |.Z... Ep....=...| +orderer.example.com | 00000030 d8 87 88 f9 a2 01 ce 4d c5 47 88 21 17 94 ae bb |.......M.G.!....| +orderer.example.com | 00000040 32 ef 8a a7 ea bd |2.....| +orderer.example.com | [85e 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e380 principal evaluation succeeds for identity 0 +orderer.example.com | [85f 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e380 gate 1528769734883420600 evaluation succeeds +orderer.example.com | [860 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [861 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [862 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +peer0.org2.example.com | [b8b 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [b8c 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [b8d 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 46 but got ts: inc_num:1528769653227426900 seq_num:45 +peer0.org2.example.com | [b8e 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b8f 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [b90 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [b91 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [b92 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b93 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [b94 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [b95 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 47 but got ts: inc_num:1528769651824440500 seq_num:46 +peer0.org2.example.com | [b96 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b97 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [b98 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [b99 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [b9a 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [b9b 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [b9c 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [b9d 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [b9e 06-12 02:14:44.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [b9f 06-12 02:14:44.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ba0 06-12 02:14:44.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [ba1 06-12 02:14:44.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [ba2 06-12 02:14:44.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [ba3 06-12 02:14:44.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [ba4 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [cca 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [ccb 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [ccc 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [ccd 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [cce 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [ccf 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [cd0 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [cd1 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [cd2 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [cd3 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [cd4 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cd5 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [cd7 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [cd6 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [cd8 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 51 but got ts: inc_num:1528769651824440500 seq_num:50 +peer0.org1.example.com | [cd9 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [cda 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cdb 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [cdc 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cdd 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [cde 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cdf 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [ce0 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 48 but got ts: inc_num:1528769653227426900 seq_num:47 +peer0.org1.example.com | [ce1 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [ce2 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [863 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [864 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [865 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [867 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [866 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:35808 +orderer.example.com | [868 06-12 02:15:34.90 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35808: read: connection reset by peer +orderer.example.com | [869 06-12 02:15:34.90 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35808: rpc error: code = Canceled desc = context canceled +orderer.example.com | [86a 06-12 02:15:34.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [86b 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [86c 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [86d 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [86e 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...DEAB5C3F2B3EBD93AD2D4AAAD2545770 +orderer.example.com | [86f 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E6A9D006A1C7B6643DC3CE45C7171D38302D22F0A618ED76B3D06DB22331D5CB +orderer.example.com | [870 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [871 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [872 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [873 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...DEAB5C3F2B3EBD93AD2D4AAAD2545770 +orderer.example.com | [874 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 8FBF82BAC3EFE1E8F837524BEADA97CD093D996685CB40F4722610F6AEB09510 +orderer.example.com | [875 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xda, 0xe3, 0x9f, 0x6f, 0xc0, 0x2e, 0x93, 0x8e, 0x90, 0xdd, 0xb5, 0x7a, 0xe0, 0x7e, 0xe4, 0x67, 0xd8, 0x63, 0xcf, 0x55, 0x28, 0x99, 0x61, 0x9, 0xe7, 0xbc, 0x78, 0x2a, 0x92, 0xa3, 0xa1, 0x77} txOffsets= +orderer.example.com | txId=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad locPointer=offset=70, bytesLength=2921 +orderer.example.com | ] +orderer.example.com | [876 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55527], isChainEmpty=[false], lastBlockNumber=[5] +orderer.example.com | [877 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 +orderer.example.com | [878 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +orderer.example.com | [879 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes +orderer.example.com | [87a 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +orderer.example.com | [87b 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] +orderer.example.com | [87c 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +orderer.example.com | [87d 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +orderer.example.com | [87e 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +orderer.example.com | [87f 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes +orderer.example.com | [880 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +orderer.example.com | [881 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] +orderer.example.com | [882 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +peer1.org2.example.com | [c47 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [c48 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c49 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [c4a 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [c4b 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c4c 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [c4d 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [c4e 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [c4f 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [c50 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [c51 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [c52 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [c53 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [c54 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [c55 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [c56 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [c57 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [c58 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org2.example.com | [c59 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [c5a 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > alive: +peer0.org2.example.com | [ba5 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [ba6 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [ba7 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [ba8 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [ba9 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [baa 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [bab 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bac 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [bad 06-12 02:14:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bae 06-12 02:14:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [baf 06-12 02:14:44.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [bb0 06-12 02:14:44.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [bb1 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [bb2 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [bb3 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [bb4 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [bb5 06-12 02:14:44.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bb6 06-12 02:14:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [bb7 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [bb8 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bb9 06-12 02:14:44.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [bba 06-12 02:14:44.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [bbb 06-12 02:14:44.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [bbc 06-12 02:14:44.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [bbd 06-12 02:14:44.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bbe 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [bbf 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [bc0 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [bc1 06-12 02:14:45.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e1f 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [e20 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [e21 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e22 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [e23 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e24 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [e25 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e26 06-12 02:14:53.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [e27 06-12 02:14:53.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [e28 06-12 02:14:53.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [e29 06-12 02:14:53.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [e2a 06-12 02:14:53.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e2b 06-12 02:14:53.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e2d 06-12 02:14:53.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e2e 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e2c 06-12 02:14:53.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e2f 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e30 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [e31 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [e33 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [e32 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [e34 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [e36 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [e35 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e37 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [e39 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [e3a 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e38 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [883 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +orderer.example.com | [884 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [885 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35820 +orderer.example.com | [886 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:35820 with txid 'a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710' of type ENDORSER_TRANSACTION +orderer.example.com | [887 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [888 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [889 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [88a 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [88b 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [88c 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e0 gate 1528769757285934200 evaluation starts +orderer.example.com | [88d 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [88e 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [88f 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +orderer.example.com | [890 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 principal evaluation fails +orderer.example.com | [891 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e0 gate 1528769757285934200 evaluation fails +orderer.example.com | [892 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [893 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [894 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +orderer.example.com | [895 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +orderer.example.com | [896 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +peer1.org2.example.com | [c5b 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes +peer1.org2.example.com | [c5c 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [c5d 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [c5e 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [c5f 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423d2a100 env 0xc423d108d0 txn 0 +peer1.org2.example.com | [c60 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423d108d0 +peer1.org2.example.com | [c61 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +peer1.org2.example.com | [c62 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [c63 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [c64 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org2.example.com | [c65 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [c66 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [c67 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4220b3500, header channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +peer1.org2.example.com | [c68 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [c69 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [c6a 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [c6b 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org2.example.com | [c6c 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +peer1.org2.example.com | [c6d 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [c6e 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423d27000 +peer1.org2.example.com | [c6f 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin +peer1.org2.example.com | [c70 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [c71 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +peer1.org2.example.com | [c72 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org2.example.com | [bc2 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [bc3 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bc4 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [bc5 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [bc6 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [bc7 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [bc8 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [bc9 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [bca 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [bcb 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [bcc 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [bcd 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [bce 06-12 02:14:45.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [bcf 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [bd0 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020," signature:"0E\002!\000\371\320\211\343\024\001\307\356\365\013\021\217\016A\300)n\342F*\246\210Z\252\030QO\317z\266\374`\002 %.\027\370!{\212\344\330\340\244kC\357\n\304M/\351(\252\254\370ZN\033\2607\177uO\264" > alive: alive:b%=\310-\205&S\343i\033\355\027dv!\215\371\320dCb\037Q\221P\315\337\355\002 v\333\203\377\345\n\036\254\247L7q\036.\357\327\3012\\\017\"B\024\221\277\377\226\352]\022\300N" > +peer0.org2.example.com | [bd1 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [bd2 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [bd3 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [ce3 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [ce4 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [ce5 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [ce6 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [ce7 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [ce8 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [ce9 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [cea 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [ceb 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [cec 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [cee 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [ced 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [cef 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [cf0 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [cf1 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [cf2 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [cf3 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [cf4 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [cf5 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [cf6 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [cf7 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [cf8 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [cf9 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [cfa 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [cfb 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [897 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [898 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [899 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [89a 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e8 gate 1528769757287322900 evaluation starts +orderer.example.com | [89b 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [89c 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [89d 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 principal matched by identity 0 +orderer.example.com | [89e 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 e2 7d f8 d7 37 12 3f 39 1f 8b 6c c9 1a 7a e4 dc |.}..7.?9..l..z..| +orderer.example.com | 00000010 4b 1d d2 da 61 3e a1 b2 8e 35 06 55 d9 9e db a3 |K...a>...5.U....| +orderer.example.com | [89f 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 26 63 21 a2 60 13 66 13 48 68 78 |0D. `&c!.`.f.Hhx| +orderer.example.com | 00000010 00 fb 8d 00 77 cf 0d a4 8f 13 74 6d 3b 8b 44 8c |....w.....tm;.D.| +orderer.example.com | 00000020 17 b9 13 d6 02 20 51 87 f6 8d 33 c7 c6 b6 f0 7f |..... Q...3.....| +orderer.example.com | 00000030 b1 52 80 14 8b 48 6c e8 a5 38 ef 3e c9 0c 79 dc |.R...Hl..8.>..y.| +orderer.example.com | 00000040 2a ba 3c 48 74 78 |*. DEBU 0xc42000e3e8 principal evaluation succeeds for identity 0 +orderer.example.com | [8a1 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e8 gate 1528769757287322900 evaluation succeeds +orderer.example.com | [8a2 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [8a3 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [8a4 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [8a5 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [8a6 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [8a7 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [8a8 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:35820 +orderer.example.com | [8a9 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +orderer.example.com | [8aa 06-12 02:15:57.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35820: rpc error: code = Canceled desc = context canceled +orderer.example.com | [8ab 06-12 02:15:57.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [8ac 06-12 02:15:59.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +orderer.example.com | [8ad 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8ae 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8af 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...BB3F7435FEABF64B1D4558C84C4BA32A +orderer.example.com | [8b0 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 88D4838FCAE55CC2F8E6C89C098DB66C146EB803C57B2DA67272E9355F3E9679 +orderer.example.com | [8b1 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8b2 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +orderer.example.com | [8b3 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [8b4 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...BB3F7435FEABF64B1D4558C84C4BA32A +orderer.example.com | [8b5 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 0A0736F6E0D187C6A823CE3C7429C377FC1AF974225A245EDDB517A465AAD3C5 +orderer.example.com | [8b6 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x12, 0x94, 0xe5, 0x39, 0xf6, 0xe8, 0xbe, 0xfb, 0xa0, 0xcc, 0x5d, 0x8, 0x16, 0x74, 0xa, 0xdc, 0xf, 0x11, 0x32, 0x37, 0x9b, 0x1e, 0x59, 0x66, 0x4, 0xb5, 0xd8, 0x4c, 0xce, 0xe8, 0xdd, 0x43} txOffsets= +orderer.example.com | txId=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 locPointer=offset=70, bytesLength=2915 +orderer.example.com | ] +orderer.example.com | [8b7 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60306], isChainEmpty=[false], lastBlockNumber=[6] +orderer.example.com | [8b8 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 +orderer.example.com | [8b9 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [8ba 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +orderer.example.com | [8bb 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +orderer.example.com | [8bd 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +orderer.example.com | [8be 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +orderer.example.com | [8bc 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [8bf 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +orderer.example.com | [8c0 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +orderer.example.com | [8c1 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +orderer.example.com | [8c2 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +orderer.example.com | [8c3 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [8c4 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [8c5 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [8c6 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35842 +orderer.example.com | [8c7 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35842 +orderer.example.com | [8c8 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [8c9 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [8ca 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [8cb 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [8cc 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [8cd 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [8ce 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [8cf 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150498 gate 1528769761856638900 evaluation starts +orderer.example.com | [8d0 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8d1 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [8d2 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [8d3 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [8d4 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 principal matched by identity 0 +orderer.example.com | [8d5 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f8 d9 15 94 9a 21 6a 10 93 92 36 a5 13 e6 70 c5 |.....!j...6...p.| +orderer.example.com | 00000010 fe 68 3a 63 a6 9b a5 16 ac da 7f 7d 5f ea ae 87 |.h:c.......}_...| +orderer.example.com | [8d6 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d5 09 64 28 6b 76 bb ab c7 57 d6 |0E.!...d(kv...W.| +orderer.example.com | 00000010 aa 9b 46 e9 46 6f 99 df 7a be ae eb 73 a5 78 f9 |..F.Fo..z...s.x.| +orderer.example.com | 00000020 43 ae c9 aa c8 02 20 04 f2 07 e5 ea 89 16 89 f8 |C..... .........| +orderer.example.com | 00000030 a0 0f 67 38 fe 38 40 9e b1 e7 76 1a 53 3f 88 cb |..g8.8@...v.S?..| +orderer.example.com | 00000040 14 dc a7 c9 8f 38 99 |.....8.| +orderer.example.com | [8d7 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 principal evaluation succeeds for identity 0 +orderer.example.com | [8d8 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150498 gate 1528769761856638900 evaluation succeeds +orderer.example.com | [8d9 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [8da 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [8db 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [8dc 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [8dd 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [8de 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [8df 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c7f760) start: > stop: > from 172.18.0.7:35842 +orderer.example.com | [8e0 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [8e1 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55527] +orderer.example.com | [8e2 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +orderer.example.com | [8e3 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +orderer.example.com | [8e4 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +orderer.example.com | [8e5 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c7f760) for 172.18.0.7:35842 +orderer.example.com | [8e6 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35842 for (0xc420c7f760) +orderer.example.com | [8e7 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35842 +orderer.example.com | [8e8 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35842 +orderer.example.com | [8e9 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [8ea 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [8eb 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [8ec 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [8ed 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35842: read: connection reset by peer +orderer.example.com | [8ee 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35842: rpc error: code = Canceled desc = context canceled +orderer.example.com | [8ef 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [8f0 06-12 02:16:02.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [8f1 06-12 02:16:02.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35844 +orderer.example.com | [8f2 06-12 02:16:02.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35844 +orderer.example.com | [8f3 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [8f4 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [8f5 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [8f6 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [8f7 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [8f8 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150350 gate 1528769762070653800 evaluation starts +orderer.example.com | [8f9 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [8fa 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [8fb 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 principal matched by identity 0 +orderer.example.com | [8fc 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 57 c7 93 c5 fe 21 f5 34 4e ee 30 53 e0 5f fe 23 |W....!.4N.0S._.#| +orderer.example.com | 00000010 79 ad 21 1a 30 68 18 11 47 46 8c ff b6 4f 37 0e |y.!.0h..GF...O7.| +orderer.example.com | [8fd 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 92 6b 74 4f ef 74 88 2d 3c 1c |0E.!...ktO.t.-<.| +orderer.example.com | 00000010 1e 97 b2 06 9e a0 73 03 54 c5 41 ee f5 08 8f 0a |......s.T.A.....| +orderer.example.com | 00000020 25 a9 c4 f8 52 02 20 1d e4 67 d6 d7 39 e0 40 0d |%...R. ..g..9.@.| +orderer.example.com | 00000030 2e f9 2c 41 96 2b 3e f4 7d 85 f2 58 d0 c0 c8 42 |..,A.+>.}..X...B| +orderer.example.com | 00000040 e5 4b ae 41 aa 30 03 |.K.A.0.| +orderer.example.com | [8fe 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 principal evaluation succeeds for identity 0 +orderer.example.com | [8ff 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150350 gate 1528769762070653800 evaluation succeeds +orderer.example.com | [900 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [901 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [902 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [903 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [904 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [905 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [906 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c7f840) start: > stop: > from 172.18.0.7:35844 +orderer.example.com | [907 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +peer1.org2.example.com | [c73 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [c74 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org2.example.com | [c75 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org2.example.com | [c76 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [72791b9b-d6e4-4f63-b2c2-c0e96eca1f58] +peer1.org2.example.com | [c77 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [c78 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [72791b9b-d6e4-4f63-b2c2-c0e96eca1f58] +peer1.org2.example.com | [c79 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer1.org2.example.com | [c7a 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: +peer1.org2.example.com | [c7b 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac appears to be valid +peer1.org2.example.com | [c7c 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423d27000 +peer1.org2.example.com | [c7d 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423d2a100 env 0xc423d108d0 txn 0 +peer1.org2.example.com | [c7e 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [c7f 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [c80 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +peer1.org2.example.com | [c81 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [c82 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +peer1.org2.example.com | [c83 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [c84 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer1.org2.example.com | [c85 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [c86 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer1.org2.example.com | [c87 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] marked as valid by state validator +peer1.org2.example.com | [c88 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [c89 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [c8a 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [c8b 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc423d769c0)} +peer1.org2.example.com | [c8c 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] +peer1.org2.example.com | [c8d 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +peer1.org2.example.com | [c8e 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +peer1.org2.example.com | [c8f 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} +peer1.org2.example.com | [c90 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +peer1.org2.example.com | [c91 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} +peer1.org2.example.com | [c92 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc4203c57a0})} +peer1.org2.example.com | [c93 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +peer1.org2.example.com | [c94 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] +peer1.org2.example.com | [c95 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x85, 0xcf, 0x9e, 0x4c, 0xc1, 0xd7, 0xb8, 0xde, 0x8c, 0xf1, 0x23, 0x5e, 0x4b, 0x7f, 0x6f, 0x1d, 0xcc, 0x70, 0x69, 0xaa, 0x7e, 0x1a, 0x8e, 0x7b, 0x90, 0x1f, 0x84, 0xc8, 0xe2, 0xfb, 0xcd, 0x8} txOffsets= +peer1.org2.example.com | txId=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac locPointer=offset=70, bytesLength=3459 +peer1.org2.example.com | ] +peer1.org2.example.com | [c96 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to index +peer1.org2.example.com | [c97 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx number:[0] ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to blockNumTranNum index +peer1.org2.example.com | [c98 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45423], isChainEmpty=[false], lastBlockNumber=[3] +peer1.org2.example.com | [c99 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] +peer1.org2.example.com | [c9a 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] +peer1.org2.example.com | [c9b 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +peer1.org2.example.com | [c9c 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +peer1.org2.example.com | [c9d 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [c9e 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org2.example.com | [c9f 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [ca0 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org2.example.com | [ca1 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org2.example.com | [ca2 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer1.org2.example.com | [ca3 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [ca4 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [4] +peer1.org2.example.com | [ca5 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] +peer1.org2.example.com | [ca7 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [4] +peer1.org2.example.com | [ca6 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [968d2772-f0aa-4b7a-8ed9-4d284bb993f5] +peer1.org2.example.com | [ca9 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer1.org2.example.com | [caa 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org2.example.com | [ca8 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] +peer1.org2.example.com | [cab 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [cac 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] +peer1.org2.example.com | [cad 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [968d2772-f0aa-4b7a-8ed9-4d284bb993f5] +peer1.org2.example.com | [cae 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] +peer1.org2.example.com | [caf 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org2.example.com | [cb0 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [cb1 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac +peer1.org2.example.com | [cb2 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [cb3 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [cb4 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [cb5 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [cb6 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [cb7 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [cb9 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [cba 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [cbb 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [cb8 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +peer1.org2.example.com | [cbc 06-12 02:14:51.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [cbd 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [cbe 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [cc0 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [cc1 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [cc2 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [cc3 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [cbf 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [cc4 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [cc5 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [cc6 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [cc7 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [cc8 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [cc9 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [cca 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [ccb 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [ccc 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [ccd 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [cce 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ccf 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [cd0 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [cd1 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [cd2 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [cd3 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [cd4 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [cd5 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [cd6 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [bd4 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [bd5 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [bd6 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bd7 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [bd8 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [bd9 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [bda 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [bdb 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [bdc 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [bdd 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [bde 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [bdf 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [be0 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [be1 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [be2 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [be3 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [be4 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [be5 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [be6 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [be7 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [be8 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [be9 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bea 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [beb 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [bec 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [bed 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [bee 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [bf0 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bef 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [bf1 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [bf2 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [bf3 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [bf4 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [bf5 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [bf6 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [bf7 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [bf8 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [bf9 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [bfa 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [bfb 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [bfc 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [bfd 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [bfe 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [bff 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [c00 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c02 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c01 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c03 06-12 02:14:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [c04 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [cfc 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [cfd 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [cfe 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [cff 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [d00 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [d01 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [d02 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [d03 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [d04 06-12 02:14:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d05 06-12 02:14:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [d06 06-12 02:14:48.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d07 06-12 02:14:48.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [d08 06-12 02:14:48.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d09 06-12 02:14:48.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [d0a 06-12 02:14:48.20 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [d0b 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [d0c 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [d0d 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [d0e 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org1.example.com | [d0f 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d10 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d11 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [d12 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d14 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d15 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d16 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [d17 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [d18 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [e3b 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e3c 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [e3d 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [e3e 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e3f 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [e40 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [e41 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [e42 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e43 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [e44 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [e45 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [e46 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e47 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [e48 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [c05 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c06 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c07 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c08 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c0a 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [c09 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c0b 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [c0c 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c0d 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c0e 06-12 02:14:47.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [c0f 06-12 02:14:47.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [c10 06-12 02:14:47.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [c12 06-12 02:14:47.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [c13 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [c15 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c11 06-12 02:14:47.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c14 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c16 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c17 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c18 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c19 06-12 02:14:47.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [c1a 06-12 02:14:47.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [c1b 06-12 02:14:47.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [c1c 06-12 02:14:47.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [c1d 06-12 02:14:47.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [c1e 06-12 02:14:47.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c1f 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [c20 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [c21 06-12 02:14:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [c22 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [c23 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c24 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [c25 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [c26 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c27 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [c28 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c29 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [c2a 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [c2b 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [c2c 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [c2d 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [c2e 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [c2f 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [c30 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [c31 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [c32 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [e49 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [e4b 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [e4c 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e4d 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e4a 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [e4e 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [e4f 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [e50 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [e51 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [e52 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e53 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [e54 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e55 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [e56 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [e58 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [e59 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [e57 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [e5a 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [e5c 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [e5d 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e5b 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org1.example.com | [e5e 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e5f 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [e60 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [e61 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [e62 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [e63 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [e64 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [e65 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e66 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [e67 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [e68 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [e69 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e6a 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [e6b 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [e6c 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [e6d 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [e6e 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [e6f 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [e70 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [e71 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e72 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [e73 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [e74 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [e75 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [e76 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e77 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [d19 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [d1a 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [d1b 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [d1c 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [d1d 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [d13 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d1e 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d1f 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [d20 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d21 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d22 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [d23 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d24 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d25 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [d26 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d27 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d28 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [d29 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [d2a 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [d2b 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d2d 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [d2c 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d2e 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [d2f 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [d30 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d31 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [908 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55527] +orderer.example.com | [909 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +orderer.example.com | [90a 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +orderer.example.com | [90b 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +orderer.example.com | [90c 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c7f840) for 172.18.0.7:35844 +orderer.example.com | [90d 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35844 for (0xc420c7f840) +orderer.example.com | [90e 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35844 +orderer.example.com | [90f 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35844 +orderer.example.com | [910 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [911 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [912 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [913 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [914 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [915 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [916 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [917 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [918 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [919 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1528769762077649800 evaluation starts +orderer.example.com | [91a 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [91b 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [91c 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 +orderer.example.com | [91d 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 27 2a 94 64 11 1f c8 75 a8 08 67 a3 75 15 f3 f4 |'*.d...u..g.u...| +orderer.example.com | 00000010 55 97 85 da 55 c3 4a c4 f1 60 16 1c e3 6a 75 38 |U...U.J..`...ju8| +orderer.example.com | [91e 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5d c9 44 04 32 8d 77 a2 d8 59 ac a2 |0D. ].D.2.w..Y..| +orderer.example.com | 00000010 04 3b 2c 69 bb 0b 78 bf de 13 26 63 ac 96 34 be |.;,i..x...&c..4.| +orderer.example.com | 00000020 1d 82 f0 d7 02 20 6d 53 f2 d9 68 e9 05 59 8a c6 |..... mS..h..Y..| +orderer.example.com | 00000030 49 f0 dc 85 7a 6e ad 39 a9 cb 1d 6a 88 fa 5c 42 |I...zn.9...j..\B| +orderer.example.com | 00000040 ce 3f 44 28 cd 1e |.?D(..| +orderer.example.com | [91f 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 +orderer.example.com | [920 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1528769762077649800 evaluation succeeds +orderer.example.com | [921 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [922 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [923 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [924 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [925 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [926 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [927 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201115a0) start: > stop: > from 172.18.0.7:35844 +orderer.example.com | [928 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [929 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] +orderer.example.com | [92a 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34227], Going to peek [8] bytes +orderer.example.com | [92b 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +orderer.example.com | [92c 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +orderer.example.com | [92d 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201115a0) for 172.18.0.7:35844 +orderer.example.com | [92e 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35844 for (0xc4201115a0) +orderer.example.com | [92f 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35844 +orderer.example.com | [930 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35844 +orderer.example.com | [931 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [932 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [933 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [934 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [935 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35844: rpc error: code = Canceled desc = context canceled +orderer.example.com | [936 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [937 06-12 02:16:02.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [938 06-12 02:16:02.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35846 +orderer.example.com | [939 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35846 +orderer.example.com | [93a 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [93b 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [93c 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [93d 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [93e 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [93f 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a8 gate 1528769762212211500 evaluation starts +orderer.example.com | [940 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [941 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [942 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 principal matched by identity 0 +orderer.example.com | [943 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 77 78 13 f3 6f 5c 27 01 28 57 20 18 4d 9a 5f 94 |wx..o\'.(W .M._.| +orderer.example.com | 00000010 67 cf 0b 4c b5 5f 10 61 9f 7c 1c 1f fd 90 c5 67 |g..L._.a.|.....g| +orderer.example.com | [944 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 88 0b 05 24 80 37 48 a0 be b1 ad |0E.!....$.7H....| +orderer.example.com | 00000010 44 6c 98 aa 3e 9c 78 18 fa e3 3d bd 35 b7 19 c9 |Dl..>.x...=.5...| +orderer.example.com | 00000020 6f fd 51 05 d2 02 20 31 08 8b 49 5c ca 1c 25 ef |o.Q... 1..I\..%.| +orderer.example.com | 00000030 0f a6 3a 6a d0 5d 9a 6f f4 0f 32 06 56 49 85 1e |..:j.].o..2.VI..| +orderer.example.com | 00000040 a1 9b db d0 9a 23 3a |.....#:| +orderer.example.com | [945 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 principal evaluation succeeds for identity 0 +orderer.example.com | [946 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a8 gate 1528769762212211500 evaluation succeeds +orderer.example.com | [947 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [948 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [949 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [94a 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [94b 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [94c 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [94d 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202729e0) start: > stop: > from 172.18.0.7:35846 +orderer.example.com | [94e 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [94f 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +orderer.example.com | [950 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60306], Going to peek [8] bytes +orderer.example.com | [951 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [952 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +orderer.example.com | [953 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202729e0) for 172.18.0.7:35846 +orderer.example.com | [954 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35846 for (0xc4202729e0) +orderer.example.com | [955 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35846 +orderer.example.com | [956 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35846 +orderer.example.com | [957 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [958 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [959 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [95a 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [95b 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35846: rpc error: code = Canceled desc = context canceled +orderer.example.com | [95c 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [95d 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [95e 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35848 +orderer.example.com | [95f 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35848 +orderer.example.com | [960 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [961 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [962 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [963 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [964 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [965 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769762404677100 evaluation starts +orderer.example.com | [966 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [967 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [968 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal matched by identity 0 +orderer.example.com | [969 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 fd 14 22 b3 71 9e 2a 74 3d a0 da 28 5c e8 27 f3 |..".q.*t=..(\.'.| +orderer.example.com | 00000010 3b 85 31 98 73 0e d0 32 f8 18 91 b0 be bf 0b fb |;.1.s..2........| +orderer.example.com | [96a 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d9 4d d5 d6 de 08 b7 c9 b5 8a e5 |0E.!..M.........| +orderer.example.com | 00000010 3a 9c fa 2b 89 ed 22 f2 43 d1 e4 a2 31 75 33 90 |:..+..".C...1u3.| +orderer.example.com | 00000020 d2 42 16 19 33 02 20 1a 07 22 a8 0b 6c d3 a1 6a |.B..3. .."..l..j| +orderer.example.com | 00000030 03 5e 87 3e 57 3a 99 d4 4c 74 80 11 51 0f 0c f0 |.^.>W:..Lt..Q...| +orderer.example.com | 00000040 54 ba 87 ad be 73 91 |T....s.| +orderer.example.com | [96b 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal evaluation succeeds for identity 0 +orderer.example.com | [96c 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769762404677100 evaluation succeeds +orderer.example.com | [96d 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [96e 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [96f 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [970 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [971 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [972 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [973 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420273aa0) start: > stop: > from 172.18.0.7:35848 +orderer.example.com | [974 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [975 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12121] +orderer.example.com | [976 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48185], Going to peek [8] bytes +orderer.example.com | [977 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13956], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +peer1.org1.example.com | [e78 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [e79 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e7a 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e7b 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [e7c 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 57 but got ts: inc_num:1528769652088169500 seq_num:56 +peer1.org1.example.com | [e7d 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e7e 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [e7f 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [e80 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 59 but got ts: inc_num:1528769652429776900 seq_num:58 +peer1.org1.example.com | [e81 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e82 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [e83 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [e84 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [e85 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [e86 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [e87 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [e88 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [e89 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e8a 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [e8b 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org1.example.com | [e8d 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [e8e 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [e8c 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e8f 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [e90 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e91 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [c33 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > alive:TN\257\313\267\327n\330\017\213\271\202h\245\0104\270>\343\000\250u\352\315\355\256J4\200\2226" secret_envelope: > +peer0.org2.example.com | [c34 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org2.example.com | [c35 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c36 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [c37 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [c38 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [c39 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c3a 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [c3b 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c3c 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [c3d 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c3e 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [c3f 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [c40 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [c41 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [c42 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [c43 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [c44 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [c45 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [c46 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [c47 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [c48 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > alive: alive: +peer0.org2.example.com | [c49 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [c4a 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c4b 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [c4c 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c4d 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c4e 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [c4f 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c50 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c51 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c52 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [c53 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [c54 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [c55 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [c56 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [c57 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [c58 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [c59 06-12 02:14:48.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [c5a 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [c5b 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c5c 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c5d 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [c5e 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c60 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c5f 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c61 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c62 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [c63 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c64 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c65 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [c66 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c67 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [c68 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c69 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [c6a 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [c6b 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [c6c 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c6d 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [c6e 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [c6f 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [c70 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [c71 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [c72 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [c74 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c73 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [c75 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [c77 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c76 06-12 02:14:48.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [c78 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c79 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [c7a 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [c7b 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c7c 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [c7d 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [c7e 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c7f 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [c80 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [c81 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [c82 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c83 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\3611\242\260\234\255r\330\334\007h\002 \002\000b\346_\344\302\363\342\226\316\216z\226\304\266fZ\224?\022J\003\350s\212\230\021w\344S\261" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [c84 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [c85 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [c86 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [c88 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c87 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [c8a 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c89 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [c8b 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [c8c 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [c8d 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [c8e 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [c8f 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [c90 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [c91 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [c93 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [c92 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [c94 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [c95 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [c96 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [c97 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [c98 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [c99 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [c9a 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [c9b 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [c9c 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [c9d 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [c9e 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [c9f 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ca1 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [ca0 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ca2 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [ca3 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ca4 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [ca5 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ca6 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [ca7 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [ca8 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ca9 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [caa 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 52 but got ts: inc_num:1528769651824440500 seq_num:50 +peer0.org2.example.com | [cab 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [cac 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [cad 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [cae 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [caf 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [cb0 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [cb1 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [cb2 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [cb3 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [cb4 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [cb5 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [cb6 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [cb7 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [cb8 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [cb9 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [cba 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [cbb 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [cd7 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [cd8 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [cd9 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [cda 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [cdb 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [cdc 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [cdd 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [cdf 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [cde 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ce1 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ce2 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ce3 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ce0 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ce4 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ce5 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org2.example.com | [ce6 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ce7 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org2.example.com | [ce8 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ce9 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [cea 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ceb 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [cec 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [ced 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [cee 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [cef 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [cf0 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [cf1 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [cf2 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [cf3 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [cf4 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [cf5 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [cf6 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [cf7 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [cf8 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [cf9 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [cfb 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [cfa 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [cfd 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [cfc 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [cfe 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [cff 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 55 but got ts: inc_num:1528769652429776900 seq_num:53 +peer1.org2.example.com | [d00 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d01 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d02 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [d03 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d04 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d05 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d06 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [d07 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [d08 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [d09 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [d0a 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [d0b 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [d0c 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d0d 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d0e 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [d10 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d0f 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d11 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [d12 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 55 but got ts: inc_num:1528769652429776900 seq_num:54 +peer1.org2.example.com | [d13 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d14 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d15 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [d16 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 51 but got ts: inc_num:1528769652088169500 seq_num:50 +peer1.org2.example.com | [d17 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d18 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d19 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [d1a 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d1b 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d1c 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d1d 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [d32 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [d33 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [d34 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d35 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [d36 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [d37 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [d38 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [d39 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d3a 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [d3b 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [d3c 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d3d 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [d3e 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d3f 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [d40 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [d41 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [d42 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [d43 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [d44 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [d45 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [d46 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [d47 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [d48 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [978 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13956] read from file [0] +orderer.example.com | [979 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420273aa0) for 172.18.0.7:35848 +orderer.example.com | [97a 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35848 for (0xc420273aa0) +orderer.example.com | [97b 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35848 +orderer.example.com | [97c 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35848 +orderer.example.com | [97d 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [97e 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +peer1.org1.example.com | [e92 06-12 02:14:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [e93 06-12 02:14:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [e94 06-12 02:14:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [e95 06-12 02:14:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [e96 06-12 02:14:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [e97 06-12 02:14:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [e98 06-12 02:14:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [e99 06-12 02:14:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [e9a 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [e9b 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [e9c 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [e9d 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [e9e 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [e9f 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ea0 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [ea1 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [ea2 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [ea3 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [ea4 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [ea5 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [ea6 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [ea7 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [d1e 06-12 02:14:51.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [d1f 06-12 02:14:51.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [d20 06-12 02:14:51.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [d21 06-12 02:14:51.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [d22 06-12 02:14:51.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [d23 06-12 02:14:51.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d24 06-12 02:14:51.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d25 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d26 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [d27 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d28 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d29 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d2a 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [d2b 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [d2c 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [d2d 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [d2e 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [d2f 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [d30 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d31 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d32 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [d33 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [d34 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [d35 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d36 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [cbc 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 52 but got ts: inc_num:1528769651824440500 seq_num:51 +peer0.org2.example.com | [cbd 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [cbe 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [cbf 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [cc0 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [cc1 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [cc2 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [cc3 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [cc4 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [cc5 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [cc6 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [cc7 06-12 02:14:48.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [cc8 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [cc9 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [ccb 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [cca 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [ccc 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [ccd 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [cce 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [ccf 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [cd0 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [cd1 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [cd2 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [cd3 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [cd4 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org2.example.com | [cd5 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [cd6 06-12 02:14:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [cd7 06-12 02:14:48.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [cd8 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [cd9 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [cda 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer1.org1.example.com | [ea8 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [ea9 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [eaa 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [eab 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [ead 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [eae 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [eac 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020:" signature:"0E\002!\000\327\314f\267\331\220\303jh\276\343\235n\023\001\204\013w\025\316\252\204\346(\250\326b\036\274\320\244w\002 `\346\372\242\217\211\371u\324u\n0X5*\211T\363\010`\376%Re\300\372>\215\245W\262\n" > alive: alive: +peer1.org1.example.com | [eaf 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [eb0 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [eb1 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [eb2 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [eb3 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [eb4 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [eb5 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [eb6 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [eb7 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [eb8 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [eb9 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [eba 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [d37 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d38 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d39 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [d3a 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d3b 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d3c 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d3d 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [d3f 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d40 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d3e 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d41 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [d42 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d43 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [d44 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d45 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [d46 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [d47 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [d48 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [d49 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [d4a 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [d4b 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d4c 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d4d 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [d4e 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [d49 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0201" signature:"0D\002 >\033>ZY\371\366(\023\r\244\244\255\364\220\256W\357\377\276\001\223\373\356\030P\260\367\023\264\r\367\002 #BL\177\0364+\275\335\313U\203\202\253~#q\351@\236\027y,\030c_\337s;\0323\366" > +peer0.org1.example.com | [d4a 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [d4b 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [d4c 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 +peer0.org1.example.com | [d4d 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) +peer0.org1.example.com | [d4e 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [d4f 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [d50 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d51 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +peer0.org1.example.com | [d52 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer0.org1.example.com | [d53 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer0.org1.example.com | [d54 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer0.org1.example.com | [d55 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 +peer0.org1.example.com | [d56 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer0.org1.example.com | [d57 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" +peer0.org1.example.com | [d58 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" +peer0.org1.example.com | [d59 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" +peer0.org1.example.com | [d5a 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer0.org1.example.com | [d5b 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer0.org1.example.com | [d5c 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [d5d 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [d5e 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] handling PUT_STATE from chaincode +peer0.org1.example.com | [d5f 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [d60 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [d61 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] handling PUT_STATE from chaincode +peer0.org1.example.com | [d62 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] Completed PUT_STATE. Sending RESPONSE +orderer.example.com | [97f 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [980 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [981 06-12 02:16:02.41 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35848: rpc error: code = Canceled desc = context canceled +orderer.example.com | [982 06-12 02:16:02.41 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [983 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [984 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35850 +orderer.example.com | [985 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35850 +orderer.example.com | [986 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [987 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [988 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [989 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [98a 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [98b 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503f0 gate 1528769762578190000 evaluation starts +orderer.example.com | [98c 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [98d 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [98e 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 principal matched by identity 0 +orderer.example.com | [98f 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 1e 87 11 ab f1 60 83 41 42 dd 05 6c 20 2f a0 63 |.....`.AB..l /.c| +orderer.example.com | 00000010 ed 81 eb c3 76 79 b1 c5 d6 20 31 fa ae 55 a4 4e |....vy... 1..U.N| +orderer.example.com | [990 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8f cd 93 44 0e dd dd be 29 0c be |0E.!....D....)..| +orderer.example.com | 00000010 6b 3b 2a 13 3c 16 e7 f6 b9 5c 22 ea 39 f9 81 1a |k;*.<....\".9...| +orderer.example.com | 00000020 61 1e 32 b1 94 02 20 54 60 34 13 7a 0f 93 49 68 |a.2... T`4.z..Ih| +orderer.example.com | 00000030 e9 6b 49 6a 94 1f 9c d9 7c b9 70 a9 3f ca a6 a7 |.kIj....|.p.?...| +orderer.example.com | 00000040 a1 e4 4e 4f 8a 41 27 |..NO.A'| +orderer.example.com | [991 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 principal evaluation succeeds for identity 0 +orderer.example.com | [992 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503f0 gate 1528769762578190000 evaluation succeeds +peer1.org2.example.com | [d50 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [d4f 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > alive: +peer1.org2.example.com | [d51 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d52 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d53 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [d54 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d55 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [d56 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d57 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [d58 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d59 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d5a 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d5b 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d5c 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d5d 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [d5e 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d5f 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [d63 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [d64 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [bec9b07b] notifying Txid:bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, channelID:businesschannel +peer0.org1.example.com | [d65 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [d66 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] Exit +peer0.org1.example.com | [d67 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [d68 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +peer0.org1.example.com | [d69 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][bec9b07b] Exit +peer0.org1.example.com | [d6a 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][bec9b07b] Entry chaincode: name:"lscc" +peer0.org1.example.com | [d6b 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][bec9b07b] escc for chaincode name:"lscc" is escc +peer0.org1.example.com | [d6c 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, chaincode: lscc} +peer0.org1.example.com | [d6d 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, chaincode: lscc} +peer0.org1.example.com | [d6e 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][bec9b07b] Exit +peer0.org1.example.com | [d6f 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +peer0.org1.example.com | [d70 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44248 +peer0.org1.example.com | [d71 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [d72 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [d73 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d74 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [d75 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [d76 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [d77 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [d78 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [d79 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ebb 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [ebc 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [ebd 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [ebe 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [ebf 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [ec0 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [ec1 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [ec2 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [ec3 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > alive: > +peer1.org1.example.com | [ec4 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [ec5 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ec6 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [ec7 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [ec8 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ec9 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [eca 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [ecb 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [ecc 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [ecd 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ece 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [ecf 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [ed0 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [ed1 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ed2 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ed3 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [d60 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d61 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d62 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d63 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d64 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d65 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [d66 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [d67 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d68 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d69 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d6a 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d6b 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [d6c 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d6d 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d6e 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d6f 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d70 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [d71 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d72 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d73 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [d74 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d75 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d76 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [cdb 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [cdc 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +peer0.org2.example.com | [cdd 06-12 02:14:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [cde 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [cdf 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [ce0 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ce1 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:59436 +peer0.org2.example.com | [ce2 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423b29b90 +peer0.org2.example.com | [ce3 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [ce4 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [ce5 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org2.example.com | [ce6 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [ce7 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [ce8 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423b11950, header 0xc423b29ef0 +peer0.org2.example.com | [ce9 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org2.example.com | [cea 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][1770949c] processing txid: 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 +peer0.org2.example.com | [ceb 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +peer0.org2.example.com | [cec 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [ced 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +peer0.org2.example.com | [cee 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][1770949c] Entry chaincode: name:"lscc" +peer0.org2.example.com | [cef 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled +peer0.org2.example.com | [cf0 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org2.example.com | [cf1 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046,syscc=true,proposal=0xc423b11950,canname=lscc:1.2.0) +peer0.org2.example.com | [cf2 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +orderer.example.com | [993 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [994 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [995 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [996 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [997 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [998 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [999 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4206f4ce0) start: > stop: > from 172.18.0.7:35850 +orderer.example.com | [99a 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [99b 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] +orderer.example.com | [99c 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34227], Going to peek [8] bytes +orderer.example.com | [99d 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +orderer.example.com | [99e 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +orderer.example.com | [99f 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4206f4ce0) for 172.18.0.7:35850 +orderer.example.com | [9a0 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35850 for (0xc4206f4ce0) +orderer.example.com | [9a1 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35850 +orderer.example.com | [9a2 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35850 +orderer.example.com | [9a3 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9a4 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [9a5 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9a6 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [9a7 06-12 02:16:02.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35850: rpc error: code = Canceled desc = context canceled +orderer.example.com | [9a8 06-12 02:16:02.59 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [9a9 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [9aa 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35852 +orderer.example.com | [9ab 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35852 +orderer.example.com | [9ac 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [9ad 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9ae 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [9af 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9b0 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org2.example.com | [d77 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [d78 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [d79 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [d7a 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [d7b 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [d7c 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [d7d 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d7e 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d7f 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [d80 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [d81 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [d82 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d83 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [d84 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [d85 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d86 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d87 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d88 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d89 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [d8a 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d8b 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [d7a 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [d7b 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [d7c 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [d7d 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [d7e 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [d7f 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [d80 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [d81 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [d82 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [d83 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [d84 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [d85 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0202" signature:"0E\002!\000\3540\267\246@\305\253\203\335\321\221H\001\235R\330/\277\025\0312\004\311-i\030\265\326\021[\215)\002 $\337\354,\277j\204\324\2356,N\310\"\264\006 \341\031\254\000e\231]\355\266\"m\316k\027\025" secret_envelope: > +peer0.org1.example.com | [d86 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [d87 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [d88 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [d89 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org1.example.com | [d8a 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer0.org1.example.com | [d8b 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [d8c 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f85cc0 env 0xc4232406c0 txn 0 +peer0.org1.example.com | [d8d 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4232406c0 +peer0.org1.example.com | [d8e 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +peer0.org1.example.com | [d8f 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [d90 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [d91 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [d92 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [d93 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [d94 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423730a80, header channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +peer0.org1.example.com | [d95 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [d96 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [d97 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [d98 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org1.example.com | [d9a 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [d99 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +peer0.org1.example.com | [d9b 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [d9c 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423996000 +peer0.org1.example.com | [d9d 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin +peer0.org1.example.com | [d9e 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [d9f 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [da0 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes +peer0.org1.example.com | [da1 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [da2 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [da3 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [da4 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [da5 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org1.example.com | [da6 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [da7 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [c9c4785e-075a-48fa-a7be-975cf531a956] +orderer.example.com | [9b1 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1528769762748404200 evaluation starts +orderer.example.com | [9b2 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9b3 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9b4 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal matched by identity 0 +orderer.example.com | [9b5 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 56 da b8 d7 13 a9 63 c6 d8 1f 95 a1 19 02 7e a3 |V.....c.......~.| +orderer.example.com | 00000010 e6 c8 e4 6f 88 1f 55 44 71 80 db 7a d3 fc 27 83 |...o..UDq..z..'.| +orderer.example.com | [9b6 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 17 b0 05 c7 02 46 e9 79 32 a2 87 7a |0D. .....F.y2..z| +orderer.example.com | 00000010 67 4d 23 25 02 b9 14 05 f1 45 40 03 52 01 f8 2f |gM#%.....E@.R../| +orderer.example.com | 00000020 0f fc 9d 61 02 20 4a 45 42 16 ad fb 45 0e 62 4d |...a. JEB...E.bM| +orderer.example.com | 00000030 fa af e9 d1 16 bf ad 6e b5 36 12 ac f3 26 c0 ba |.......n.6...&..| +orderer.example.com | 00000040 95 c6 ae 5c 9e 74 |...\.t| +orderer.example.com | [9b7 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal evaluation succeeds for identity 0 +orderer.example.com | [9b8 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1528769762748404200 evaluation succeeds +orderer.example.com | [9b9 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9ba 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9bb 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [9bc 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [9bd 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [9be 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [9bf 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42040cf00) start: > stop: > from 172.18.0.7:35852 +orderer.example.com | [9c0 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [9c1 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40095] +orderer.example.com | [9c2 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20211], Going to peek [8] bytes +orderer.example.com | [9c3 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[40095], bytesOffset=[40097]} +orderer.example.com | [9c4 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] +orderer.example.com | [9c5 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42040cf00) for 172.18.0.7:35852 +orderer.example.com | [9c6 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35852 for (0xc42040cf00) +orderer.example.com | [9c7 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35852 +orderer.example.com | [9c9 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35852 +orderer.example.com | [9c8 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9ca 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [9cb 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9cc 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [9cd 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35852: rpc error: code = Canceled desc = context canceled +orderer.example.com | [9ce 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [9cf 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [9d0 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35854 +orderer.example.com | [9d1 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35854 +orderer.example.com | [9d2 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [9d3 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9d4 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [9d5 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9d6 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [9d7 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769762901954300 evaluation starts +orderer.example.com | [9d8 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9d9 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [9da 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 principal matched by identity 0 +orderer.example.com | [9db 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bd ef 25 52 49 6b 4d 77 ce 66 83 4a 9d e6 7a d5 |..%RIkMw.f.J..z.| +orderer.example.com | 00000010 bb 39 cd 42 14 f0 e4 4d ed fc 7f 2d d5 01 ee 7c |.9.B...M...-...|| +orderer.example.com | [9dc 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 66 17 64 fc a0 3c 66 c5 ff e8 55 15 |0D. f.d.. DEBU 0xc42000e1d8 principal evaluation succeeds for identity 0 +orderer.example.com | [9de 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769762901954300 evaluation succeeds +orderer.example.com | [9df 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9e0 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [9e1 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [9e2 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [9e3 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [9e4 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [9e5 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203ec820) start: > stop: > from 172.18.0.7:35854 +orderer.example.com | [9e6 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [9e7 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45419] +orderer.example.com | [9e8 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14887], Going to peek [8] bytes +orderer.example.com | [9e9 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5321], placementInfo={fileNum=[0], startOffset=[45419], bytesOffset=[45421]} +orderer.example.com | [9ea 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5321] read from file [0] +orderer.example.com | [9eb 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203ec820) for 172.18.0.7:35854 +orderer.example.com | [9ec 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35854 for (0xc4203ec820) +orderer.example.com | [9ed 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35854 +orderer.example.com | [9ef 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35854 +orderer.example.com | [9ee 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9f0 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [9f1 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [9f2 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [9f3 06-12 02:16:02.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35854: rpc error: code = Canceled desc = context canceled +orderer.example.com | [9f4 06-12 02:16:02.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [9f5 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [9f6 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35856 +orderer.example.com | [9f7 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35856 +orderer.example.com | [9f8 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [9f9 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9fa 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [9fb 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [9fc 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [9fd 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504e8 gate 1528769763064003300 evaluation starts +orderer.example.com | [9fe 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [9ff 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a00 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 principal matched by identity 0 +orderer.example.com | [a01 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9a 33 3d c2 f9 90 a3 08 2b 34 e7 a4 30 98 b1 1f |.3=.....+4..0...| +orderer.example.com | 00000010 10 ae 76 91 56 ca 44 c8 ce df ca a2 b7 24 37 c3 |..v.V.D......$7.| +orderer.example.com | [a02 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 c7 a9 4c 14 58 44 c4 b4 59 8d ad |0D. x..L.XD..Y..| +orderer.example.com | 00000010 df 4b 75 57 6e 57 2e aa c9 9d e2 f5 86 20 86 fc |.KuWnW....... ..| +orderer.example.com | 00000020 bf 58 58 3c 02 20 1f 5d af 07 c3 a4 a6 be 3c 0c |.XX<. .]......<.| +orderer.example.com | 00000030 41 43 40 9c 12 a6 a2 83 8a 97 9a 95 0b 7f b8 cd |AC@.............| +orderer.example.com | 00000040 9e 40 37 a4 0b 16 |.@7...| +orderer.example.com | [a03 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 principal evaluation succeeds for identity 0 +orderer.example.com | [a04 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504e8 gate 1528769763064003300 evaluation succeeds +orderer.example.com | [a05 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a06 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a07 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a08 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a09 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [d8c 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [d8d 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [d8e 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [d8f 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [d90 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [d91 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [d92 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [d93 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [d94 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d95 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [d96 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [d97 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer1.org2.example.com | [d98 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [d99 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [d9a 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d9b 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [d9c 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [d9d 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [d9f 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [da0 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [d9e 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [da1 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [da2 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [da3 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [da4 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [da5 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [da6 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [da7 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [da8 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [da9 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [daa 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [dab 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [dac 06-12 02:14:52.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [dad 06-12 02:14:52.59 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [dae 06-12 02:14:52.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org2.example.com | [daf 06-12 02:14:52.59 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org2.example.com | [db0 06-12 02:14:52.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org2.example.com | [db1 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [db2 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [db3 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [db4 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [db5 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [db6 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [db7 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [db8 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org2.example.com | [db9 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [dba 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [dbb 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [dbc 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [dbe 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [dbd 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [dbf 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [dc0 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [dc1 06-12 02:14:52.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [dc2 06-12 02:14:52.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [dc3 06-12 02:14:52.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [dc4 06-12 02:14:52.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [dc5 06-12 02:14:52.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [dc6 06-12 02:14:52.78 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [dc7 06-12 02:14:52.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes +peer1.org2.example.com | [dc8 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [dc9 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [dca 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [dcb 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [dcc 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [dcd 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org2.example.com | [dce 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org2.example.com | [dcf 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [dd0 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 8871544096824663435, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes +peer1.org2.example.com | [dd1 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [dd2 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 8871544096824663435, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes +peer1.org2.example.com | [dd3 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [dd4 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [dd5 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [dd6 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [dd7 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [dd8 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [dd9 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [dda 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ddb 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [ddc 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [ddd 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [dde 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [ddf 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [de0 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [de1 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [de2 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [de3 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [de4 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [de5 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [de6 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [de7 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [de8 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [de9 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [dea 06-12 02:14:52.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [deb 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [dec 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [ded 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [dee 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [def 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [df0 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [df1 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [df2 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [df4 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [df5 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [df6 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [df3 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [df7 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [df8 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [df9 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [dfa 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [dfb 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [dfc 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [dfd 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [dfe 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [dff 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [e00 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [e03 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [e02 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e04 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e05 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [e06 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e01 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e07 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e08 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e09 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [ed4 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [ed6 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [ed7 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [ed5 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ed8 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ed9 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [eda 06-12 02:14:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [edb 06-12 02:14:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [edc 06-12 02:14:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [edd 06-12 02:14:56.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [ede 06-12 02:14:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [edf 06-12 02:14:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [ee0 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ee1 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [ee2 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [ee3 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [ee4 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [ee5 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [ee6 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [ee7 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [ee8 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [ee9 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [eea 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [eeb 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [eec 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [eed 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [eee 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [eef 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [ef0 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [ef1 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [ef2 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [ef3 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [ef4 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [ef5 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [ef7 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [ef8 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [ef9 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > alive: +peer1.org1.example.com | [efa 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [efb 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ef6 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [efc 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [efd 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [efe 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [eff 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [f00 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f01 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f02 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [f03 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f04 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f05 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f06 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [f07 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [f08 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [f09 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [f0a 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [f0b 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [f0c 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f0d 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [f0e 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [f0f 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [f10 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f11 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f12 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f13 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f14 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f15 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f16 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [f17 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f18 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f19 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f1b 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [cf3 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [cf4 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1770949c]Received message TRANSACTION from peer +peer0.org2.example.com | [cf5 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1770949c] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [cf6 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1770949c] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org2.example.com | [cf7 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [1770949c] Sending GET_STATE +peer0.org2.example.com | [cf8 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1770949c] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [cf9 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1770949c] handling GET_STATE from chaincode +peer0.org2.example.com | [cfa 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [1770949c] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org2.example.com | [cfb 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [cfc 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [1770949c] No state associated with key: +peer0.org2.example.com | exp02. Sending RESPONSE with an empty payload +peer0.org2.example.com | [cfd 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1770949c] Completed GET_STATE. Sending RESPONSE +peer0.org2.example.com | [cfe 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1770949c]Received message RESPONSE from peer +peer0.org2.example.com | [cff 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1770949c] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [d00 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [1770949c] before send +peer0.org2.example.com | [d01 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [1770949c] after send +peer0.org2.example.com | [d02 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1770949c] Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [d03 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [1770949c] GetState received payload RESPONSE +peer0.org2.example.com | [d04 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [1770949c] Sending PUT_STATE +peer0.org2.example.com | [d05 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1770949c] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org2.example.com | [d06 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1770949c] handling PUT_STATE from chaincode +peer0.org2.example.com | [d07 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1770949c] Completed PUT_STATE. Sending RESPONSE +peer0.org2.example.com | [d08 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1770949c]Received message RESPONSE from peer +peer0.org2.example.com | [d09 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1770949c] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [d0a 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [1770949c] before send +peer0.org2.example.com | [d0b 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [1770949c] after send +peer0.org2.example.com | [d0d 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [1770949c] Received RESPONSE. Successfully updated state +peer0.org2.example.com | [d0e 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified +peer0.org2.example.com | [d0f 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1770949c] Transaction completed. Sending COMPLETED +peer0.org2.example.com | [d0c 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1770949c] Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [d10 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [1770949c] send state message COMPLETED +peer0.org2.example.com | [d11 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [d12 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1770949c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [d14 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1770949c] notifying Txid:1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, channelID:businesschannel +peer0.org2.example.com | [d13 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [d15 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [d16 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [d17 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [d18 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [d19 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046,syscc=false,proposal=0xc423b11950,canname=exp02:1.0) +peer0.org2.example.com | [d1a 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched +peer0.org2.example.com | [d1b 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer0.org2.example.com | [d1c 06-12 02:14:48.79 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 +peer0.org2.example.com | [d1d 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 +peer0.org2.example.com | [d1e 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer0.org2.example.com | [d1f 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock +peer0.org2.example.com | [d20 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock +peer0.org2.example.com | [d21 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-exp02-1.0 +peer0.org2.example.com | [d22 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-exp02-1.0(No such container: dev-peer0.org2.example.com-exp02-1.0) +peer0.org2.example.com | [d23 06-12 02:14:48.80 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.org2.example.com | [d24 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) +peer0.org2.example.com | [d25 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Start container dev-peer0.org2.example.com-exp02-1.0 +peer0.org2.example.com | [d26 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +peer0.org2.example.com | [d27 06-12 02:14:48.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 +peer0.org2.example.com | [d28 06-12 02:14:48.81 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer0.org2.example.com | [d29 06-12 02:14:48.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU +peer0.org2.example.com | FROM hyperledger/fabric-baseos:amd64-0.4.8 +peer0.org2.example.com | ADD binpackage.tar /usr/local/bin +peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer0.org2.example.com | org.hyperledger.fabric.version="1.2.0" \ +peer0.org2.example.com | org.hyperledger.fabric.base.version="0.4.8" +peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.2.0 +peer0.org2.example.com | [d2a 06-12 02:14:48.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer0.org2.example.com | [d2b 06-12 02:14:48.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental +peer0.org2.example.com | [d2c 06-12 02:14:48.81 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 +peer0.org2.example.com | [d2d 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [d2e 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [d2f 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [d30 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [d31 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [d32 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [d33 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [d34 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [d35 06-12 02:14:49.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [d36 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [d37 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [d38 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [d39 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [d3a 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [d3b 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [d3c 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [d3d 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [d3e 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [d3f 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\031\300\263-\\\212\206j=\3146\010{\273v\224\031\225c\010\031\3535\357\035" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0201" signature:"0D\002 >\033>ZY\371\366(\023\r\244\244\255\364\220\256W\357\377\276\001\223\373\356\030P\260\367\023\264\r\367\002 #BL\177\0364+\275\335\313U\203\202\253~#q\351@\236\027y,\030c_\337s;\0323\366" > alive:\004_v\337)\212\374\353\235\241)\255\222" > +peer0.org2.example.com | [d40 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [d41 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [d42 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +peer0.org2.example.com | [d43 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +peer0.org2.example.com | [d44 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [d45 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [d46 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423dcda20 env 0xc423dda960 txn 0 +peer0.org2.example.com | [d47 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423dda960 +peer0.org2.example.com | [d48 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +peer0.org2.example.com | [d49 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [d4a 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [d4b 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org2.example.com | [d4c 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [d4d 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [d4e 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423bcb500, header channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +peer0.org2.example.com | [d4f 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [d50 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [d51 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [d52 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org2.example.com | [d53 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +peer0.org2.example.com | [d54 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [d55 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423e0a000 +peer0.org2.example.com | [d56 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin +peer0.org2.example.com | [d57 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [d58 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +peer0.org2.example.com | [d59 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer0.org2.example.com | [d5a 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [d5b 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org2.example.com | [d5c 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org2.example.com | [d5d 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [97e82e51-611c-4839-8206-bba5b30abc85] +peer0.org2.example.com | [d5e 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [d5f 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [97e82e51-611c-4839-8206-bba5b30abc85] +peer0.org2.example.com | [d60 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org2.example.com | [d61 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: +peer0.org2.example.com | [d62 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac appears to be valid +peer0.org2.example.com | [d63 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423e0a000 +peer0.org2.example.com | [d64 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423dcda20 env 0xc423dda960 txn 0 +peer0.org2.example.com | [d65 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [d66 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [d67 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +peer0.org2.example.com | [d68 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [d69 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +peer0.org2.example.com | [d6a 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [d6b 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org2.example.com | [d6c 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [d6d 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer0.org2.example.com | [d6e 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] marked as valid by state validator +peer0.org2.example.com | [d6f 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [d70 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [d71 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [d72 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc423e50a20)} +peer0.org2.example.com | [d73 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] +peer0.org2.example.com | [d74 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +peer0.org2.example.com | [d75 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +peer0.org2.example.com | [d77 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} +peer0.org2.example.com | [d76 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [a0a 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a0b 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201e10e0) start: > stop: > from 172.18.0.7:35856 +orderer.example.com | [a0c 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [a0d 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50742] +orderer.example.com | [a0e 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9564], Going to peek [8] bytes +orderer.example.com | [a0f 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +orderer.example.com | [a10 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] +orderer.example.com | [a11 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201e10e0) for 172.18.0.7:35856 +orderer.example.com | [a12 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35856 for (0xc4201e10e0) +orderer.example.com | [a13 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35856 +orderer.example.com | [a14 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35856 +orderer.example.com | [a15 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a16 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a17 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a18 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a19 06-12 02:16:03.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35856: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a1a 06-12 02:16:03.07 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [a1b 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [a1c 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35858 +orderer.example.com | [a1d 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35858 +orderer.example.com | [a1e 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a1f 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a20 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [a21 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a22 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [a23 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150550 gate 1528769763211959200 evaluation starts +orderer.example.com | [a24 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150550 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a25 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150550 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a26 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150550 principal matched by identity 0 +orderer.example.com | [a27 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 7d 31 82 ce 60 6a 48 1d cb 09 4a d8 0b f7 a1 0f |}1..`jH...J.....| +orderer.example.com | 00000010 4e ab 68 6b 67 f4 ce fa ae dc c3 7c 1c cb 65 06 |N.hkg......|..e.| +orderer.example.com | [a28 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 be 0b 51 de 42 37 df 08 fc 47 1b |0E.!...Q.B7...G.| +orderer.example.com | 00000010 4d a8 bf 5c 79 53 c4 57 eb 63 63 ab 46 d2 9f 38 |M..\yS.W.cc.F..8| +orderer.example.com | 00000020 22 90 bf b3 6c 02 20 4b b0 a9 d8 f8 b5 c2 26 7e |"...l. K......&~| +orderer.example.com | 00000030 77 eb 4f 83 f6 32 d7 0b e2 a1 52 30 2f d2 7c ae |w.O..2....R0/.|.| +orderer.example.com | 00000040 6b 70 b3 fa 9f a3 d8 |kp.....| +orderer.example.com | [a29 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150550 principal evaluation succeeds for identity 0 +orderer.example.com | [a2a 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150550 gate 1528769763211959200 evaluation succeeds +orderer.example.com | [a2b 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a2c 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a2d 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a2e 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a2f 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [a30 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a31 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202b2f40) start: > stop: > from 172.18.0.7:35858 +orderer.example.com | [a32 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +orderer.example.com | [a33 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55527] +orderer.example.com | [a34 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +orderer.example.com | [a35 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +orderer.example.com | [a36 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +orderer.example.com | [a37 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202b2f40) for 172.18.0.7:35858 +orderer.example.com | [a38 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35858 for (0xc4202b2f40) +orderer.example.com | [a39 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35858 +orderer.example.com | [a3a 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35858 +orderer.example.com | [a3b 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a3c 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a3d 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +orderer.example.com | [a3e 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +orderer.example.com | [a3f 06-12 02:16:03.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35858: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a40 06-12 02:16:03.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [a41 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [a42 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35860 +orderer.example.com | [a43 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35860 +orderer.example.com | [a44 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a45 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a46 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [a47 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a48 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [a49 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [a4a 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [a4b 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505a0 gate 1528769763386162900 evaluation starts +orderer.example.com | [a4c 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505a0 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a4d 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a4e 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [a4f 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [a50 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505a0 principal matched by identity 0 +orderer.example.com | [a51 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 2a 40 27 7e ce 04 31 6b 52 44 2c 78 46 46 30 1d |*@'~..1kRD,xFF0.| +orderer.example.com | 00000010 33 25 b7 09 6a b3 e8 09 89 a1 bc 19 94 93 5c 93 |3%..j.........\.| +orderer.example.com | [a52 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 50 c7 53 d3 cb 73 5f df 72 88 38 3c |0D. P.S..s_.r.8<| +orderer.example.com | 00000010 f5 cb f2 95 45 cd 9a 8d 2e 2a aa db be 9d 2d 54 |....E....*....-T| +orderer.example.com | 00000020 f0 1f 42 9d 02 20 05 90 d6 02 5f 3d 14 fd e8 84 |..B.. ...._=....| +orderer.example.com | 00000030 f0 2e a0 bc 60 51 35 a3 c4 be f4 d0 7f fd 51 3f |....`Q5.......Q?| +orderer.example.com | 00000040 07 75 40 0a 0b cd |.u@...| +orderer.example.com | [a53 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505a0 principal evaluation succeeds for identity 0 +orderer.example.com | [a54 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505a0 gate 1528769763386162900 evaluation succeeds +orderer.example.com | [a55 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a56 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a57 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a58 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a59 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [a5a 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a5b 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420c0b6c0) start: > stop: > from 172.18.0.7:35860 +orderer.example.com | [a5c 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [a5d 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +orderer.example.com | [a5e 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +orderer.example.com | [a5f 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +orderer.example.com | [a60 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +orderer.example.com | [a61 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420c0b6c0) for 172.18.0.7:35860 +orderer.example.com | [a62 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35860 for (0xc420c0b6c0) +orderer.example.com | [a63 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35860 +orderer.example.com | [a64 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35860 +peer1.org1.example.com | [f1a 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f1c 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [f1d 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f1e 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f1f 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [f20 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f21 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f22 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [f23 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f24 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f25 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f26 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [f27 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [f28 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [f29 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [f2a 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [f2b 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [f2c 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f2d 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [f2e 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [f2f 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [f30 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f31 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f32 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f33 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f34 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f35 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [f36 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f37 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f38 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [f39 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f3a 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f3b 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [f3c 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f3d 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f3e 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [f3f 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [f40 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [f41 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f42 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [f43 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [f44 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [f45 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [f47 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [f48 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [f4a 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [f46 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [f4b 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f49 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [f4d 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f4c 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [f4e 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f4f 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [f50 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [f51 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [f52 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f53 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [f54 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [f55 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [f56 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f57 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [f58 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [f59 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f5a 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [f5b 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [f5c 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [f5d 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [f5e 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f5f 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [f60 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f61 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [f62 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [f63 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [f64 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f65 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [f66 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [f67 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [f68 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [f69 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [f6a 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f6b 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f6c 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [f6d 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [f6e 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [f6f 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [e0a 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [e0b 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e0c 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e0d 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [e0e 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [e0f 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [e10 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e11 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [e12 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [e13 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [e14 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [e15 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [e16 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [e17 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [e18 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [e19 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e1a 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [e1b 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [e1c 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [e1d 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0208" signature:"0E\002!\000\244xZ+\001\223\214\251\022\355\177\215y%Wa\376\372N\036.\031\252\337\301\203Y\024\037\270\274I\002 k\240\2751\224\273-\200\016\2261\201hf\324\2007\302\r\303[<\221N\245\210\257\326`\335\232\276" > alive: alive: +peer1.org2.example.com | [e1e 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [e1f 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e20 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [e21 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [e22 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [e24 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [e25 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e23 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [e26 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [e27 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [e28 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [e29 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [e2a 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e2b 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e2c 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [e2d 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [e2e 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e2f 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [d78 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +peer0.org2.example.com | [d7a 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} +peer0.org2.example.com | [d7b 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc420377340})} +peer0.org2.example.com | [d7c 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +peer0.org2.example.com | [d79 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes +peer0.org2.example.com | [d7d 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [d7e 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] +peer0.org2.example.com | [d7f 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x85, 0xcf, 0x9e, 0x4c, 0xc1, 0xd7, 0xb8, 0xde, 0x8c, 0xf1, 0x23, 0x5e, 0x4b, 0x7f, 0x6f, 0x1d, 0xcc, 0x70, 0x69, 0xaa, 0x7e, 0x1a, 0x8e, 0x7b, 0x90, 0x1f, 0x84, 0xc8, 0xe2, 0xfb, 0xcd, 0x8} txOffsets= +peer0.org2.example.com | txId=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac locPointer=offset=70, bytesLength=3459 +peer0.org2.example.com | ] +peer0.org2.example.com | [d80 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to index +peer0.org2.example.com | [d81 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx number:[0] ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to blockNumTranNum index +peer0.org2.example.com | [d82 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45423], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org2.example.com | [d83 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] +peer0.org2.example.com | [d84 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] +peer0.org2.example.com | [d85 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +peer0.org2.example.com | [d86 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +peer0.org2.example.com | [d87 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [d88 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org2.example.com | [d89 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [d8a 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [d8b 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [d8c 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [d8d 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [da8 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [da9 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [c9c4785e-075a-48fa-a7be-975cf531a956] +peer0.org1.example.com | [daa 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [dab 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: +peer0.org1.example.com | [dac 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac appears to be valid +peer0.org1.example.com | [dad 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423996000 +peer0.org1.example.com | [dae 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f85cc0 env 0xc4232406c0 txn 0 +peer0.org1.example.com | [daf 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [db0 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [db1 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +peer0.org1.example.com | [db2 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [db3 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +peer0.org1.example.com | [db4 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [db5 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org1.example.com | [db6 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [db7 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +peer0.org1.example.com | [db8 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] marked as valid by state validator +peer0.org1.example.com | [db9 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org1.example.com | [dba 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [dbb 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [dbc 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc42317e6f0)} +peer0.org1.example.com | [dbd 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] +peer0.org1.example.com | [dbe 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +peer0.org1.example.com | [dbf 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +peer0.org1.example.com | [dc0 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} +peer1.org2.example.com | [e30 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [e31 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [e32 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e33 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [e34 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [e35 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e36 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [e37 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [e38 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [e39 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [e3a 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [e3b 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e3c 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e3d 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [e3e 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e3f 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [a65 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35860: read: connection reset by peer +orderer.example.com | [a66 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35860: rpc error: code = Canceled desc = context canceled +orderer.example.com | [a67 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [a68 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [a69 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35862 +orderer.example.com | [a6a 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35862 +orderer.example.com | [a6b 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a6c 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a6d 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [a6e 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a6f 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [a70 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1528769763532293200 evaluation starts +orderer.example.com | [a71 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [a72 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a73 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal matched by identity 0 +orderer.example.com | [a74 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 5d 02 1f 42 a8 4a 84 8b d4 c7 a3 2c 57 2a 06 13 |]..B.J.....,W*..| +orderer.example.com | 00000010 79 7b c6 46 08 58 70 7b 01 f9 2d 3d 9b 11 a8 0f |y{.F.Xp{..-=....| +orderer.example.com | [a75 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 95 90 87 8a f7 a8 4b 4c a3 19 4f |0E.!.......KL..O| +orderer.example.com | 00000010 36 6c 1f 53 4f c4 ba 17 32 b6 1a 80 8e 84 1c 1b |6l.SO...2.......| +orderer.example.com | 00000020 a6 48 68 2f 35 02 20 64 73 3b 9f b5 06 c1 71 5a |.Hh/5. ds;....qZ| +orderer.example.com | 00000030 06 30 e5 d9 7c 47 5a 3f 8a a2 2c 97 ec 44 5f ab |.0..|GZ?..,..D_.| +orderer.example.com | 00000040 b3 38 a5 ce 12 e4 c2 |.8.....| +orderer.example.com | [a76 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal evaluation succeeds for identity 0 +orderer.example.com | [a77 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1528769763532293200 evaluation succeeds +orderer.example.com | [a78 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [f70 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [f71 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [f72 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f73 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [f74 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [f75 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [f76 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f77 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [d8e 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [d8f 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [d90 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [d91 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [d92 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [d93 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [d94 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [d95 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [d97 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [d96 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [d98 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [d99 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [d9a 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [d9b 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [d9c 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [d9d 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [d9e 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [da2 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [d9f 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [da3 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [da0 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [da1 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [da4 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [da5 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [da6 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [da7 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [da8 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [da9 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [daa 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [dab 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [dac 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [dad 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [dae 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [daf 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [db0 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [db1 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [db2 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [db3 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [db4 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [db5 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [db6 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [db7 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [db8 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [db9 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [dba 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [dbb 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer0.org2.example.com | [dbc 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [dbd 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [dbe 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dbf 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [dc0 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [dc1 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dc2 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dc3 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [dc4 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [dc5 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [dc6 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [dc7 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [dc8 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [dc9 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [dca 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [dcb 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [dcc 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [dcd 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dce 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dcf 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [dd0 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [dd1 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dd2 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dd3 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [dd4 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [dd5 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dd6 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [dd7 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [dd8 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [dd9 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [dda 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ddb 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ddc 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [ddd 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [dde 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [ddf 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [de0 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [de2 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [de3 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [de4 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [de5 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [de6 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [de7 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [de8 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [de9 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [dea 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f78 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [f79 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [f7a 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [f7b 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f7c 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [f7d 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [f7e 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [f7f 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [f80 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [f81 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [f82 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [f83 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f84 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [f85 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [f86 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f87 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [f88 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f89 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [f8a 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 63 but got ts: inc_num:1528769652429776900 seq_num:62 +peer1.org1.example.com | [f8b 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f8c 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [f8d 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [f8e 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [f8f 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e40 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [e41 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e42 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [e43 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [e44 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [e45 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [e46 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [e47 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [e48 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [e49 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [e4a 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [e4b 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e4c 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e4d 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [e4e 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [e4f 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [e50 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [e51 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [e52 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [e53 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e54 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e55 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [e56 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [a79 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a7a 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a7b 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a7c 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [a7d 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a7e 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420518720) start: > stop: > from 172.18.0.7:35862 +orderer.example.com | [a7f 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [a80 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +orderer.example.com | [a81 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +orderer.example.com | [a82 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +orderer.example.com | [a83 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +orderer.example.com | [a84 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420518720) for 172.18.0.7:35862 +orderer.example.com | [a85 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35862 for (0xc420518720) +orderer.example.com | [a86 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35862 +orderer.example.com | [a87 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35862 +orderer.example.com | [a88 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [a89 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a8a 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [a8b 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [a8c 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [a8d 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1528769763539356800 evaluation starts +orderer.example.com | [a8e 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [deb 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [dec 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [ded 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [dee 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > alive:O@h\3424\266\004\320/\206L\367\367\203`(\375\304\361\031T\002 `\215_{\244\246\304\230\340\333\273\261\346\016\260/\030\033\214-\214\353l\014\316\t\320\231\367\224\326\371" > +peer0.org2.example.com | [def 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [df0 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [de1 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [df1 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [df2 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [df3 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [df4 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [df5 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [df6 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [df7 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [df8 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [df9 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [dfa 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [dfb 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [dfc 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [dfd 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [dc1 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +peer0.org1.example.com | [dc2 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} +peer0.org1.example.com | [dc3 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc4203813c0})} +peer0.org1.example.com | [dc4 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +peer0.org1.example.com | [dc5 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] +peer0.org1.example.com | [dc6 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x85, 0xcf, 0x9e, 0x4c, 0xc1, 0xd7, 0xb8, 0xde, 0x8c, 0xf1, 0x23, 0x5e, 0x4b, 0x7f, 0x6f, 0x1d, 0xcc, 0x70, 0x69, 0xaa, 0x7e, 0x1a, 0x8e, 0x7b, 0x90, 0x1f, 0x84, 0xc8, 0xe2, 0xfb, 0xcd, 0x8} txOffsets= +peer0.org1.example.com | txId=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac locPointer=offset=70, bytesLength=3459 peer0.org1.example.com | ] -peer0.org1.example.com | [e29 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to index -peer0.org1.example.com | [e2a 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx number:[0] ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to blockNumTranNum index -peer0.org1.example.com | [e2b 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45420], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org1.example.com | [e2c 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] -peer0.org1.example.com | [e2d 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -peer0.org1.example.com | [e2e 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -peer0.org1.example.com | [e2f 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -peer0.org1.example.com | [e30 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [e31 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [e32 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org1.example.com | [e33 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org1.example.com | [e34 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -peer0.org1.example.com | [e35 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [e36 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] -peer0.org1.example.com | [e37 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer0.org1.example.com | [e38 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer0.org1.example.com | [e39 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [ed5299bb-fa3c-42f0-98ca-57467dcfadd7] -peer0.org1.example.com | [e3a 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] -peer0.org1.example.com | [e3b 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [e3c 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] -peer0.org1.example.com | [e3d 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [ed5299bb-fa3c-42f0-98ca-57467dcfadd7] -peer0.org1.example.com | [e3e 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] -orderer.example.com | [994 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [995 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8410 gate 1527744204757163700 evaluation starts -orderer.example.com | [996 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8410 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [997 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8410 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [998 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8410 principal matched by identity 0 -orderer.example.com | [999 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bb 6c 7c 3a 04 60 93 5f 12 1a 3f 47 68 90 af d5 |.l|:.`._..?Gh...| -orderer.example.com | 00000010 0b ca 38 86 99 17 62 54 54 a6 17 52 e2 72 b7 5d |..8...bTT..R.r.]| -orderer.example.com | [99a 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5d 29 ea ab f6 a3 40 ba ad 1d a5 6c |0D. ])....@....l| -orderer.example.com | 00000010 44 1d 85 4b 6a 70 6f d1 1d ec b8 67 29 41 60 0a |D..Kjpo....g)A`.| -orderer.example.com | 00000020 e7 02 ec d7 02 20 06 a2 e7 12 3b 6a a5 36 69 91 |..... ....;j.6i.| -orderer.example.com | 00000030 97 52 1e 52 ce 11 69 4b e9 57 16 99 25 2a 14 0a |.R.R..iK.W..%*..| -orderer.example.com | 00000040 83 11 2f a8 50 4b |../.PK| -orderer.example.com | [99b 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8410 principal evaluation succeeds for identity 0 -orderer.example.com | [99c 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8410 gate 1527744204757163700 evaluation succeeds -orderer.example.com | [99d 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [99e 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [99f 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [9a0 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [9a1 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [9a2 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [9a3 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a20140) start: > stop: > from 172.18.0.7:41406 -orderer.example.com | [9a4 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [9a5 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [9a6 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60306], Going to peek [8] bytes -peer1.org2.example.com | [e37 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e38 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [e39 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e3a 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e3b 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e3c 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [e3d 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [e3e 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [e3f 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [e40 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [e41 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [e42 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [e43 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e44 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [e45 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e46 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e48 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [e47 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e4a 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [e49 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e4b 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e4c 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e4d 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [e3f 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -peer0.org1.example.com | [e40 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer0.org1.example.com | [e41 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [e42 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 -peer0.org1.example.com | [e43 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [e44 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [e45 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [e46 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [e47 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [e48 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [e49 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [e4a 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [e4b 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [e4c 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [e4d 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [e4e 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [e4f 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [e50 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e51 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [e52 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [e53 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e54 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [e55 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [e56 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [e57 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [e58 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [e4e 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e4f 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e50 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [e51 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e52 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e53 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e54 05-31 05:22:16.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e55 05-31 05:22:16.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [e56 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e57 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e58 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e59 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [e5a 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [e5b 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [e5c 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [e5d 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [e5e 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [e5f 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [e60 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e61 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [e63 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [e62 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e65 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e64 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e66 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [ca3 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ca4 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [ca5 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [ca6 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [ca7 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020." signature:"0D\002 k7x\337GV\024\354ix\033\334y]\021\272]>K\020\261!Z\246\335I\035\310\243\022\361\262\002 4\221\201\237\312G\034\026\021\"\350\356)\324\265S\346Z\312\261\204;d&\311]\017\017\227F0*" > alive: alive: -peer0.org2.example.com | [ca8 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [ca9 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [caa 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [cab 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [cac 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [cad 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [cae 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [caf 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [cb0 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [cb1 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [cb2 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [cb3 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [cb4 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [cb5 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [cb6 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [cb7 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [cb8 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [cb9 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [cba 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [cbb 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [cbc 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [cbd 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [cbe 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [cbf 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [cc0 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [cc1 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [cc2 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [cc3 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [cc4 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [cc5 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [cc6 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > alive: alive: -peer0.org2.example.com | [cc7 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [cc8 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [cc9 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [cca 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [ccb 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [ccc 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [ccd 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -orderer.example.com | [9a7 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12118], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [9a8 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -orderer.example.com | [9a9 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a20140) for 172.18.0.7:41406 -orderer.example.com | [9aa 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41406 for (0xc420a20140) -orderer.example.com | [9ab 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41406 -orderer.example.com | [9ac 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41406 -orderer.example.com | [9ad 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9ae 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [9af 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9b0 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [9b1 05-31 05:23:24.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41406: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9b2 05-31 05:23:24.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [9b3 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [9b4 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41408 -orderer.example.com | [9b5 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41408 -orderer.example.com | [9b6 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [9b7 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9b8 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [9b9 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9ba 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [9bb 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8130 gate 1527744204952431100 evaluation starts -orderer.example.com | [9bc 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8130 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9bd 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8130 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9be 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8130 principal matched by identity 0 -peer1.org2.example.com | [e67 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e68 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [e6a 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e6b 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e69 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e6c 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e6d 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [e6f 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e6e 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e70 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e71 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e72 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [e73 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e74 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [e75 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e76 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e77 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [e78 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e79 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e7a 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e7b 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [e7c 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [e7d 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [e7f 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [bb0 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [bb1 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [bb2 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [bb3 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [bb4 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [bb5 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [bb6 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [bb7 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [bb8 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [bb9 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [bba 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [bbb 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [bbc 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [bbd 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [bbe 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [bbf 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [bc0 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [bc1 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [bc2 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [bc3 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [bc4 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [bc5 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [bc6 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [bc7 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [bc8 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [bc9 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e59 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [e5a 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [e5b 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [e5c 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [e5d 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [e5e 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [e5f 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [e60 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020;" signature:"0D\002 W\333\232\241\313>3\204}\205\344/=\n \317=\301\353\366n\311H\220\204\310T\266\362\207\335\207\002 U\367CMV\262?\031\231\031\327s\217\262\036@e\366\314\324%\233o\243\266\225d:\263\255\213D" > -peer0.org1.example.com | [e61 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org1.example.com | [e62 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e63 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [e65 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [e64 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [e66 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e67 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e68 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [e69 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e6a 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer0.org1.example.com | [e6c 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 741 bytes, Signature: 0 bytes -peer0.org1.example.com | [e6d 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [e6e 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [e6f 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e70 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e6b 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org1.example.com | [e71 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [e72 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e73 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e74 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 740 bytes, Signature: 0 bytes -peer0.org1.example.com | [e75 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e76 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 741 bytes, Signature: 0 bytes -peer0.org1.example.com | [e77 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e78 05-31 05:22:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [e79 05-31 05:22:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e7a 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [e7b 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [e7c 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [e7d 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [e7e 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org1.example.com | [e7f 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org1.example.com | [e80 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e81 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [e82 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e83 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [e84 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e85 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [e86 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [e87 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [cce 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [ccf 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [cd0 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [cd1 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [cd2 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [cd3 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [cd4 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [cd5 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [cd6 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [cd7 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [cd8 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [cdd 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [cde 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [cda 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [cdf 05-31 05:22:07.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [ce0 05-31 05:22:07.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ce1 05-31 05:22:07.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [ce2 05-31 05:22:07.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [ce3 05-31 05:22:07.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [9bf 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 3b 8d ed 94 14 57 db 46 79 81 37 99 85 67 47 c4 |;....W.Fy.7..gG.| -orderer.example.com | 00000010 f7 3b 59 96 bb f9 5e 6c 1e 9f 31 56 63 57 d5 b3 |.;Y...^l..1VcW..| -orderer.example.com | [9c0 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a2 9f 19 81 90 90 0c dd 14 6c 49 |0E.!..........lI| -orderer.example.com | 00000010 77 eb 25 61 80 16 49 10 28 39 f6 eb 74 55 a9 8c |w.%a..I.(9..tU..| -orderer.example.com | 00000020 45 a5 79 61 77 02 20 3e 2b 6b cb 6b c1 37 8b 1f |E.yaw. >+k.k.7..| -orderer.example.com | 00000030 fa de 5a b1 2d cc a9 f2 ab 0f 8c 18 24 e9 ad 0e |..Z.-.......$...| -orderer.example.com | 00000040 58 ff 8c c5 99 3d c4 |X....=.| -orderer.example.com | [9c1 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8130 principal evaluation succeeds for identity 0 -orderer.example.com | [9c2 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8130 gate 1527744204952431100 evaluation succeeds -orderer.example.com | [9c3 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [9c4 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [9c5 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [9c6 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [9c7 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [9c8 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [9c9 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a21620) start: > stop: > from 172.18.0.7:41408 -orderer.example.com | [9ca 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [9cb 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -orderer.example.com | [9cc 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48186], Going to peek [8] bytes -orderer.example.com | [9cd 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -orderer.example.com | [9ce 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -orderer.example.com | [9cf 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a21620) for 172.18.0.7:41408 -orderer.example.com | [9d0 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41408 for (0xc420a21620) -orderer.example.com | [9d1 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41408 -orderer.example.com | [9d2 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41408 -orderer.example.com | [9d3 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9d4 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [9d5 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9d6 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [9d7 05-31 05:23:24.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41408: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9d8 05-31 05:23:24.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [9d9 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [9da 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41410 -peer1.org2.example.com | [e80 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [e7e 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [e81 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [e82 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [e83 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [e84 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e86 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e85 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e87 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e88 05-31 05:22:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [e89 05-31 05:22:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [e8b 05-31 05:22:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e8c 05-31 05:22:16.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e8a 05-31 05:22:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e8d 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e8e 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e8f 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [e90 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [e91 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [e92 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [e93 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [e94 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [e95 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [e96 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [e98 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e97 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [e9a 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [e9b 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e99 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [e9c 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [e9d 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [e9e 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [e9f 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [ea0 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [ea1 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ea2 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [ea3 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [ea4 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ea5 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [ea6 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [ea7 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ea8 05-31 05:22:18.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [ea9 05-31 05:22:18.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [eaa 05-31 05:22:18.85 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [9db 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41410 -orderer.example.com | [9dc 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [9dd 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9de 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [9df 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [9e0 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [9e1 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744205138651500 evaluation starts -orderer.example.com | [9e2 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [9e3 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [9e4 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal matched by identity 0 -orderer.example.com | [9e5 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 84 7c 38 a4 12 fc 48 aa 1a 39 e3 4b 0e 78 15 73 |.|8...H..9.K.x.s| -orderer.example.com | 00000010 a5 43 a7 d1 2c 7a 54 56 04 c2 4c 7c b6 63 4e 1b |.C..,zTV..L|.cN.| -orderer.example.com | [9e6 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4c d1 f1 1a 6c c5 35 c3 d3 75 92 ea |0D. L...l.5..u..| -orderer.example.com | 00000010 6d 6d 07 5a 48 06 d7 a7 71 8a 47 c1 07 4c d1 14 |mm.ZH...q.G..L..| -orderer.example.com | 00000020 6c 80 69 64 02 20 65 fe 34 8e a6 0b da 16 c3 44 |l.id. e.4......D| -orderer.example.com | 00000030 60 bc 1b b9 65 3a 45 2a c2 b2 f1 15 e3 ad f2 bd |`...e:E*........| -orderer.example.com | 00000040 7a be c1 a8 66 42 |z...fB| -orderer.example.com | [9e7 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal evaluation succeeds for identity 0 -orderer.example.com | [9e8 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744205138651500 evaluation succeeds -orderer.example.com | [9e9 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [9ea 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [9eb 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [9ec 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -peer1.org1.example.com | [bca 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [bcb 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [bcc 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [bcd 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 48 but got ts: inc_num:1527744091618763800 seq_num:47 -peer1.org1.example.com | [bce 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [bcf 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [bd0 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [bd1 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [bd2 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [bd3 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [bd4 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [bd5 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [bd6 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [bd7 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [bd8 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [bd9 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [bda 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [bdb 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [bdc 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [bdd 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [bde 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [bdf 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [eab 05-31 05:22:18.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [eac 05-31 05:22:18.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [ead 05-31 05:22:18.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [eaf 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [eae 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [eb0 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [eb1 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [eb2 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [eb3 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [eb4 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [eb5 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [eb6 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [eb7 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [eb8 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [eb9 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [eba 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [ebb 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [ebc 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [ebd 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [ebe 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [ebf 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ec0 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ec1 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [ec2 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ec3 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [e88 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [e89 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e8a 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [e8b 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [e8c 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [e8d 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e8e 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [e8f 05-31 05:22:15.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e90 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [e91 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [e92 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [e93 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e94 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [e95 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [e96 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [e97 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [e98 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [e99 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [e9a 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [e9b 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [e9c 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [e9d 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [cdb 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [ce4 05-31 05:22:07.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [cd9 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [cdc 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [ce5 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [ce6 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [ce7 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [ce8 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ce9 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [cea 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [ceb 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [cec 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [cee 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [ced 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [cef 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [cf0 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [cf1 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [cf2 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [cf3 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [cf4 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [be0 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [be1 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [be2 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [be3 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [be4 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [be5 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [be6 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [be7 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [be8 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [be9 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [bea 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 50 but got ts: inc_num:1527744090808810100 seq_num:49 -peer1.org1.example.com | [beb 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [bec 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [bed 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [bee 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [bef 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [bf0 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [bf1 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [bf2 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [bf3 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [bf4 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [bf5 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [bf6 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [bf7 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [bf8 05-31 05:22:07.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [bf9 05-31 05:22:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [bfa 05-31 05:22:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [bfb 05-31 05:22:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ec4 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [ec5 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ec6 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [ec7 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ec8 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ec9 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [eca 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [ecb 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [ecc 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [ecd 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [ece 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [ecf 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [ed0 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ed1 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ed2 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [ed4 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ed3 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [ed5 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [ed6 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [ed7 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ed8 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [ed9 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [eda 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [edb 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [e9e 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [e9f 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [ea0 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [ea1 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ea2 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org1.example.com | [ea3 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ea4 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020<" signature:"0E\002!\000\326\233\\\007%\004\365\326\205\250\023\277\366\266\177=c\242>P\322M\205\005\305&V*\256\237\037!\002 \016\"\365z\213\257+\327\031\276I\361\301\244\242\252nB\223\001\315\346\377-\372\331<\256\334\256\222*" secret_envelope: > -peer0.org1.example.com | [ea5 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [ea6 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [ea7 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ea8 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [ea9 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [eaa 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [eab 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [eac 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ead 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [eae 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [eaf 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [eb0 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [eb2 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [eb3 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [eb1 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [eb4 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [eb5 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [eb6 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [bfc 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [bfd 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [bfe 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [bff 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [c00 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c01 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [c02 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [c03 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c04 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [c05 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [c06 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [c07 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [c08 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [c09 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [c0a 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [c0b 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [c0c 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [c0d 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [c0e 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [c0f 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [9ed 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [9ee 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [9ef 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420350f80) start: > stop: > from 172.18.0.7:41410 -orderer.example.com | [9f0 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [9f1 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] -orderer.example.com | [9f2 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34227], Going to peek [8] bytes -orderer.example.com | [9f3 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -orderer.example.com | [9f4 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [9f5 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420350f80) for 172.18.0.7:41410 -orderer.example.com | [9f6 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41410 for (0xc420350f80) -orderer.example.com | [9f7 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41410 -orderer.example.com | [9f8 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41410 -orderer.example.com | [9f9 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9fa 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [9fb 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [9fc 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [9fd 05-31 05:23:25.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41410: rpc error: code = Canceled desc = context canceled -orderer.example.com | [9fe 05-31 05:23:25.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [9ff 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a00 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41412 -orderer.example.com | [a01 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41412 -orderer.example.com | [a02 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a03 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a04 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a05 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a06 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a07 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1527744205309949600 evaluation starts -orderer.example.com | [a08 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [edc 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [edd 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [ede 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [edf 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ee0 05-31 05:22:18.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [ee1 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [ee2 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ee3 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [ee4 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ee5 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [ee6 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ee7 05-31 05:22:19.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [ee8 05-31 05:22:19.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [ee9 05-31 05:22:19.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [eea 05-31 05:22:19.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [eeb 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [eec 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [eed 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [eee 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [eef 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [ef0 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ef1 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [ef2 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [ef3 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [ef4 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [ef5 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [ef6 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [ef7 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [ef8 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [ef9 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [efa 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [efb 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [efc 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [efe 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [eff 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [efd 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020@" signature:"0E\002!\000\232!h\302\321\320\226J\237\350t\003d\\w\010\304d\3156\262\3120\221::m\314\213\014\235\\\002 \021\030\267}\374@\031\266\315L\001\200\022\263\220s+X)9\351\217\201\211\024\000\202'\307\027JI" > alive:\277-DO\273" > alive:\002 KY\211\257\332\351\301Q\244p\002\210\010\260EZ\226&y\342\0162\327\202\000B\2712q\245\254g" > -peer1.org2.example.com | [f00 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [f01 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [f02 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f03 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [f04 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f05 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [f06 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f07 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [f08 05-31 05:22:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f09 05-31 05:22:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [f0a 05-31 05:22:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f0b 05-31 05:22:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [f0c 05-31 05:22:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f0d 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [f0e 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [f0f 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [f10 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f11 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [f12 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [f13 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [f14 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f15 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [f16 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [f17 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f18 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [f19 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f1a 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [f1b 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f1c 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [f1d 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [f1e 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [f1f 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [f20 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [f21 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [f22 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [f23 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f24 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [f25 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [f27 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [f28 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f26 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > alive:\277-DO\273" > alive: -peer1.org2.example.com | [f29 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [f2a 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [f2b 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [f2c 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f2d 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [f2e 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f2f 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [f30 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [f31 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [f32 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [f33 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [f34 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [f35 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [f36 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [f37 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [f38 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f39 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [f3a 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [f3c 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [f3d 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f3b 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [f3e 05-31 05:22:20.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [f3f 05-31 05:22:20.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [f40 05-31 05:22:20.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org2.example.com | [f41 05-31 05:22:20.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [f42 05-31 05:22:20.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [f44 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [f43 05-31 05:22:20.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f46 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f47 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f45 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f48 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f49 05-31 05:22:21.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [f4a 05-31 05:22:21.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [f4b 05-31 05:22:21.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [f4c 05-31 05:22:21.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org2.example.com | [f4d 05-31 05:22:21.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f4e 05-31 05:22:21.40 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [f4f 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f50 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [f51 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f53 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f54 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [f52 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f55 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f56 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [f57 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [f58 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [f59 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [f5a 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [f5b 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [f5c 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [f5d 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f5f 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f5e 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f60 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f61 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [f62 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [f64 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f65 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f66 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f67 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [f63 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f68 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f69 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f6a 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [f6b 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f6c 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f6d 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [f6e 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f6f 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f70 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f71 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [f72 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [f73 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [f74 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [f75 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [f76 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [f77 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [f78 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f79 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f7a 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [f7b 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f7c 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f7d 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f7e 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [f7f 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [f80 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f81 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f82 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f83 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f84 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [f85 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [f86 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f87 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f88 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f89 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f8a 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [f8b 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f8c 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f8d 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f8e 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [f8f 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [f90 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [f91 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [f92 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [f93 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [f94 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [f95 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f96 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f97 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [f98 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [f99 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f9a 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [f9b 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f9c 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [f9d 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [f9f 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [cf5 05-31 05:22:07.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [cf6 05-31 05:22:07.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [cf7 05-31 05:22:07.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [cf8 05-31 05:22:07.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [cf9 05-31 05:22:07.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [cfa 05-31 05:22:07.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [cfb 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [cfc 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [cfd 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [cfe 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [cff 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [d00 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [d01 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [d02 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [d03 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [d04 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [d05 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d06 05-31 05:22:07.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [d07 05-31 05:22:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [d08 05-31 05:22:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d09 05-31 05:22:07.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [d0a 05-31 05:22:07.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [d0b 05-31 05:22:07.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [d0c 05-31 05:22:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d0d 05-31 05:22:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d0e 05-31 05:22:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [eb7 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [eb8 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [eb9 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [eba 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ebb 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [ebc 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [ebd 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ebe 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [ebf 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [ec0 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ec1 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ec2 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ec3 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [ec5 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [ec6 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ec7 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c10 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > alive:\363kN\324\356\002 o\227\367\266\244\301^\366\340(\204\256B\0340\322!f\314Pui\016\313\325\214\344\231W\260-p" secret_envelope: > -peer1.org1.example.com | [c11 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [c12 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c13 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [c14 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [c15 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [c16 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [c17 05-31 05:22:07.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c18 05-31 05:22:07.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [c19 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [c1b 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [c1c 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c1d 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [c1e 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [c1f 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [c20 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [c21 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [c22 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [c23 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [c24 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [c25 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [c26 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [c27 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > alive: -peer1.org1.example.com | [c28 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [c29 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c1a 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c2a 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [c2b 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [c2c 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [c2d 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [c2e 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c2f 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [c30 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [c31 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c32 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [c33 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [c34 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [c35 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [c36 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [c37 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [c38 05-31 05:22:10.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [c39 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [c3a 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [c3b 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [c3c 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [c3d 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [c3e 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > alive: -peer1.org1.example.com | [c3f 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [c40 05-31 05:22:10.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c41 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c42 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c43 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c44 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c45 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c46 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [c47 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c48 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c49 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c4a 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [c4b 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [c4c 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [c4d 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [c4e 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [c4f 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [c50 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [c51 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [c52 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c53 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c54 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [c55 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c56 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c57 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [c58 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [c59 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [c5a 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c5b 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c5d 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c5c 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c5e 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [c5f 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c60 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [c61 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [c62 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [c63 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c64 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c65 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [c66 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c67 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c68 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [c69 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [c6a 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [c6b 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [c6c 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [c6d 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [c6e 05-31 05:22:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c6f 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c70 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c71 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [c72 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c73 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [c74 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [c75 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [c76 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c77 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c78 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c79 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c7a 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c7b 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c7c 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [c7d 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [c7e 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c7f 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [c80 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [c81 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c82 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [c83 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer1.org1.example.com | [c84 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c85 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [c86 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [c87 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [c88 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c89 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c8a 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c8b 05-31 05:22:11.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c8c 05-31 05:22:11.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c8d 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c8e 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [c8f 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [c90 05-31 05:22:11.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [c91 05-31 05:22:11.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [c92 05-31 05:22:11.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [c93 05-31 05:22:11.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [c94 05-31 05:22:11.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [c96 05-31 05:22:11.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [c95 05-31 05:22:11.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [c98 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c97 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [c9a 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c99 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [c9b 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [c9c 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [c9e 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [c9f 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [c9d 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ca1 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ca0 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ca2 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ca3 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ca4 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ca5 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ca6 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [ca7 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ca8 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [ca9 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [caa 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org1.example.com | [cab 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [cac 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [cad 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [cb0 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [cb1 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [cb2 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [cb3 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [cb4 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [cb5 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [cb6 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [caf 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [cae 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [cb7 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [cb8 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [cb9 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [cbb 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [cba 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [cbc 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [cbd 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [cbe 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [cc0 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [cbf 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [cc2 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [cc1 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [cc3 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [cc4 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [cc5 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [ec4 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ec8 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [ec9 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [eca 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [ecb 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [ecc 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ecd 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [ece 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [ecf 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [ed0 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [ed1 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [ed2 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [ed3 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [ed4 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [ed5 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [ed6 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [ed7 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [ed8 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [ed9 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [eda 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [edc 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [edb 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [edd 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [ede 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [edf 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [ee0 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [ee1 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [ee2 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [ee3 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [ee4 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [ee5 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [ee6 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [ee7 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [ee8 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ee9 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [eea 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [eeb 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [eec 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [eed 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [eee 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [eef 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [ef0 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [ef1 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [ef2 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [ef3 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [ef4 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [ef5 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [ef6 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [ef7 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [fa0 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [f9e 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [fa1 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [fa2 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [fa3 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [fa4 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [fa5 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [fa6 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [fa7 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [fa8 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [fa9 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [fab 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [fad 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [fac 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [fae 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [faa 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [fb0 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [faf 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [fb1 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [d0f 05-31 05:22:07.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [d10 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [d11 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [d12 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [d13 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [d14 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [d15 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d16 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [d17 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [d18 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [d19 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d1a 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [d1b 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 52 but got ts: inc_num:1527744090808810100 seq_num:51 -peer0.org2.example.com | [d1c 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d1d 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d1e 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [d1f 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d20 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d21 05-31 05:22:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [d22 05-31 05:22:08.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [d23 05-31 05:22:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 49 but got ts: inc_num:1527744091508552400 seq_num:48 -peer0.org2.example.com | [d24 05-31 05:22:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d25 05-31 05:22:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d26 05-31 05:22:08.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [d27 05-31 05:22:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -orderer.example.com | [a09 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a0a 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal matched by identity 0 -orderer.example.com | [a0b 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 78 97 14 55 c5 89 74 4a 7f 72 e9 18 26 15 50 b4 |x..U..tJ.r..&.P.| -orderer.example.com | 00000010 4e c0 c9 dc 91 ff be 67 2c 14 5f c5 0a f0 d4 fc |N......g,._.....| -orderer.example.com | [a0c 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 82 fa 9e f2 40 c8 3a b4 1d 12 20 |0E.!.....@.:... | -orderer.example.com | 00000010 b9 50 82 57 c1 c5 b9 48 69 8b 8e 3a 0a 79 60 b4 |.P.W...Hi..:.y`.| -orderer.example.com | 00000020 08 03 d5 39 be 02 20 36 a2 e8 93 56 3a 9d f7 74 |...9.. 6...V:..t| -orderer.example.com | 00000030 73 9b bb 47 c7 35 14 ef b4 68 58 58 25 a3 e0 41 |s..G.5...hXX%..A| -orderer.example.com | 00000040 25 9e c6 7d 31 38 e4 |%..}18.| -orderer.example.com | [a0d 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal evaluation succeeds for identity 0 -orderer.example.com | [a0e 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1527744205309949600 evaluation succeeds -orderer.example.com | [a0f 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a10 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a11 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [a12 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a13 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a14 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a15 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b88aa0) start: > stop: > from 172.18.0.7:41412 -orderer.example.com | [a16 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a17 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40094] -orderer.example.com | [a18 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20212], Going to peek [8] bytes -orderer.example.com | [a19 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -orderer.example.com | [a1a 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [a1b 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b88aa0) for 172.18.0.7:41412 -orderer.example.com | [a1c 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41412 for (0xc420b88aa0) -orderer.example.com | [a1d 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41412 -orderer.example.com | [a1f 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41412 -peer1.org2.example.com | [fb2 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [fb3 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [fb4 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [fb6 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [fb5 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [fb7 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [fb8 05-31 05:22:22.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [fb9 05-31 05:22:22.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [fba 05-31 05:22:22.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [fbb 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [fbc 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [fbd 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [fbe 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [fbf 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [fc0 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [fc1 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [fc2 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [fc3 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [fc4 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [fc5 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [fc6 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [fc7 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [fc8 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [fc9 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [fca 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [fcb 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [fcc 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [fcd 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [fce 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [fcf 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [fd0 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [fd1 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [fd2 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [fd3 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [fd4 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [fd5 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [fd6 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [fd8 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [fd7 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [fd9 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [fda 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [fdb 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [a1e 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a20 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a21 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a22 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a23 05-31 05:23:25.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41412: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a24 05-31 05:23:25.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a25 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a26 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41414 -orderer.example.com | [a27 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41414 -orderer.example.com | [a28 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a29 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a2a 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a2b 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a2c 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a2d 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1527744205513592100 evaluation starts -orderer.example.com | [a2e 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a2f 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a30 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal matched by identity 0 -orderer.example.com | [a31 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 52 33 57 d8 0a 21 50 a9 bc f0 89 51 23 52 93 d4 |R3W..!P....Q#R..| -orderer.example.com | 00000010 7a 72 a4 c8 d7 83 7e 68 40 7c b2 90 3e 87 08 53 |zr....~h@|..>..S| -orderer.example.com | [a32 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 71 ec 0f 80 f0 d2 f6 0e e0 79 e0 a8 |0D. q........y..| -orderer.example.com | 00000010 26 bf 20 cf e9 4e f7 5e 2c 07 fd 18 bc 5e 34 2a |&. ..N.^,....^4*| -orderer.example.com | 00000020 c8 1a 0c 72 02 20 6e dd 32 f6 e8 4e 32 90 55 4c |...r. n.2..N2.UL| -orderer.example.com | 00000030 70 29 84 bd 89 59 9c ee f2 28 03 30 94 50 07 cd |p)...Y...(.0.P..| -orderer.example.com | 00000040 ec 5b 10 c4 ef 58 |.[...X| -orderer.example.com | [a33 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal evaluation succeeds for identity 0 -orderer.example.com | [a34 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1527744205513592100 evaluation succeeds -orderer.example.com | [a35 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a36 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a37 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [a38 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a39 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a3a 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a3b 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b89be0) start: > stop: > from 172.18.0.7:41414 -orderer.example.com | [a3c 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a3d 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45416] -orderer.example.com | [a3e 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14890], Going to peek [8] bytes -orderer.example.com | [a3f 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[45416], bytesOffset=[45418]} -orderer.example.com | [a40 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [a41 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b89be0) for 172.18.0.7:41414 -orderer.example.com | [a42 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41414 for (0xc420b89be0) -orderer.example.com | [a43 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41414 -orderer.example.com | [a44 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41414 -orderer.example.com | [a45 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a46 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a47 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a48 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a49 05-31 05:23:25.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41414: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a4a 05-31 05:23:25.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a4b 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a4c 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41416 -peer0.org2.example.com | [d28 05-31 05:22:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [d29 05-31 05:22:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [d2a 05-31 05:22:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [d2b 05-31 05:22:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [d2c 05-31 05:22:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d2d 05-31 05:22:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [d2e 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49088 -peer0.org2.example.com | [d2f 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4230a7da0 -peer0.org2.example.com | [d30 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [d31 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [d32 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org2.example.com | [d33 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [d34 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [d35 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422bd4320, header 0xc422be2120 -peer0.org2.example.com | [d36 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org2.example.com | [d37 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][0768437b] processing txid: 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c -peer0.org2.example.com | [d38 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -peer0.org2.example.com | [d39 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [d3a 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -peer0.org2.example.com | [d3b 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][0768437b] Entry chaincode: name:"lscc" -peer0.org2.example.com | [d3c 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled -peer0.org2.example.com | [d3d 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org2.example.com | [d3e 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c,syscc=true,proposal=0xc422bd4320,canname=lscc:1.2.0) -peer0.org2.example.com | [d3f 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org2.example.com | [d40 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [d41 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0768437b]Received message TRANSACTION from peer -peer0.org1.example.com | [ef8 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ef9 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [efa 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [efb 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 60 but got ts: inc_num:1527744090808810100 seq_num:58 -peer0.org1.example.com | [efc 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [efd 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [efe 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [eff 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f00 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [f01 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f02 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [f03 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 57 but got ts: inc_num:1527744091508552400 seq_num:56 -peer0.org1.example.com | [f04 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [f05 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f06 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [f07 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [f08 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [f09 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [f0a 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [f0b 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [f0c 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [f0d 05-31 05:22:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f0e 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f0f 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [fdc 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [fdd 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [fde 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [fdf 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [fe0 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [fe1 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [fe2 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [fe3 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [fe4 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [fe5 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [fe6 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [fe7 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [fe8 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [fe9 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [fea 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [feb 05-31 05:22:22.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [fec 05-31 05:22:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [fed 05-31 05:22:22.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [fee 05-31 05:22:22.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [fef 05-31 05:22:22.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [ff0 05-31 05:22:22.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [ff1 05-31 05:22:22.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [ff2 05-31 05:22:22.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [ff3 05-31 05:22:22.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [a4d 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41416 -orderer.example.com | [a4e 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a4f 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a50 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a51 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org1.example.com | [cc6 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [cc7 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [cc8 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [cc9 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [cca 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [ccb 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [ccc 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [ccd 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [cce 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [ccf 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [cd1 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [cd0 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [cd2 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [cd3 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [cd4 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [cd5 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [cd6 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [cd7 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [cd8 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [cd9 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [cda 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [cdb 05-31 05:22:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [cdc 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 53 but got ts: inc_num:1527744091618763800 seq_num:51 -peer1.org1.example.com | [cdd 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [cde 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [cdf 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [ce0 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ce1 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [ce2 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ce3 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ce4 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [ce5 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [ce6 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [ce7 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [ce8 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [ce9 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [cea 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [ceb 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [cec 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ced 05-31 05:22:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [cee 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [cef 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 53 but got ts: inc_num:1527744091618763800 seq_num:52 -peer1.org1.example.com | [cf0 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [cf1 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [cf2 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [cf3 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [cf4 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [cf5 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [cf6 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [cf7 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [cf8 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [cf9 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [cfa 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [cfb 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [cfc 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [cfd 05-31 05:22:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [cfe 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [cff 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [d00 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d01 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [d02 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [d03 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [d04 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [d05 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d06 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [d07 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [d08 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d09 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [d0a 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [d0b 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [d0c 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [d0d 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [d0e 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [d0f 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [d10 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [d11 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [d12 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [d13 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [d14 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [d15 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" secret_envelope: > alive: > -peer1.org1.example.com | [d16 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [d17 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [d18 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d19 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d1a 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [d1b 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d1c 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d1d 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d1e 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [d1f 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} -peer1.org1.example.com | [d20 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [d21 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [d22 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [d23 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [d24 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [d25 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [d26 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer1.org1.example.com | [d27 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer1.org1.example.com | [d29 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d28 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d2a 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [d2b 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [d2c 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d2d 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d2e 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [d2f 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d30 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d31 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [d32 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d33 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d34 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [d35 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d36 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org1.example.com | [d37 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [d38 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d39 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d3a 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [d3b 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d3c 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d3d 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d3e 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [d3f 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [d40 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [d41 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [d42 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [d43 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [d44 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [d45 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [d46 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d47 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d48 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [d49 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [d4c 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [d4d 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d4e 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d50 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [d4a 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [d51 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [d52 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [d53 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [d54 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d4b 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d55 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d57 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [d58 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer1.org1.example.com | [d59 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer1.org1.example.com | [d5a 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [d5b 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [d5c 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4240d1b40 env 0xc4234edc50 txn 0 -peer1.org1.example.com | [d5d 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d5e 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4234edc50 -peer1.org1.example.com | [d62 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -peer1.org2.example.com | [ff4 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [ff5 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ff6 05-31 05:22:23.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [ff7 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ff8 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [ff9 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ffa 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [ffb 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [ffc 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [ffd 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [ffe 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [fff 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1000 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [1001 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1002 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1003 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1004 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1005 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1006 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1007 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1008 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1009 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [100a 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [100b 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [f10 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [f11 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f12 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f13 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f14 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [f15 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [f16 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [f17 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [f18 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [f19 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [f1a 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [f1b 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f1c 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [f1d 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [f1e 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f1f 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f20 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f21 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f22 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [f23 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [f24 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [f25 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f26 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f27 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [f28 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d56 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d5f 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 3}, Envelope: 5364 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [d4f 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d60 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [d61 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [d64 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [d63 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [d65 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 3}, Envelope: 5364 bytes, Signature: 0 bytes -peer1.org1.example.com | [d66 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [d67 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [d68 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [a52 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a53 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2e8 gate 1527744205704833000 evaluation starts -orderer.example.com | [a54 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a55 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [a56 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e8 principal matched by identity 0 -orderer.example.com | [a57 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 53 d8 1b e0 9a 7f 46 d6 2c b1 f8 81 6c 11 9d ba |S.....F.,...l...| -orderer.example.com | 00000010 65 43 1d 23 fe 1d c7 a2 81 f3 a0 2f 34 95 35 a6 |eC.#......./4.5.| -orderer.example.com | [a58 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8a 9a aa 4a ab 51 31 79 d5 af c0 |0E.!....J.Q1y...| -orderer.example.com | 00000010 53 56 6c b5 5a 85 8a 33 34 69 c9 7b 9c da ba 03 |SVl.Z..34i.{....| -orderer.example.com | 00000020 ec 87 88 2c 71 02 20 1e e7 2a 22 5d da 15 f0 78 |...,q. ..*"]...x| -orderer.example.com | 00000030 2c 77 61 f3 19 4b 1d 06 a1 c8 3e 09 96 64 1f 6b |,wa..K....>..d.k| -orderer.example.com | 00000040 58 15 74 c9 08 c3 e8 |X.t....| -orderer.example.com | [a59 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e8 principal evaluation succeeds for identity 0 -orderer.example.com | [a5a 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2e8 gate 1527744205704833000 evaluation succeeds -orderer.example.com | [a5b 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a5c 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a5d 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [a5e 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a5f 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a60 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a61 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b3aaa0) start: > stop: > from 172.18.0.7:41416 -orderer.example.com | [a62 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a63 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50738] -peer0.org2.example.com | [d42 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0768437b] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org2.example.com | [d43 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [0768437b] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org2.example.com | [d44 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [0768437b] Sending GET_STATE -peer0.org2.example.com | [d45 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0768437b] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [d46 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0768437b] handling GET_STATE from chaincode -peer0.org2.example.com | [d47 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [0768437b] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org2.example.com | [d48 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [d49 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [0768437b] No state associated with key: -peer0.org2.example.com | exp02. Sending RESPONSE with an empty payload -peer0.org2.example.com | [d4a 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0768437b] Completed GET_STATE. Sending RESPONSE -peer0.org2.example.com | [d4b 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0768437b]Received message RESPONSE from peer -peer0.org2.example.com | [d4c 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0768437b] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [d4d 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [0768437b] before send -peer0.org2.example.com | [d4e 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [0768437b] after send -peer0.org2.example.com | [d4f 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [0768437b] Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [d50 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [0768437b] GetState received payload RESPONSE -peer0.org2.example.com | [d51 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [0768437b] Sending PUT_STATE -peer0.org2.example.com | [d52 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0768437b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org2.example.com | [d53 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0768437b] handling PUT_STATE from chaincode -peer0.org2.example.com | [d54 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0768437b] Completed PUT_STATE. Sending RESPONSE -peer0.org2.example.com | [d55 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0768437b]Received message RESPONSE from peer -peer0.org2.example.com | [d56 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0768437b] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org2.example.com | [d57 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [0768437b] before send -peer0.org2.example.com | [d58 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [0768437b] after send -peer0.org2.example.com | [d59 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [0768437b] Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [d5a 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [0768437b] Received RESPONSE. Successfully updated state -peer0.org2.example.com | [d5b 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -peer0.org2.example.com | [d5c 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0768437b] Transaction completed. Sending COMPLETED -peer0.org2.example.com | [d5d 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [0768437b] send state message COMPLETED -peer0.org2.example.com | [d5e 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0768437b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [d5f 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [0768437b] notifying Txid:0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, channelID:businesschannel -peer0.org2.example.com | [d60 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [d61 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c,syscc=false,proposal=0xc422bd4320,canname=exp02:1.0) -peer0.org2.example.com | [d62 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched -peer0.org2.example.com | [d63 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer0.org2.example.com | [d64 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 -peer0.org2.example.com | [d65 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org2.example.com:7052 -peer0.org2.example.com | [d66 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer0.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer0.org1.example.com | [f29 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f2a 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f2b 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f2c 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [f2d 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f2e 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f2f 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f30 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [f31 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f32 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [f33 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f34 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [f35 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [f36 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [f37 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [f38 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [f39 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [f3a 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [f3b 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f3c 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [f3d 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [d69 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [d6a 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [d6b 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [d6c 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org1.example.com | [d6d 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [d6e 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [d6f 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [d70 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [d71 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [d72 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [d73 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [d74 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [d75 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [d76 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [d77 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [d78 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [d79 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [d7a 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0209" signature:"0C\002 b9'\026(\226\035\317\036\343\371\034P:\212\020\2704d\376@\241\231\222\324\362\320\266E\275\364\212\002\037@4\225\330+\303\200<\321<\244\224\007\256c\274L'\237v&!\202S2\244\311\256\nfh" > alive: alive: alive: -peer1.org1.example.com | [d7b 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [d7c 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [d7d 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [d7e 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4231ac000, header channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -peer1.org1.example.com | [d7f 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [d80 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [d81 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [d82 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org1.example.com | [d83 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -peer1.org1.example.com | [d84 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [d85 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc4230cf000 -peer1.org1.example.com | [d86 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin -peer1.org1.example.com | [d87 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [d88 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [d89 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [d8a 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [d8b 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org1.example.com | [d8c 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [d8d 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [57c73de8-b2bb-496f-9de0-cbfd4d5877d5] -peer1.org1.example.com | [d8e 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [d8f 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [57c73de8-b2bb-496f-9de0-cbfd4d5877d5] -peer1.org1.example.com | [d90 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org1.example.com | [d91 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: -peer1.org1.example.com | [d92 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 appears to be valid -peer1.org1.example.com | [d93 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc4230cf000 -peer1.org1.example.com | [d94 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4240d1b40 env 0xc4234edc50 txn 0 -peer1.org1.example.com | [d95 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [d96 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [d97 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -peer1.org1.example.com | [d98 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [d99 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -peer1.org1.example.com | [d9a 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [d9b 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org1.example.com | [d9c 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [d9d 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer1.org1.example.com | [d9e 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] marked as valid by state validator -peer1.org1.example.com | [d9f 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [da0 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [da1 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [da2 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc423eb8ab0)} -peer1.org1.example.com | [da3 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -peer1.org1.example.com | [da4 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -peer1.org1.example.com | [da5 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -peer1.org1.example.com | [da6 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} -peer1.org1.example.com | [da7 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -peer1.org1.example.com | [da8 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} -peer1.org1.example.com | [da9 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc4205c2920})} -peer1.org1.example.com | [daa 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -peer1.org1.example.com | [dab 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] -peer1.org1.example.com | [dac 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xf3, 0xc7, 0x4f, 0xbb, 0x87, 0x22, 0x1c, 0x17, 0x22, 0xe5, 0x99, 0xfa, 0x51, 0x89, 0x6e, 0x4f, 0xee, 0x11, 0xe1, 0x74, 0x74, 0x8f, 0xd0, 0xe3, 0xb8, 0xb3, 0x7d, 0x74, 0x4f, 0x3e, 0x8f, 0x87} txOffsets= -peer1.org1.example.com | txId=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 locPointer=offset=70, bytesLength=3459 -peer1.org1.example.com | ] -peer1.org1.example.com | [dad 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to index -peer0.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer0.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer0.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer0.org2.example.com | [d67 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock -peer0.org2.example.com | [d68 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock -peer0.org2.example.com | [d69 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Cleanup container dev-peer0.org2.example.com-exp02-1.0 -peer0.org2.example.com | [d6a 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Stop container dev-peer0.org2.example.com-exp02-1.0(No such container: dev-peer0.org2.example.com-exp02-1.0) -peer0.org2.example.com | [d6b 05-31 05:22:10.01 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.org2.example.com | [d6c 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Remove container dev-peer0.org2.example.com-exp02-1.0 (No such container: dev-peer0.org2.example.com-exp02-1.0) -peer0.org2.example.com | [d6d 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Start container dev-peer0.org2.example.com-exp02-1.0 -peer0.org2.example.com | [d6e 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer0.org2.example.com | [d6f 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 -peer0.org2.example.com | [d70 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image -peer0.org2.example.com | [d71 05-31 05:22:10.01 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU -peer0.org2.example.com | FROM hyperledger/fabric-baseos:amd64-0.4.8 -peer0.org2.example.com | ADD binpackage.tar /usr/local/bin -peer0.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer0.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer0.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer0.org2.example.com | org.hyperledger.fabric.version="1.2.0" \ -peer0.org2.example.com | org.hyperledger.fabric.base.version="0.4.8" -peer0.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.2.0 -peer0.org2.example.com | [d72 05-31 05:22:10.02 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer0.org2.example.com | [d73 05-31 05:22:10.02 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental -peer0.org2.example.com | [d74 05-31 05:22:10.02 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 -peer0.org2.example.com | [d75 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [d76 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [d77 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [d78 05-31 05:22:10.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [d79 05-31 05:22:10.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [d7a 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [d7b 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [d7c 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [d7d 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [d7e 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [d7f 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [d80 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [d81 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [d82 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [d83 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [d84 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [d85 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d86 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [d87 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [d88 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [d8a 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [d8b 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [d89 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\026\305" > > -peer0.org2.example.com | [d8c 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [d8d 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [d8e 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [d8f 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d90 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d91 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [d92 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [d93 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d94 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [d95 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [d96 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [d97 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [d98 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [d99 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [d9a 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [d9b 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [d9c 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [d9d 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [d9e 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [d9f 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [da0 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [da1 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [da2 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [da3 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [da4 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [da5 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [da6 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [da7 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [da8 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [da9 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [daa 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [dab 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [dac 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [dad 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [dae 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [daf 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [db0 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [db1 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [db2 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [db5 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [db3 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [db4 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [db6 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [db7 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [db8 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [db9 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [dbb 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [dba 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [dbc 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [dbd 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -peer0.org2.example.com | [dbe 05-31 05:22:11.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [dbf 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [dc0 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [dc1 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [dc2 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [dc3 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [dc4 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [dc5 05-31 05:22:11.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -peer0.org2.example.com | [dc6 05-31 05:22:11.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [dc7 05-31 05:22:11.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [dc8 05-31 05:22:11.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [dc9 05-31 05:22:11.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org1.example.com | [f3e 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020>" signature:"0D\002 \"\272T\265L4\227B(\240\000_\355[\246\260\221\261\376:\365\032\337WY\320\274I\222\251k_\002 P\027\313\213.\375t\021\252\000e3O\220&\242\243l\n\322\213joG\210\306K\210\343\027}J" > -peer0.org1.example.com | [f3f 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org1.example.com | [f40 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f41 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [f42 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [f43 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [f44 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [f45 05-31 05:22:15.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f46 05-31 05:22:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [f47 05-31 05:22:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [f48 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f49 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [f4b 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f4a 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f4c 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f4d 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [f4e 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [f4f 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [f50 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [f51 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [f52 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [f53 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [f54 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f55 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [100c 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [100d 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [100e 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [100f 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1010 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020E" signature:"0D\002 4\r]_\321)\370~#\275\240\\#\320C@B\205s\021\312\376\274\327\024\003\373\244=\\\364\214\002 M\236\240\315\022\360\204_\003L\0041\n,;\327+\367\3002\345\365(g\023Us\246\262C\320\177" > alive: alive:\222\021Y\225\253\314\331\230\355\233\300$\346\3420\265{\355\236vf\344x\262\203\360\002 \0026\030\023#\201\245\304\243(\270%|\334hW\022*%\306f\267\321\254\007\310\357k\037\300!\007" > alive: -peer1.org2.example.com | [1011 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1012 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1013 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [1015 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1014 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1016 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1017 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1018 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1019 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [101a 05-31 05:22:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [101b 05-31 05:22:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [101c 05-31 05:22:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [101d 05-31 05:22:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [101e 05-31 05:22:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [101f 05-31 05:22:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1020 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1021 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1022 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1023 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1024 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1025 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [dae 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx number:[0] ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to blockNumTranNum index -peer1.org1.example.com | [daf 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45420], isChainEmpty=[false], lastBlockNumber=[3] -peer1.org1.example.com | [db0 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] -peer1.org1.example.com | [db1 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -peer1.org1.example.com | [db2 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -peer1.org1.example.com | [db3 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -peer1.org1.example.com | [db4 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [db5 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [db6 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [db7 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org1.example.com | [db8 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -peer1.org1.example.com | [db9 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [dbb 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [4b73f60c-4b9f-4b02-9aae-889e50ff13c7] -peer1.org1.example.com | [dbc 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer1.org1.example.com | [dbd 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer1.org1.example.com | [dbe 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org1.example.com | [dbf 05-31 05:22:12.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [dc0 05-31 05:22:12.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 -peer1.org1.example.com | [dc1 05-31 05:22:12.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [dc2 05-31 05:22:12.15 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [dc3 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [dc4 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [dc5 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [dc6 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [dc7 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [dc8 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [dc9 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [dca 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] -peer1.org1.example.com | [dcb 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [dcc 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] -peer1.org1.example.com | [dcd 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [4b73f60c-4b9f-4b02-9aae-889e50ff13c7] -peer1.org1.example.com | [dce 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] -peer1.org1.example.com | [dcf 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -peer1.org1.example.com | [dba 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] -peer1.org1.example.com | [dd0 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [dd1 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [dd2 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [dd3 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [dd4 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [dd5 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [dd6 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [dd7 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [dd8 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [dd9 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [dda 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ddb 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [ddc 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [ddd 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [dde 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [ddf 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [de0 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [de1 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [de2 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [de3 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [de5 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [de4 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0209" signature:"0C\002 b9'\026(\226\035\317\036\343\371\034P:\212\020\2704d\376@\241\231\222\324\362\320\266E\275\364\212\002\037@4\225\330+\303\200<\321<\244\224\007\256c\274L'\237v&!\202S2\244\311\256\nfh" > alive: alive: alive: -peer1.org1.example.com | [de6 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [de7 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [de8 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [de9 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [dea 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [deb 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [dec 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ded 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org1.example.com | [dee 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [def 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [df1 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [df0 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [df2 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [df3 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [df4 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f56 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f57 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [f59 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f5a 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f58 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f5b 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f5c 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f5d 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [f5e 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f5f 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f61 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f60 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f62 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [f64 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f65 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f63 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f66 05-31 05:22:16.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [f67 05-31 05:22:16.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [f68 05-31 05:22:16.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [f69 05-31 05:22:16.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f6a 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f6b 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f6c 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f6d 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [f6e 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1026 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1027 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1028 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [1029 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [102a 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [102b 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [102c 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [102d 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [102e 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [102f 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1030 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1031 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1032 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1033 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1034 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1035 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1036 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1037 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1038 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\222\021Y\225\253\314\331\230\355\233\300$\346\3420\265{\355\236vf\344x\262\203\360\002 \0026\030\023#\201\245\304\243(\270%|\334hW\022*%\306f\267\321\254\007\310\357k\037\300!\007" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > alive: -peer1.org2.example.com | [1039 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [103a 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [103b 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [103c 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [103d 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [103e 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [103f 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1040 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1041 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1042 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1043 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1044 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1045 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [1046 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1047 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1048 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1049 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [104a 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [104c 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [104d 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [104e 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [104f 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1050 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [104b 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1051 05-31 05:22:25.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [1052 05-31 05:22:25.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1053 05-31 05:22:25.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1054 05-31 05:22:25.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1055 05-31 05:22:25.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1056 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1057 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1058 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1059 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [105a 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [105c 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [105b 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [105d 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [105e 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [105f 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1060 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1061 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1062 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1063 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1064 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1065 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1066 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1067 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1068 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1069 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [106a 05-31 05:22:26.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [106b 05-31 05:22:26.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [106c 05-31 05:22:26.41 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [106d 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [106e 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [106f 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1070 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1071 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1072 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1073 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1074 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1075 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1076 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1077 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1078 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1079 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [107a 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [107b 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [107c 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [107d 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [107e 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [107f 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1080 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1081 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1082 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1084 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1083 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1085 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1086 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1088 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1087 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1089 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [108a 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [108b 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [108d 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [108e 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [108f 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1090 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1091 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1092 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1093 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [dca 05-31 05:22:11.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [dcb 05-31 05:22:11.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org2.example.com | [dcc 05-31 05:22:11.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [dcd 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [dcf 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [dce 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:9200526324220404161 tag:EMPTY mem_req: > , Envelope: 982 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [dd1 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [dd0 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:9200526324220404161 tag:EMPTY mem_req: > , Envelope: 982 bytes, Signature: 0 bytes -peer0.org2.example.com | [dd3 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [dd2 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [dd4 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 9200526324220404161, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -peer0.org2.example.com | [dd5 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 9200526324220404161, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -peer0.org2.example.com | [dd6 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [dd7 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 9200526324220404161, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -peer0.org2.example.com | [dd8 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [dd9 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [dda 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [ddb 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ddc 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ddd 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [dde 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 49 but got ts: inc_num:1527744091508552400 seq_num:48 -peer0.org2.example.com | [ddf 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [de0 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [de1 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [de2 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [de3 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [de4 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [de5 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [de6 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [de7 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [de8 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [de9 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [dea 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [deb 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [dec 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ded 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [dee 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [def 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [df0 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [df1 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [df2 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [df3 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [df4 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [df5 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [df6 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [df7 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0204" signature:"0E\002!\000\247\372fx\273j\000\037\200\230\327w\242-\222c\222/\354\241v\265\351U\025\2776\002\276\305\r\271\002 t4\345\223>O\310>\031\225\027\024\030\342\220 \033\213\237>\256\274\223\213\234x8U\033f\000x" > alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > alive: -peer0.org2.example.com | [df8 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [df9 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [dfa 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [dfb 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [dfc 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [dfd 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [dfe 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [dff 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [e00 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e01 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e03 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [e02 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e04 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 52 but got ts: inc_num:1527744091508552400 seq_num:51 -peer0.org2.example.com | [e05 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [e06 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [e08 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e09 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e07 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e0b 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [e0a 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [e0c 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e0d 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e0e 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [e0f 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [e11 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e12 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e10 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [e13 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e14 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e15 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [e16 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [e17 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e18 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [e19 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [e1a 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [e1b 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [e1c 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e1d 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:7208448587798055339 tag:EMPTY mem_req:\233[\010;\344\331\3768\344\301M\036\010\010\177\205" > > , Envelope: 983 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [e1e 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:7208448587798055339 tag:EMPTY mem_req:\233[\010;\344\331\3768\344\301M\036\010\010\177\205" > > , Envelope: 983 bytes, Signature: 0 bytes -peer0.org2.example.com | [e1f 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e20 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 7208448587798055339, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 657 bytes, Signature: 0 bytes -peer0.org2.example.com | [e21 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 7208448587798055339, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 657 bytes, Signature: 0 bytes -peer0.org2.example.com | [e22 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e23 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 7208448587798055339, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 657 bytes, Signature: 0 bytes -peer0.org2.example.com | [e24 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [e25 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [e26 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [e27 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [e28 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e29 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [e2a 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [e2b 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e2c 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [e2d 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [e2e 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [e2f 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [e30 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [e31 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [e32 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [e33 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [e34 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -orderer.example.com | [a64 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9568], Going to peek [8] bytes -orderer.example.com | [a65 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4784], placementInfo={fileNum=[0], startOffset=[50738], bytesOffset=[50740]} -orderer.example.com | [a66 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4784] read from file [0] -orderer.example.com | [a67 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b3aaa0) for 172.18.0.7:41416 -orderer.example.com | [a68 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41416 for (0xc420b3aaa0) -orderer.example.com | [a69 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41416 -orderer.example.com | [a6a 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41416 -orderer.example.com | [a6b 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a6c 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a6d 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a6e 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a6f 05-31 05:23:25.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41416: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a70 05-31 05:23:25.71 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a71 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a72 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41418 -orderer.example.com | [a73 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41418 -orderer.example.com | [a74 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a75 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a76 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a77 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a78 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a79 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e348 gate 1527744205903404500 evaluation starts -orderer.example.com | [a7a 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e348 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [a7b 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e348 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [df5 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [df6 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [df7 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [df8 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 1 2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [df9 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [dfa 05-31 05:22:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [dfb 05-31 05:22:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [dfc 05-31 05:22:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [dfd 05-31 05:22:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [dfe 05-31 05:22:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e00 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 739 bytes, Signature: 0 bytes -peer1.org1.example.com | [e01 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 739 bytes, Signature: 0 bytes -peer1.org1.example.com | [dff 05-31 05:22:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [e02 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e03 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 754 bytes, Signature: 0 bytes -peer1.org1.example.com | [e04 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [e05 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e07 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 754 bytes, Signature: 0 bytes -peer1.org1.example.com | [e06 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer1.org1.example.com | [e08 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [e09 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e0a 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [e0b 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e0c 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [e0d 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e0e 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f6f 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f70 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [f71 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f72 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f73 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f74 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [f75 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f76 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [f77 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f78 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f79 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f7a 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [f7b 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f7c 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f7d 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f7e 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f7f 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [f80 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f81 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [f82 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [f84 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f83 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f85 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f86 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [f87 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f88 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f89 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [f8a 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f8b 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f8c 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [f8d 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [f8e 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [f8f 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [f90 05-31 05:22:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [f91 05-31 05:22:16.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [f92 05-31 05:22:16.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [f93 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f94 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [f95 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [f96 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f97 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f98 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f99 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [f9a 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f9c 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f9d 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [f9b 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [f9e 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [f9f 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [fa1 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [fa2 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [fa0 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fa3 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [fa4 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [fa5 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [fa6 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [fa7 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fa8 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [fa9 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [faa 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fab 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [fac 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [fad 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [fae 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [faf 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [fb0 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [fb1 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [fb2 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [fb3 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [fb4 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [fb5 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [fb6 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [fb7 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [fb8 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [fb9 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020@" signature:"0E\002!\000\232!h\302\321\320\226J\237\350t\003d\\w\010\304d\3156\262\3120\221::m\314\213\014\235\\\002 \021\030\267}\374@\031\266\315L\001\200\022\263\220s+X)9\351\217\201\211\024\000\202'\307\027JI" > -peer0.org1.example.com | [fba 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [fbc 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [fbb 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [fbd 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [fbe 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [fbf 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [fc0 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [fc1 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [fc2 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [fc3 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fc4 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [fc5 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fc6 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [fc7 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fc8 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [fc9 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [fca 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [fcb 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [fcc 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer0.org1.example.com | [fcd 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer0.org1.example.com | [fce 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fcf 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [fd0 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fd1 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [fd2 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [fd3 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [fd4 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fd5 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [fd6 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fd7 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [fd8 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [fd9 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [fda 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fdb 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\277-DO\273" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [fdc 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fdd 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\277-DO\273" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [fde 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [fdf 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [fe0 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [fe1 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [fe2 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [fe3 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [fe4 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [fe5 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [fe6 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [fe7 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [fe8 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [fe9 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\277-DO\273" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020A" signature:"0D\002 ]n\240\032^\207\257\264G\230\277V\221\\\2075=\277?\030~\206\211\013\020\303|6\204\\\3114\002 &V\353\247<\242\345:N\367\302,\017/A\311a\333\226\327+V\372\313\013\344\253\377?S7\t" secret_envelope: > -peer0.org1.example.com | [fea 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [feb 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [fec 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [fed 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [fee 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [fef 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [ff0 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ff1 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [ff2 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [ff3 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ff4 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [ff5 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [ff6 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ff7 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [ff9 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ff8 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [ffb 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [ffa 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [ffc 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [ffd 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e35 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [e36 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [e37 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [e38 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e39 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [e3a 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [e3b 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e3c 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [e3d 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [e3e 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [e3f 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [e40 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [e41 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [e42 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [e43 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [e44 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [e45 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [e46 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [e47 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [e0f 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [e10 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e11 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [e12 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [e13 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [e14 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e15 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [e16 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [e17 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [e18 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e19 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [e1a 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [e1b 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e1c 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [e1d 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [e1e 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [e1f 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [e20 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [e21 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [e22 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [e23 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e24 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [e25 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e26 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [e27 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e28 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [e29 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [e2a 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [e2b 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [a7c 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e348 principal matched by identity 0 -orderer.example.com | [a7d 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 24 f3 aa b5 2e 31 1a 7d 01 f6 21 00 ea 6e dc bd |$....1.}..!..n..| -orderer.example.com | 00000010 65 5b 00 95 73 45 96 2e 10 6f 5c 32 a3 27 71 7a |e[..sE...o\2.'qz| -orderer.example.com | [a7e 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 80 8a 61 61 5a 54 a6 d6 5b 52 30 |0E.!...aaZT..[R0| -orderer.example.com | 00000010 76 d5 ae 50 30 78 95 a9 e4 28 c2 90 88 5c 59 1a |v..P0x...(...\Y.| -orderer.example.com | 00000020 80 02 c7 80 67 02 20 2e 35 04 89 cb ec 60 ff 79 |....g. .5....`.y| -orderer.example.com | 00000030 ef 12 1b 17 e8 aa 15 28 2a 62 de 18 c4 dd a1 aa |.......(*b......| -orderer.example.com | 00000040 1b 9f 82 f7 2d 55 e9 |....-U.| -orderer.example.com | [a7f 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e348 principal evaluation succeeds for identity 0 -orderer.example.com | [a80 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e348 gate 1527744205903404500 evaluation succeeds -orderer.example.com | [a81 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a82 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [a83 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [a84 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [a85 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [a86 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [a87 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b3bbe0) start: > stop: > from 172.18.0.7:41418 -orderer.example.com | [a88 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -orderer.example.com | [a89 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55524] -orderer.example.com | [a8a 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -orderer.example.com | [a8b 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -orderer.example.com | [a8c 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -orderer.example.com | [a8d 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b3bbe0) for 172.18.0.7:41418 -orderer.example.com | [a8e 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41418 for (0xc420b3bbe0) -orderer.example.com | [a8f 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41418 -orderer.example.com | [a91 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41418 -orderer.example.com | [a90 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a92 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a93 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -orderer.example.com | [a94 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -orderer.example.com | [a95 05-31 05:23:25.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41418: rpc error: code = Canceled desc = context canceled -orderer.example.com | [a96 05-31 05:23:25.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [a97 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [a98 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41420 -orderer.example.com | [a99 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41420 -orderer.example.com | [a9a 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [a9b 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a9c 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [a9d 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [a9e 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [a9f 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [aa0 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [aa1 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e390 gate 1527744206136944600 evaluation starts -orderer.example.com | [aa2 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e390 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [aa3 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e390 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [aa4 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -peer0.org2.example.com | [e48 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > alive: alive: -peer0.org2.example.com | [e49 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [e4a 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e4b 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e4c 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e4d 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [e4e 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e4f 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e50 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e51 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [e53 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e54 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [e52 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} -peer0.org2.example.com | [e55 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [e56 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [e57 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [e58 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [e59 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [e5a 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [e5b 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e5c 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [e5d 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e5e 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e5f 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer1.org2.example.com | [1094 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1095 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1096 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [108c 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1097 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1098 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1099 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [109a 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [109b 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [109c 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [109e 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [109f 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [109d 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [10a0 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [10a2 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [10a3 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [10a1 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [10a4 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [10a5 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [10a6 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [10a7 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [10a8 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [10a9 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [10aa 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [10ab 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [10ac 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [10ad 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [10ae 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [10af 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [10b1 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [10b2 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [10b3 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [10b0 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [10b4 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [10b5 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [10b6 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [10b7 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [10b8 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [10b9 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [10ba 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [10bb 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [10bc 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [10bd 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [10bf 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [10be 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [10c0 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [10c1 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [10c2 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [10c3 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [10c4 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [10c5 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [10c6 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [10c7 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [10c8 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10c9 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [10ca 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [10cb 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10cc 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [10cd 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10ce 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [10cf 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [10d1 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [10d0 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [10d2 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [10d3 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [10d4 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [10d5 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [10d6 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [10d7 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [10d8 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [10da 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [10db 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10dc 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [10d9 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [10dd 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10de 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [10df 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [10e0 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10e1 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [10e2 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10e3 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [10e4 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10e5 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [10e6 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [10e7 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [10e8 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [10e9 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [10ea 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [10eb 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [10ec 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [10ee 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [10ef 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [10ed 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10f0 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10f1 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [10f2 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [10f3 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [10f4 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [10f5 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [10f6 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [10f7 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [10f8 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [10f9 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [10fa 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10fb 05-31 05:22:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [10fc 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [10fd 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [10fe 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [10ff 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1100 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [1101 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1102 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1103 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1104 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1106 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1105 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1107 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1108 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1109 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [110a 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [ffe 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [fff 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1000 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1001 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1002 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1003 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1004 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1005 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1006 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1007 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1008 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1009 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [100a 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [100c 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [100b 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [100d 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e2c 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [e2d 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [e2e 05-31 05:22:15.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [e2f 05-31 05:22:15.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [e30 05-31 05:22:15.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e31 05-31 05:22:15.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [e32 05-31 05:22:15.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [e33 05-31 05:22:15.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e34 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [e35 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [e36 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [e37 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e38 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [e3a 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [e39 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [e3b 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e3c 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [e3d 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [e3e 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [e3f 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e40 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [e41 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [e42 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [e43 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [e44 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [e45 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [e46 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [e47 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [e48 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e49 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [e4a 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [e4b 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [e4c 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [e4d 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [e4f 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership -peer1.org1.example.com | [e50 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [e51 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e52 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [e4e 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org1.example.com | [e53 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [e54 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [e55 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org1.example.com | [e56 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [e57 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e58 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [e59 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [e5a 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [e5b 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [e5c 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [e5d 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [e5e 05-31 05:22:15.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [e5f 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e60 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [e61 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org1.example.com | [e63 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [e64 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [e65 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [e62 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e66 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [e67 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e68 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [e69 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [e6a 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [e6b 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [e6c 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [e6d 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [e6e 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [e6f 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e70 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [e72 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e71 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [e73 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [e74 05-31 05:22:15.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [e75 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 59 but got ts: inc_num:1527744090808810100 seq_num:58 -peer1.org1.example.com | [e76 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e77 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [e78 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [e79 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 60 but got ts: inc_num:1527744091618763800 seq_num:58 -peer1.org1.example.com | [e7a 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e7b 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [e7c 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [e7d 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [e7e 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e7f 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [e80 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [e81 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [e82 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [e83 05-31 05:22:15.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [e84 05-31 05:22:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [e85 05-31 05:22:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [e86 05-31 05:22:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e87 05-31 05:22:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [e88 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [e89 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [e8a 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e8b 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [e8c 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [e8d 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e8e 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [e8f 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [e90 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [e91 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [e92 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e93 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [e94 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [e95 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [e96 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [e97 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [e98 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [e99 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [e9a 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [e9b 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [e9c 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [e9d 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [e9e 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [e9f 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [ea0 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [ea1 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [ea2 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > alive: > -peer1.org1.example.com | [ea3 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [ea4 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [ea5 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ea6 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ea7 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ea8 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ea9 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [e60 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [e61 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e62 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e64 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [e63 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer0.org2.example.com | [e65 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -peer0.org2.example.com | [e67 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e68 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e66 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -peer0.org2.example.com | [e69 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e6a 05-31 05:22:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [e6b 05-31 05:22:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [e6c 05-31 05:22:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [e6d 05-31 05:22:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [e6e 05-31 05:22:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [e70 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [e72 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e71 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [e6f 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e73 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e74 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [e75 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [e76 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [e78 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [e77 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [e79 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [e7a 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e7b 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [e7c 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [e7d 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [e7e 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e7f 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e80 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [e81 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [e82 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [e83 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e84 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [e85 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [e86 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [e87 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [e88 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\030\367\323n\004Y\003\253\276H\017\246\016\255H\262\373\231\033'i\002 g\3638\024}\344n\377\333\322\226@\013\203\253Z9\274\331\326\260&f\315\266\004\364\310\016\214\007M" > > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [e89 05-31 05:22:11.91 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] -peer0.org2.example.com | [e8b 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] -peer0.org2.example.com | [e8c 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [e8d 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [e8e 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4240348e0 env 0xc424038420 txn 0 -peer0.org2.example.com | [e8f 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424038420 -peer0.org2.example.com | [e90 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -peer0.org2.example.com | [e91 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [e92 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [e93 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org2.example.com | [e94 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [e95 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [e96 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42301aa80, header channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -peer0.org2.example.com | [e97 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [e98 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [e99 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [e9a 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org2.example.com | [e9b 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -peer0.org2.example.com | [e9c 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [e9d 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc424029000 -peer0.org2.example.com | [e9e 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin -peer0.org2.example.com | [e9f 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [ea0 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [ea1 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [ea2 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [ea3 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org2.example.com | [ea4 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -orderer.example.com | [aa5 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [aa6 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e390 principal matched by identity 0 -orderer.example.com | [aa7 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bb 53 f9 47 85 77 f7 09 91 47 39 4d 1f d1 85 a4 |.S.G.w...G9M....| -orderer.example.com | 00000010 8e 02 2b 78 36 34 c0 3c cb f5 c7 55 f8 6d 60 d5 |..+x64.<...U.m`.| -orderer.example.com | [aa8 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f2 ab 2b 40 cb 53 36 4f 0d 44 55 |0E.!...+@.S6O.DU| -orderer.example.com | 00000010 8d 0d 71 07 d2 2d 11 42 6f fa 07 19 ef 24 45 ab |..q..-.Bo....$E.| -orderer.example.com | 00000020 1c d3 2d d3 bd 02 20 39 50 5f 9e 96 4d e3 13 b7 |..-... 9P_..M...| -orderer.example.com | 00000030 84 9c 09 14 1a 4c c3 bd 49 5c 88 76 e5 05 05 05 |.....L..I\.v....| -orderer.example.com | 00000040 d7 37 43 6f fa 4a 26 |.7Co.J&| -orderer.example.com | [aa9 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e390 principal evaluation succeeds for identity 0 -orderer.example.com | [aaa 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e390 gate 1527744206136944600 evaluation succeeds -orderer.example.com | [aab 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [aac 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [aad 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [aae 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [aaf 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [ab0 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [ab1 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203ae6c0) start: > stop: > from 172.18.0.7:41420 -orderer.example.com | [ab2 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [ab3 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -orderer.example.com | [ab4 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -orderer.example.com | [ab5 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [ab6 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -orderer.example.com | [ab7 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203ae6c0) for 172.18.0.7:41420 -orderer.example.com | [ab8 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41420 for (0xc4203ae6c0) -orderer.example.com | [ab9 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41420 -orderer.example.com | [aba 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41420 -orderer.example.com | [abb 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41420: read: connection reset by peer -orderer.example.com | [abc 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41420: rpc error: code = Canceled desc = context canceled -orderer.example.com | [abd 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [abe 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [abf 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41422 -orderer.example.com | [ac0 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41422 -orderer.example.com | [ac1 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [ac2 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ac3 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer1.org2.example.com | [110b 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [110d 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [110c 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [110e 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [110f 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1110 05-31 05:22:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1112 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1111 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1113 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1114 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1115 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1116 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1117 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1118 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1119 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [111a 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [111b 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [111c 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [111d 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [111e 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [111f 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1120 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1121 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1122 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1123 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1124 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [1125 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ea5 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [dc6f0a04-03a8-46fb-a1f2-4fbd90adefd8] -peer0.org2.example.com | [ea6 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [ea7 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [dc6f0a04-03a8-46fb-a1f2-4fbd90adefd8] -peer0.org2.example.com | [ea9 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [eaa 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [eab 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [ea8 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org2.example.com | [eac 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: -peer0.org2.example.com | [ead 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 appears to be valid -peer0.org2.example.com | [eae 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc424029000 -peer0.org2.example.com | [eaf 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4240348e0 env 0xc424038420 txn 0 -peer0.org2.example.com | [eb0 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [eb1 05-31 05:22:11.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [eb2 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -peer0.org2.example.com | [eb3 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [eb4 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -peer0.org2.example.com | [eb5 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [eb6 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer0.org2.example.com | [eb7 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [eb8 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -peer0.org2.example.com | [eb9 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] marked as valid by state validator -peer0.org2.example.com | [eba 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [ebb 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [ebc 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [100e 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [100f 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1010 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1011 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1012 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1013 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1014 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1016 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1017 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [1018 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1019 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1015 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [101a 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [101b 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [101c 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [101d 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [101e 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [101f 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1020 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1021 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1022 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1023 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1024 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1025 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1026 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org2.example.com | [1126 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1127 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1128 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1129 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [112a 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [112b 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [112c 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [112d 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [112e 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [112f 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1130 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1131 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1132 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [1133 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1134 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020J" signature:"0E\002!\000\321\033~(\227\316\210\326\000Hy\177\240\372\211\273\035\037\303\035\337\177g\360J\252:\320\271\315\240\\\002 \013T5\234\322\007\000d\210\241\216\037\347\026,\225\327i1\316\336\300\237>\322\377\356\031/\211\321\327" > alive:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > alive: -peer1.org2.example.com | [1135 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1136 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1137 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [1138 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1139 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [113a 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [113b 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [113c 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [113d 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [113e 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [113f 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1140 05-31 05:22:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [1141 05-31 05:22:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1142 05-31 05:22:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [1143 05-31 05:22:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1144 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1145 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1146 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1147 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1148 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1149 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [114a 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [114b 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [114c 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [114d 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [114e 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [114f 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1150 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1151 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1152 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1027 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1028 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1029 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [102a 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [102b 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [102c 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [102d 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [102e 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1030 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1031 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [102f 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1032 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1033 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1034 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1035 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1036 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1037 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1038 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1039 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [103a 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 67 but got ts: inc_num:1527744091840124700 seq_num:65 -peer0.org1.example.com | [103b 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [103c 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [103d 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [103e 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [103f 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1040 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [eaa 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [eab 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [eac 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [ead 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [eae 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [ebd 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc4240c24e0)} -peer0.org2.example.com | [ebe 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -peer0.org2.example.com | [ebf 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -peer0.org2.example.com | [ec0 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [ec1 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [ec4 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -peer0.org2.example.com | [ec5 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} -peer0.org2.example.com | [ec6 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -peer0.org2.example.com | [ec8 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} -peer0.org2.example.com | [ec9 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc42057a940})} -peer0.org2.example.com | [eca 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -peer0.org2.example.com | [ec2 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [ecc 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [ec7 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [ec3 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 3}, Envelope: 5364 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [ecd 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 3}, Envelope: 5364 bytes, Signature: 0 bytes -peer0.org2.example.com | [ece 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [e8a 05-31 05:22:11.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [ecf 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [ed0 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ecb 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] -orderer.example.com | [ac4 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ac5 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [ac6 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3f0 gate 1527744206333556000 evaluation starts -orderer.example.com | [ac7 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ac8 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ac9 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3f0 principal matched by identity 0 -orderer.example.com | [aca 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 01 96 a2 d8 52 f4 bc d6 fd 4b 75 a3 74 69 82 76 |....R....Ku.ti.v| -orderer.example.com | 00000010 a1 ad a3 f1 f5 90 aa 85 25 29 9e e3 cd e6 b2 df |........%)......| -orderer.example.com | [acb 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1b 1e a8 48 e5 f5 25 8b 42 bf b4 e2 |0D. ...H..%.B...| -orderer.example.com | 00000010 a3 ec 35 4e 60 f2 9c 58 49 d2 c0 d9 a7 a5 ad ca |..5N`..XI.......| -orderer.example.com | 00000020 da a3 c6 6c 02 20 6a 80 2c ab e7 78 cd a8 6f 2f |...l. j.,..x..o/| -orderer.example.com | 00000030 3f 15 fe 2f 8b fa 72 69 ea 24 70 f8 05 e5 18 42 |?../..ri.$p....B| -orderer.example.com | 00000040 b6 58 29 81 36 88 |.X).6.| -orderer.example.com | [acc 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3f0 principal evaluation succeeds for identity 0 -orderer.example.com | [acd 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3f0 gate 1527744206333556000 evaluation succeeds -orderer.example.com | [ace 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [acf 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [ad0 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [ad1 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [ad2 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [ad3 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [ad4 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203afaa0) start: > stop: > from 172.18.0.7:41422 -orderer.example.com | [ad5 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [ad6 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -orderer.example.com | [ad7 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -orderer.example.com | [ad8 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [ad9 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -orderer.example.com | [ada 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203afaa0) for 172.18.0.7:41422 -orderer.example.com | [adb 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41422 for (0xc4203afaa0) -orderer.example.com | [adc 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41422 -orderer.example.com | [add 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41422 -orderer.example.com | [ade 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [adf 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ae0 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [ae1 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ae2 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [ae3 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e438 gate 1527744206340683600 evaluation starts -orderer.example.com | [ae4 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e438 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ae5 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e438 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ae6 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e438 principal matched by identity 0 -orderer.example.com | [ae7 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 13 2d c1 87 ea ec 03 11 ee e8 0e 06 4a 7c 9f 83 |.-..........J|..| -orderer.example.com | 00000010 ba d6 65 8a c6 c8 e9 ac 63 4e ea 27 27 9c 87 c0 |..e.....cN.''...| -orderer.example.com | [ae8 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a4 6b a3 92 cf 9a 73 02 c1 3a 58 |0E.!..k....s..:X| -orderer.example.com | 00000010 f0 e2 1d b2 f1 dc c3 b6 00 c0 5a b7 bb 28 a3 0a |..........Z..(..| -orderer.example.com | 00000020 3b 22 15 cc 46 02 20 6f b4 a9 4d 16 70 fa 30 bd |;"..F. o..M.p.0.| -orderer.example.com | 00000030 af 46 f9 be de 74 32 3f 7a 79 6a f3 ee 45 1f 19 |.F...t2?zyj..E..| -orderer.example.com | 00000040 b2 cc 20 a0 70 f5 17 |.. .p..| -orderer.example.com | [ae9 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e438 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [ed1 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [ed2 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ed3 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [ed4 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ed5 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [ed6 05-31 05:22:12.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [ed8 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ed9 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [eda 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [edb 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [ede 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes -peer0.org2.example.com | [edf 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes -peer0.org2.example.com | [ed7 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xf3, 0xc7, 0x4f, 0xbb, 0x87, 0x22, 0x1c, 0x17, 0x22, 0xe5, 0x99, 0xfa, 0x51, 0x89, 0x6e, 0x4f, 0xee, 0x11, 0xe1, 0x74, 0x74, 0x8f, 0xd0, 0xe3, 0xb8, 0xb3, 0x7d, 0x74, 0x4f, 0x3e, 0x8f, 0x87} txOffsets= -peer0.org2.example.com | txId=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 locPointer=offset=70, bytesLength=3459 -peer0.org2.example.com | ] -peer0.org2.example.com | [ee0 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to index -peer0.org2.example.com | [ee1 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx number:[0] ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to blockNumTranNum index -peer0.org2.example.com | [edc 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [ee2 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [ee3 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [ee4 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [ee5 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [edd 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [ee6 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [ee7 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [ee8 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1153 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1154 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1155 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1156 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1157 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1158 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1159 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [115a 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [115b 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [115c 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [115d 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > alive:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > alive: alive: -peer1.org2.example.com | [115e 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [115f 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1160 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1161 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1162 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1163 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1164 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1165 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1166 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [eaf 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [eb0 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [eb1 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [eb2 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [eb3 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [eb4 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [eb5 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [eb6 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [eb7 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [eb8 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [eb9 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [eba 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [ebb 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [ebc 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [ebd 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ebe 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ebf 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ec0 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ec1 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ec2 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ec4 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [ec3 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ec5 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ec6 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ec7 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [aea 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e438 gate 1527744206340683600 evaluation succeeds -orderer.example.com | [aeb 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [aec 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [aed 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [aee 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [aef 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [af0 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [af1 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203a1220) start: > stop: > from 172.18.0.7:41422 -orderer.example.com | [af2 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [af3 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [af4 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24012], Going to peek [8] bytes -orderer.example.com | [af5 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [af6 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [af7 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203a1220) for 172.18.0.7:41422 -orderer.example.com | [af8 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41422 for (0xc4203a1220) -orderer.example.com | [af9 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41422 -orderer.example.com | [afa 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41422 -orderer.example.com | [afb 05-31 05:23:26.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41422: rpc error: code = Canceled desc = context canceled -orderer.example.com | [afc 05-31 05:23:26.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [afd 05-31 05:23:26.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [afe 05-31 05:23:26.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41424 -orderer.example.com | [aff 05-31 05:23:26.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41424 -orderer.example.com | [b00 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [b01 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b02 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [b03 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b04 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [b05 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4a0 gate 1527744206480846800 evaluation starts -peer0.org2.example.com | [ee9 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [eea 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [eeb 05-31 05:22:12.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [eec 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [eed 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [eee 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [ef0 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ef1 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [eef 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes -peer0.org2.example.com | [ef2 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [ef3 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [ef4 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [ef5 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ef6 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [ef7 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [ef8 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45420], isChainEmpty=[false], lastBlockNumber=[3] -peer0.org2.example.com | [ef9 05-31 05:22:12.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] -peer0.org2.example.com | [efa 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -peer0.org2.example.com | [efb 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -peer0.org2.example.com | [efc 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -peer0.org2.example.com | [efd 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [efe 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [eff 05-31 05:22:12.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [f00 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1041 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1042 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 62 but got ts: inc_num:1527744091508552400 seq_num:61 -peer0.org1.example.com | [1043 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1044 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1045 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1046 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1047 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1048 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1049 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [104a 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [104b 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [104c 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [104d 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [104e 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [104f 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1050 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1051 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1052 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1053 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1054 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1055 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1056 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1057 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1058 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1059 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [105a 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [105b 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [105c 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [105d 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [105e 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [105f 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:" signature:"0E\002!\000\221-G\234\026\362\000`\237| nW\307\021\321\352B\316\354\026\306<\262*\200@\367@\276\031z\002 4F{P\2532\257Re@\261\314iQ\320j7O!(Dqh\217rVc0\301\270^\n" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020C" signature:"0D\002 o \023E\215\005//\327\032\021h^7\300\341\006q\003\347\010\207\212kK[\000\205\253\332\303\006\002 27\213c\360\266\275\027\330gA-\332\324\270\017(q=\325\324P\223\020}n<\013\227\306\026\244" > -peer0.org1.example.com | [1060 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1061 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1062 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1063 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1064 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1065 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1066 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1067 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1068 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1069 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [106a 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [106b 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [106c 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [106d 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [106e 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [106f 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1070 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1071 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1073 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1072 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1074 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1075 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1076 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1077 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1078 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1079 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [107a 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [107b 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [107c 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [107d 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [107e 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [107f 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1080 05-31 05:22:20.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [1081 05-31 05:22:20.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1082 05-31 05:22:20.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [1083 05-31 05:22:20.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [1084 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1085 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1086 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1087 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1089 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [108a 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1088 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [108b 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [108c 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [108d 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [108e 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [108f 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1090 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1091 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1092 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1093 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1095 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1094 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1096 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1097 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1099 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1098 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [109a 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [109b 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [109c 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [109d 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [109e 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [109f 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10a0 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [10a1 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [10a2 05-31 05:22:21.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [10a3 05-31 05:22:21.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [10a4 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [10a6 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10a7 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10a5 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [10a8 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [10a9 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10aa 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10ab 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10ac 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10ad 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10ae 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [10af 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10b0 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10b1 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10b2 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [10b3 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [10b4 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [10b5 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [10b6 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [10b7 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [10b8 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [10b9 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [10ba 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10bb 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [10bc 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10bd 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10be 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [10bf 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [10c0 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [10c1 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10c2 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10c3 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10c4 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10c5 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10c6 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10c7 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [10c8 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10c9 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [10ca 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [10cb 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [10cc 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [10cd 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [10ce 05-31 05:22:22.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [10cf 05-31 05:22:22.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10d0 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [10d1 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [10d2 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10d3 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [f01 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [f02 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [f03 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [f04 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [f06 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f05 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [f07 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [f08 05-31 05:22:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [f09 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [f0a 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [f0b 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [f0c 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [f0d 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 54 but got ts: inc_num:1527744091508552400 seq_num:53 -peer0.org2.example.com | [f0e 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [f0f 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [f10 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [f11 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 57 but got ts: inc_num:1527744090808810100 seq_num:56 -peer0.org2.example.com | [f12 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [f13 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [f14 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [f15 05-31 05:22:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [f16 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [f17 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [f18 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership -peer0.org2.example.com | [f19 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [f1a 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [f1b 05-31 05:22:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [f1c 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [f1d 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [f1e 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [f1f 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [f20 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f21 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [f22 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [f23 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f24 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [f25 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [f26 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [f27 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [f28 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [f29 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [f2a 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [f2b 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [f2c 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [f2e 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [f2f 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [f30 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > -peer0.org2.example.com | [f31 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org2.example.com | [f2d 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [f32 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f33 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [f34 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [f35 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f36 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [f37 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [f38 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f39 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [f3a 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f3b 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [f3c 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [f3d 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f3e 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer0.org2.example.com | [f3f 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [f40 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f41 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [f42 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f43 05-31 05:22:15.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [f44 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f45 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [f46 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f47 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer0.org2.example.com | [f48 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [f49 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f4a 05-31 05:22:15.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [f4b 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f4c 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [f4d 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [f4e 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f4f 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [f50 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [f51 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [f53 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f52 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f54 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [f55 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f56 05-31 05:22:15.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [f57 05-31 05:22:15.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [f58 05-31 05:22:15.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [f59 05-31 05:22:15.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f5a 05-31 05:22:15.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [f5b 05-31 05:22:15.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f5c 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [f5d 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f5e 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [f5f 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [f60 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [f61 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f62 05-31 05:22:15.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [f63 05-31 05:22:15.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [f64 05-31 05:22:15.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [f65 05-31 05:22:15.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f66 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [f67 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [f68 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [f69 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f6a 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [f6b 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f6c 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [f6d 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [f6e 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [f6f 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [f70 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [f71 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [f72 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [f73 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [f74 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [f75 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [f76 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [f77 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [f78 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020:" signature:"0D\002 e%\277\241\324\320\271\360X\026\035\245~t`\373c6\207\025\023\255\332?\223\272\271qXGW\360\002 .\325d@3\335ml\336%\236|\227 In6/+W\234\352y\363\021KR~\353b\251\343" > alive:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > alive: -peer0.org2.example.com | [f79 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [f7a 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f7b 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [f7c 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [f7d 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f7e 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [f7f 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [f80 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f81 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [f82 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [f83 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [ec8 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ec9 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [eca 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [ecb 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [ecc 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ecd 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [ece 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ecf 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [ed0 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [ed1 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [ed2 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [ed3 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [ed4 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [ed5 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [ed6 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [ed7 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [ed8 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [ed9 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > alive: alive: alive: -peer1.org1.example.com | [eda 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [edb 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [edc 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [edd 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [ede 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [edf 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [ee0 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [ee1 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [ee2 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [ee3 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [ee4 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [ee5 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ee6 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [ee7 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [ee8 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [ee9 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [eea 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [eeb 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [eec 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [eed 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [eee 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [eef 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ef0 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ef1 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ef2 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [10d4 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [10d5 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [10d6 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [10d7 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [10d8 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [10d9 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [10da 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [10db 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [10dd 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [10dc 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [10de 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [10df 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020E" signature:"0D\002 4\r]_\321)\370~#\275\240\\#\320C@B\205s\021\312\376\274\327\024\003\373\244=\\\364\214\002 M\236\240\315\022\360\204_\003L\0041\n,;\327+\367\3002\345\365(g\023Us\246\262C\320\177" > -peer0.org1.example.com | [10e0 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [10e1 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10e2 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [f84 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [f85 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f86 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [f87 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [f88 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [f89 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [f8a 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f8b 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [b06 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b07 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b08 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 principal matched by identity 0 -orderer.example.com | [b09 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 6d 1b 97 7c b3 9e 66 b7 65 5e dc f4 c0 97 e5 07 |m..|..f.e^......| -orderer.example.com | 00000010 48 5f 7b a2 40 31 42 ca 26 ee e7 f0 9f da b0 96 |H_{.@1B.&.......| -orderer.example.com | [b0a 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 06 f0 d0 9b 13 88 46 16 f9 7c 99 d0 |0D. ......F..|..| -orderer.example.com | 00000010 6e 42 22 72 74 e0 65 fe 10 72 d2 ab 1e 42 97 55 |nB"rt.e..r...B.U| -orderer.example.com | 00000020 76 ee aa 4a 02 20 6c 43 a6 ab 96 2d 88 55 e2 a1 |v..J. lC...-.U..| -orderer.example.com | 00000030 ea ec 68 de 21 3c 4e 70 35 0a 79 19 ab 4a 7a 02 |..h.! DEBU 0xc42000e4a0 principal evaluation succeeds for identity 0 -orderer.example.com | [b0c 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4a0 gate 1527744206480846800 evaluation succeeds -orderer.example.com | [b0d 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b0e 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b0f 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [b10 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [b11 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [b12 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [b13 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc42000ccc0) start: > stop: > from 172.18.0.7:41424 -orderer.example.com | [b14 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [b15 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [b16 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24012], Going to peek [8] bytes -orderer.example.com | [b17 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [b18 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -peer1.org1.example.com | [ef3 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [ef4 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [ef5 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [ef6 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [ef7 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [ef8 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [ef9 05-31 05:22:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [efa 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [efb 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [efc 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [efd 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [eff 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [efe 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f01 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [f03 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f02 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [f00 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [f05 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [f06 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [f07 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [f04 05-31 05:22:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f08 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [f0a 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [f0b 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [f09 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1167 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1168 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1169 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [116a 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [116b 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [116c 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [116d 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [116e 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [116f 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1170 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1171 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1173 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [1174 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1172 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > -peer1.org2.example.com | [1175 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1176 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1177 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1178 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1179 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [117a 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [117b 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [117c 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [117d 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [117e 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [117f 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1180 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10e3 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [10e4 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [10e6 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10e7 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10e5 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [10e8 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10e9 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [10ea 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [10eb 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10ec 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [10ed 05-31 05:22:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10ee 05-31 05:22:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [10ef 05-31 05:22:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10f0 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [10f1 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [10f2 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [10f3 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [10f4 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org1.example.com | [10f5 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org1.example.com | [10f6 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10f7 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [10f8 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10f9 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [10fa 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [10fb 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [10fc 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10fd 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [10fe 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [10ff 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1100 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [b19 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc42000ccc0) for 172.18.0.7:41424 -orderer.example.com | [b1a 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41424 for (0xc42000ccc0) -orderer.example.com | [b1b 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41424 -orderer.example.com | [b1c 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41424 -orderer.example.com | [b1d 05-31 05:23:26.49 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41424: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b1e 05-31 05:23:26.49 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b1f 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b20 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41426 -orderer.example.com | [b21 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41426 -orderer.example.com | [b22 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [b23 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b24 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [b25 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b26 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [b27 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e558 gate 1527744206750414600 evaluation starts -orderer.example.com | [b28 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e558 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b29 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e558 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b2a 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e558 principal matched by identity 0 -orderer.example.com | [b2b 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 6c ad a1 2e a1 72 bd 90 c3 08 26 53 aa 0c df 5d |l....r....&S...]| -orderer.example.com | 00000010 b0 3d 4c 1a bc 57 d6 e3 0f 0b 56 75 26 a0 a7 bc |.=L..W....Vu&...| -orderer.example.com | [b2c 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ed 36 d1 8c 99 bd 9a 44 74 38 c4 |0E.!..6.....Dt8.| -orderer.example.com | 00000010 91 58 58 f0 e0 26 15 20 3c 50 9b 43 11 61 2e 58 |.XX..&. Y.. o....W...| -orderer.example.com | 00000030 19 ae fa 04 15 6b 80 6e f3 27 83 2c 78 1d 61 77 |.....k.n.'.,x.aw| -orderer.example.com | 00000040 37 55 6a 96 a0 78 07 |7Uj..x.| -orderer.example.com | [b2d 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e558 principal evaluation succeeds for identity 0 -orderer.example.com | [b2e 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e558 gate 1527744206750414600 evaluation succeeds -orderer.example.com | [b2f 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b30 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [b31 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [b32 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [b33 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [b34 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [b35 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc42012a680) start: > stop: > from 172.18.0.7:41426 -orderer.example.com | [b36 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [b37 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -orderer.example.com | [b38 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -orderer.example.com | [b39 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [b3a 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -orderer.example.com | [b3b 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc42012a680) for 172.18.0.7:41426 -orderer.example.com | [b3c 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41426 for (0xc42012a680) -orderer.example.com | [b3d 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41426 -orderer.example.com | [b3e 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41426 -orderer.example.com | [b3f 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41426: rpc error: code = Canceled desc = context canceled -orderer.example.com | [b40 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [b41 05-31 05:23:32.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [b42 05-31 05:23:32.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41438 -orderer.example.com | [b43 05-31 05:23:32.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41438 -orderer.example.com | [b44 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -orderer.example.com | [b45 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41440 -orderer.example.com | [b46 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:41440 -orderer.example.com | [b47 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -orderer.example.com | [b48 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [b49 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b4a 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [b4b 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b4c 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [b4d 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8340 gate 1527744212484929800 evaluation starts -orderer.example.com | [b4e 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b4f 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b50 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -orderer.example.com | [b51 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 principal evaluation fails -orderer.example.com | [b52 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8340 gate 1527744212484929800 evaluation fails -orderer.example.com | [b53 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [b54 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [b55 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -orderer.example.com | [b56 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -orderer.example.com | [b57 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [b58 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -orderer.example.com | [b59 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b5a 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -orderer.example.com | [b5b 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8348 gate 1527744212487148600 evaluation starts -orderer.example.com | [b5c 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8348 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b5d 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8348 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b5e 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8348 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [b5f 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8348 principal evaluation fails -orderer.example.com | [b60 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8348 gate 1527744212487148600 evaluation fails -orderer.example.com | [b61 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [b62 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -orderer.example.com | [b63 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -orderer.example.com | [b64 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8350 gate 1527744212487800100 evaluation starts -orderer.example.com | [b65 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [b66 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b67 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 principal matched by identity 0 -orderer.example.com | [b68 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 54 bb 09 08 a7 ef 75 46 28 c1 28 85 13 a3 a2 25 |T.....uF(.(....%| -orderer.example.com | 00000010 0a 06 11 96 93 8f 57 1a 3e e5 ae 9b be c5 aa fd |......W.>.......| -orderer.example.com | [b69 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 75 69 9d 03 6d b2 b4 3a 35 59 90 18 |0D. ui..m..:5Y..| -orderer.example.com | 00000010 ab ed 6b 41 f5 33 4c 81 f8 99 3d 0e 6e 98 e0 72 |..kA.3L...=.n..r| -orderer.example.com | 00000020 85 44 c3 0d 02 20 1a 4d 45 06 ed db 70 63 98 c6 |.D... .ME...pc..| -orderer.example.com | 00000030 14 74 bc 83 0b 8e 17 23 05 fb b7 99 b8 ee 56 8a |.t.....#......V.| -orderer.example.com | 00000040 36 17 9d 54 cf 55 |6..T.U| -orderer.example.com | [b6a 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 principal evaluation succeeds for identity 0 -orderer.example.com | [b6b 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8350 gate 1527744212487800100 evaluation succeeds -orderer.example.com | [b6c 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [b6d 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -orderer.example.com | [b6e 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -orderer.example.com | [b6f 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -orderer.example.com | [b70 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -orderer.example.com | [b71 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [b72 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [b73 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [b74 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [b75 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [b76 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [b77 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [b78 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [b79 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [b7a 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [b7b 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [b7c 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [b7d 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [b7e 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [b7f 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -orderer.example.com | [b80 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [b81 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [b82 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | [b83 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [b84 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [b85 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [b86 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [b87 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | [b88 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [b89 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -orderer.example.com | [b8a 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [b8b 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [b8c 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -orderer.example.com | [b8d 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -orderer.example.com | [b8e 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [b8f 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [b90 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [b91 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [b92 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [b93 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [b94 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [b95 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [b96 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == -orderer.example.com | [b97 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [b98 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -orderer.example.com | [b99 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [b9a 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201c11c0 gate 1527744212501351500 evaluation starts -orderer.example.com | [b9b 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [b9c 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b9d 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [b9e 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [b9f 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -orderer.example.com | [ba0 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 principal matched by identity 1 -orderer.example.com | [ba1 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 2a 40 71 67 b3 da 91 b6 d1 0f ea 8c c3 a9 19 78 |*@qg...........x| -orderer.example.com | 00000010 34 b2 9a a4 f8 ce 44 a3 93 42 0a 57 6b fa 64 99 |4.....D..B.Wk.d.| -orderer.example.com | [ba2 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 15 c0 eb 30 35 4f 3b e6 d4 2b 38 51 |0D. ...05O;..+8Q| -orderer.example.com | 00000010 e4 29 08 3e a5 5f 5f 45 cf 41 51 5d 8f 16 12 6a |.).>.__E.AQ]...j| -orderer.example.com | 00000020 e4 a3 8a 04 02 20 3f 85 f6 b8 9f 3a 4c f2 ea a9 |..... ?....:L...| -orderer.example.com | 00000030 9c 3d 82 35 0e a7 b2 74 00 41 ce 82 80 64 fa b8 |.=.5...t.A...d..| -orderer.example.com | 00000040 a9 ac 9c 0d ab 05 |......| -orderer.example.com | [ba3 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 principal evaluation succeeds for identity 1 -orderer.example.com | [ba4 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201c11c0 gate 1527744212501351500 evaluation succeeds -orderer.example.com | [ba5 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [ba6 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [ba7 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -orderer.example.com | [ba8 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [ba9 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201c1c60 gate 1527744212503734200 evaluation starts -orderer.example.com | [baa 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c1c60 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [bab 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c1c60 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [bac 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -orderer.example.com | [bad 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c1c60 principal matched by identity 0 -orderer.example.com | [bae 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 93 cf 09 ee 40 78 08 19 7e ec 97 71 b8 45 29 c7 |....@x..~..q.E).| -orderer.example.com | 00000010 be c5 1b 2b 5a b3 b3 dc b4 ce 81 33 77 a9 7e 57 |...+Z......3w.~W| -orderer.example.com | [baf 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc 82 74 43 ed 31 1a f5 83 02 f3 |0E.!...tC.1.....| -orderer.example.com | 00000010 c5 3c d0 c7 b5 fb ec 59 0c 3f e0 88 6a 70 ab 57 |.<.....Y.?..jp.W| -orderer.example.com | 00000020 50 08 a6 39 94 02 20 7d 24 bf 95 1d de 6b 29 02 |P..9.. }$....k).| -orderer.example.com | 00000030 71 8d 39 3a 88 7f 01 b1 e3 47 06 08 47 e6 37 af |q.9:.....G..G.7.| -orderer.example.com | 00000040 22 b1 4b 6c 66 5a e6 |".KlfZ.| -orderer.example.com | [bb0 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c1c60 principal evaluation succeeds for identity 0 -orderer.example.com | [bb1 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201c1c60 gate 1527744212503734200 evaluation succeeds -orderer.example.com | [bb2 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [bb3 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -orderer.example.com | [bb4 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins -orderer.example.com | [bb5 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins -orderer.example.com | [bb6 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -orderer.example.com | [bb7 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [bb8 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [bb9 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [bba 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [bbb 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [bbc 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [bbd 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [bbe 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [bbf 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [bc0 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -orderer.example.com | [bc1 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -orderer.example.com | [bc2 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -orderer.example.com | [bc3 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [bc4 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [bc5 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [bc6 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [bc7 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [bc8 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -orderer.example.com | [bc9 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [bca 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -orderer.example.com | [bcb 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -orderer.example.com | [bcc 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -orderer.example.com | [bcd 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -orderer.example.com | [bce 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -orderer.example.com | [bcf 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -orderer.example.com | [bd0 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -orderer.example.com | [bd1 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -orderer.example.com | [bd2 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [bd3 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -orderer.example.com | [bd4 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -orderer.example.com | [bd5 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [bd6 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [bd7 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [bd8 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [bd9 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [bda 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [bdb 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [bdc 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [bdd 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [bde 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [bdf 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [be0 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [be1 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [be2 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [be3 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [be4 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [be5 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [be6 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [be7 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [be8 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [be9 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer0.org2.example.com | [f8c 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [f8d 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [f8e 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [f8f 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [f90 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [f91 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [f92 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [f93 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [f94 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [f95 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [f96 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [f97 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [f98 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [f99 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [f9a 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > alive:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" > alive:" signature:"0E\002!\000\2448\310PP&\1774_\005b\272\014\020\213|\203qD\224\205O\217\322\337q\035H\261\271\350\257\002 %h\361v\356\032wQX\022\221\237\260\306\237\375 -peer0.org2.example.com | [f9b 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [f9c 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [f9d 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [f9e 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [f9f 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [fa0 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [fa1 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [fa2 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [fa3 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [fa4 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fa5 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fa6 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [fa8 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [fa9 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fa7 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [fab 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [faa 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fac 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [fad 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [fae 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [faf 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [fb1 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [fb0 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [fb3 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [fb2 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [fb4 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [fb5 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [fb6 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [fb7 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [fb8 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [fb9 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fba 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [fbb 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fbc 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [fbd 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fbe 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [fbf 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fc1 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [fc2 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [fc0 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [fc3 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [fc4 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [fc6 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [fc7 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fc5 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fc8 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [fc9 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [fcb 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fcc 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [fca 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [fcd 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1181 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:5\0028\n\320\004\343\262" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1182 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1183 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1184 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1185 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1186 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1187 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1188 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1189 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [118a 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [118b 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [118c 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [118d 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [118e 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [118f 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1190 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1191 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1192 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1193 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1194 05-31 05:22:31.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [1195 05-31 05:22:31.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [1196 05-31 05:22:31.39 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [1197 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1198 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1199 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [119a 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [119b 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [119c 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [119d 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [119e 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [119f 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [11a0 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [11a1 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11a2 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [11a4 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11a5 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [11a6 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [11a7 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [11a3 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [11a8 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11aa 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [11ab 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [11ac 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11ad 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11ae 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [11af 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [11b0 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [11b1 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [11b2 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [11a9 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [11b4 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11b5 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [11b3 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [11b6 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11b7 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [11b8 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [11b9 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [11ba 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [11bb 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11bc 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11be 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [11bd 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11bf 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11c0 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 74 but got ts: inc_num:1527744091508552400 seq_num:72 -peer1.org2.example.com | [11c2 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11c1 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [11c3 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11c4 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [11c5 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11c6 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11c7 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11c8 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [11c9 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [11ca 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [11cb 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [11cc 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [11cd 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [11ce 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11cf 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [11d1 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11d2 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1101 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1102 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1103 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\31385\036#\252`\311\370h\366:~" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1104 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1105 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\31385\036#\252`\311\370h\366:~" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1106 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1107 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1108 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1109 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [110a 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [110b 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [110c 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [110d 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [110e 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [110f 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1110 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1112 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [1111 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\31385\036#\252`\311\370h\366:~" > > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020F" signature:"0D\002 5J\204\010\321\033\355\237U\252F\025\370\265\276.w&\227K\024\203\222R\373\\\372\367\212\364\325\345\002 FWf=X=\302\340J\275\377C\330\376\340e$M!\n\020\330%R)\326\213\034\323\027\370\317" secret_envelope: > -peer0.org2.example.com | [fce 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [fcf 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [fd0 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [fd1 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [fd2 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [fd3 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [fd4 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [fd6 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [fd7 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [fd9 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [fd5 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [fd8 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [fda 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [fdb 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [fdc 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [fde 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [fdd 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [fdf 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fe0 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [11d3 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [11d4 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [11d5 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11d6 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [11d7 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11d0 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11d8 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11d9 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [11da 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11db 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11dc 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [11dd 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [11de 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [f0c 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f0d 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f0e 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [f0f 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f10 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f11 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f12 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [f13 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [f14 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [f15 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [f16 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [f17 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [f18 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [f19 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [f1a 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [f1b 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [f1c 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f1d 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f1e 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f1f 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f20 05-31 05:22:16.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f21 05-31 05:22:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f22 05-31 05:22:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [f23 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1113 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1114 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1115 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1116 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1117 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1118 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1119 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [111a 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [111b 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [111c 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [111d 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [111e 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [111f 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1120 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1121 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1122 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1123 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1124 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1125 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1126 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1127 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1128 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1129 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [fe1 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [fe2 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [fe3 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [fe4 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fe5 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [fe6 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [fe7 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [fe8 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [fe9 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [fea 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [feb 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [fec 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [fed 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [fee 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [fef 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [ff0 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ff1 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [ff2 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [ff4 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [ff5 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [ff3 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [ff6 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [ff7 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [ff8 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [ff9 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [ffa 05-31 05:22:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [ffb 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [ffc 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [ffd 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [ffe 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [fff 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1000 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1001 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1002 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [1004 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1003 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1005 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1006 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1007 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1008 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1009 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [100a 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 58 but got ts: inc_num:1527744091508552400 seq_num:57 -peer0.org2.example.com | [100b 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [100c 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [100d 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [100e 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [100f 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1010 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1011 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1012 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1013 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [f24 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f25 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [f26 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f27 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f28 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [f2a 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f2b 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [f29 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f2c 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [f2d 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [f2e 05-31 05:22:18.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [f2f 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [f30 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f31 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [f32 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [f33 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f34 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [f35 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f36 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [f37 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [f38 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [f39 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [f3a 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [f3b 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [f3c 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [f3d 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [f3e 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [f3f 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [f40 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020?" signature:"0E\002!\000\366H\351c\311e\331\317\254\326\220\230\234\250\000\362\227*~\350(\260\017\246\253! /O\356?S\002 \021\224bo\212y\304\006\"\007\260\n\245\\r\241K1\375\013fK\302\307\374<:\234.\022d;" > alive: alive: -peer1.org1.example.com | [f41 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [f42 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f43 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [f44 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [f45 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f46 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [f47 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [f48 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [f49 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [f4a 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f4b 05-31 05:22:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [f4c 05-31 05:22:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [f4e 05-31 05:22:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [f4f 05-31 05:22:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f50 05-31 05:22:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f4d 05-31 05:22:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [f51 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [f52 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [f53 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f54 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [f55 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [f56 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f57 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [f58 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f59 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [f5a 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f5b 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [f5c 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [f5d 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [f5e 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f5f 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [f60 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [f61 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [f62 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f63 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [f64 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [f65 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f66 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [f67 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [f68 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [f69 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [f6a 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [f6b 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [f6c 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [f6d 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [f6f 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [f70 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f71 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f6e 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [11df 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11e0 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [11e1 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11e2 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [11e3 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org2.example.com | [11e4 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11e5 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [11e6 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [11e7 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11e8 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [11e9 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11ea 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [11eb 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [11ec 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [11ed 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [11ef 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [11ee 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11f1 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [11f0 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [11f2 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [11f3 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [11f4 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [11f5 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [11f6 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [11f7 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11f8 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11f9 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [11fa 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [11fb 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [11fc 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [11fd 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [11fe 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [11ff 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1200 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1201 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1202 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1203 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1204 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1205 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1206 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1207 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1208 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1209 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [120a 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [120b 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [120c 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [120d 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [120e 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [120f 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1210 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1211 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1212 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1213 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1214 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1215 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1216 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1217 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1218 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1219 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [121a 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [121b 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [121c 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [121d 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [121e 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [121f 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1220 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1222 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [1221 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1223 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1225 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -orderer.example.com | [bea 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [beb 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bec 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bed 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [bee 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [bef 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [bf0 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [bf1 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [bf2 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -orderer.example.com | [bf3 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -orderer.example.com | [bf4 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [bf5 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [bf6 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP -orderer.example.com | [bf7 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQGCm4/p9EqkmwbVtW/XJGKTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzFaFw0yODAxMjgwNzQwMzFa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD -peer0.org1.example.com | [112a 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [112b 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [112c 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [112d 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [112e 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [112f 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1130 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1131 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1132 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1133 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1134 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1135 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1136 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1137 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1138 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1139 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [113a 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [113b 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [113c 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [f72 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [f73 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [f74 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [f76 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [f75 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [f77 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f78 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [f79 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [f7a 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f7b 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [f7c 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [f7d 05-31 05:22:19.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f7e 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\277-DO\273" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [f7f 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1014 05-31 05:22:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1015 05-31 05:22:16.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [1016 05-31 05:22:16.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [1017 05-31 05:22:16.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [1018 05-31 05:22:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1019 05-31 05:22:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [101a 05-31 05:22:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [101b 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [101c 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [101e 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [101f 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1020 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1021 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1022 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1023 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1024 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1025 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1026 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1027 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [101d 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1028 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1029 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [102a 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [102c 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | 3PqQMEKlMela9BLoXcDOFEqvw7LGhC/imYoK8TmTuD3fc8zCMco+Vro5wdAySGBf -orderer.example.com | jJKIKGongOakmWvtfW0loqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQghdRukz+tFBdsZD0Hxhyl -orderer.example.com | oY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDSAAwRQIhAJFgIoUVJe/5IPVG -orderer.example.com | f7pEMNyhmJ9OTJ5Pmg/dnjt47BGBAiBdmt6ea8+qgSxgqleGtyaDzQhr6TxyJs2H -orderer.example.com | 73TfAIFqpw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bf8 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQUxJMA+tdH0siY+rN7IewmTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzJaFw0yODAxMjgwNzQwMzJa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmczLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAELmPLYv1h6V32TMihBEBz/dGocBrXc+OK -orderer.example.com | AoZS+bAEFBgwQOU5/JwVt4QH3TNzn1GuHSIVtWjw1ChZCv5NHYg9ZaNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAghdRukz+tFBds -orderer.example.com | ZD0HxhyloY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDRwAwRAIgJnAoONQf -orderer.example.com | 57KM4I9TaFQTI/EG7TjdwLP5Pe1Qgj5MmGMCIEPVLGqnvMyVbdTuJvPYXJlIVthz -orderer.example.com | 6bM3NghPvYPoknIC -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [bf9 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity -orderer.example.com | [bfa 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -orderer.example.com | [bfb 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -orderer.example.com | [bfc 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -orderer.example.com | [bfd 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -orderer.example.com | [bfe 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -orderer.example.com | [bff 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -orderer.example.com | [c00 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -orderer.example.com | [c01 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [c02 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [c03 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -orderer.example.com | [c04 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [c05 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [c06 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org2.example.com | [1224 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > alive:\243\377\364\210\035*\202\324=\370\303\374\226]B\307|\036\302\266 \177\361{\204I\250\002 2\365\232\344\310\255z\323\001\256\335\336\305\251\373\364ic\316\034\177\317\215\350\003\372\273\021wW\200R" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020N" signature:"0E\002!\000\266#\300\303\334\272\353\257\007.\266\273\007\273\262\325h\211O\324\022mN\276c&,\354fz\n\211\002 ]n\301\363b\272\023\304\222\355\317\224\036\305j\240\310\337\267\260\321\251%\350\350\324._F\271\027\266" > alive:\020\335\254\377\204\223\346B5w" > -peer1.org2.example.com | [1226 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1227 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1228 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1229 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [122a 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [122b 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [122c 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [122d 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [122e 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [122f 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1230 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1231 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1232 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1233 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [1234 05-31 05:22:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1235 05-31 05:22:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [1236 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1237 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [1238 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1239 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [123a 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [123b 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [123c 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [123d 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [f81 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [f82 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [f84 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f80 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [f85 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f83 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [f86 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [f87 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [f88 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [f89 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f8a 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [f8b 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [f8c 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [f8d 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [f8e 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [f8f 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [f90 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [f91 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [f92 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [f93 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [f94 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [102e 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1031 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [102f 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [102d 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1030 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1032 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1033 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1034 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [102b 05-31 05:22:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1035 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1036 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1037 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1038 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1039 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [103a 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [103b 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [103c 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [103d 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [103e 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [103f 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1040 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1041 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1042 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1043 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [c07 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c08 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c09 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c0a 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) -orderer.example.com | [c0b 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps -orderer.example.com | [c0c 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [c0d 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [c0e 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [c0f 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [c10 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [c11 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [c12 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP -orderer.example.com | [c13 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP -orderer.example.com | [c14 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP -orderer.example.com | [c15 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [c16 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [c17 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [c18 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -peer0.org1.example.com | [113d 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [113e 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [113f 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1140 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1141 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1142 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1143 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1144 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1145 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1146 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1147 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1148 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1149 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [114a 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [114b 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [114c 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [114d 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [114e 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [114f 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1150 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1151 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1152 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1153 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1154 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1155 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 72 but got ts: inc_num:1527744091840124700 seq_num:70 -peer0.org1.example.com | [1156 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1157 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1158 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1159 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [115a 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [115b 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [115c 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [115d 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [115e 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1160 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [115f 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1161 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1162 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1163 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1164 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1165 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [1167 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1166 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [1168 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1169 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [116a 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [116b 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [116c 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [116d 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [116e 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [116f 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1170 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1171 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1172 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1173 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1174 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1175 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1176 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1177 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1178 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1179 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [117a 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [117b 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [117c 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [117d 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [117e 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [117f 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1180 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1181 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1182 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1183 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1184 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [1185 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1186 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020H" signature:"0D\002 J\314N\330X\305\356\252L\255\272\273\227!\361\215\030\220\034B\005\250^W\276)\033y\217\371\2474\002 R\217,\352\273\370\332\000\371\n\347z]>o\305m\003\220\305\201\227\002\3447\261\264\360&~\035O" > -peer0.org1.example.com | [1187 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1188 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1189 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [118a 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [118b 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [118d 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [118e 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [118c 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [118f 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1190 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1191 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1192 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1193 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1194 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1195 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1196 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1197 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1198 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1199 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [119a 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [119b 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | [c19 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [c1a 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [c1b 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [c1c 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [c1d 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [c1e 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [c1f 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [c20 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [c21 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [c22 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [c23 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [c24 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [c25 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [c26 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [c27 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [c28 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [c29 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [c2a 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [c2b 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -orderer.example.com | [c2c 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [c2d 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org2.example.com | [1044 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1045 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1046 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1047 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1048 05-31 05:22:16.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1049 05-31 05:22:16.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [104a 05-31 05:22:16.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [104b 05-31 05:22:16.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [104c 05-31 05:22:16.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [104d 05-31 05:22:16.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [104e 05-31 05:22:16.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [104f 05-31 05:22:16.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1050 05-31 05:22:16.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1052 05-31 05:22:16.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1053 05-31 05:22:16.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1051 05-31 05:22:16.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1054 05-31 05:22:16.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [1055 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1056 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1057 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1059 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1058 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [105a 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [105b 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [105c 05-31 05:22:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [105d 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [105e 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [105f 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1060 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1061 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1062 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1063 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1064 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1065 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1066 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1067 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1068 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1069 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [106a 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [106b 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [106c 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [106d 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [106e 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [106f 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1070 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [1071 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1072 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:" > > -peer0.org2.example.com | [1073 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1074 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1075 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1076 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1077 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1078 05-31 05:22:19.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1079 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [107a 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [107c 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [107b 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [107e 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [107f 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [107d 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [123e 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [123f 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1240 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1241 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1242 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1243 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1244 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [1245 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1246 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org2.example.com | [1247 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org2.example.com | [1248 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1249 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [124a 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [124b 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [124c 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [124d 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [124e 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [124f 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1250 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1251 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1252 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1253 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1254 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1255 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [f95 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [f96 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [f97 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [f98 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [f99 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [f9a 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [f9b 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [f9c 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [f9d 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [f9e 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [f9f 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [fa0 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [fa1 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [fa2 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [fa3 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [fa4 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [fa5 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [fa6 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [fa7 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [fa8 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [fa9 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [faa 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [fab 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [fac 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [fad 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [fae 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [faf 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [fb0 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [c2e 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | [c2f 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [c30 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [c31 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [c32 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [c33 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [c34 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [c35 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [c36 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [c37 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [c38 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [c39 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [c3a 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -orderer.example.com | [c3b 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [c3c 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [c3d 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [c3e 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [c3f 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [c40 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [c41 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [1256 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1257 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1258 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1259 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [125a 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [125b 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [125c 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [125d 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [125e 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [125f 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1260 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1261 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1262 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1263 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1264 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\243\377\364\210\035*\202\324=\370\303\374\226]B\307|\036\302\266 \177\361{\204I\250\002 2\365\232\344\310\255z\323\001\256\335\336\305\251\373\364ic\316\034\177\317\215\350\003\372\273\021wW\200R" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Q" signature:"0E\002!\000\374\177\213\274\037w\030\225\324.W>\035\266+\016\254\200\236\211\307\017\0371\375\017\035\213\2355u\022\002 C\361\234\303\365\244\021\227\356\361\333;\231\300\357\323H}\377\332R\317E\270F\373\2150\0008\201S" > alive:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > alive: -peer1.org2.example.com | [1265 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1266 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1267 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1268 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1269 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [126a 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [126b 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [126c 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [126d 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [126e 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [126f 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1270 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1271 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1272 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1273 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1274 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1275 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1276 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1277 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1278 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1279 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [127a 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [127b 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [127c 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [127d 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [127e 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [127f 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1280 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1281 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1282 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1283 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1080 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [1081 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [1082 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1083 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1084 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [1085 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [1086 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1087 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [1088 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1089 05-31 05:22:19.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [108a 05-31 05:22:19.37 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [108b 05-31 05:22:19.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [108c 05-31 05:22:19.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [108d 05-31 05:22:19.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer0.org2.example.com | [108e 05-31 05:22:19.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer0.org2.example.com | [108f 05-31 05:22:19.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer0.org2.example.com | [1090 05-31 05:22:19.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1091 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1092 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1093 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [1094 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1095 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1096 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1097 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\277-DO\273" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1098 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1099 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [109a 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [109b 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [109c 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [109d 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [109e 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [109f 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [10a1 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [10a2 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [119d 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [119e 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [119c 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [119f 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11a0 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [11a1 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11a2 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11a3 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [11a4 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11a5 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11a6 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [11a7 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [11a8 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11a9 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [11aa 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [11ab 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [11ac 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [11ad 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [11ae 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11af 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [11b0 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11b1 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11b2 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11b3 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [11b4 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [11b5 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [11b6 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [11b7 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [11b8 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [11b9 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [11ba 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [11bb 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [11bc 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [11be 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [c42 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [c43 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [c44 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [c45 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [c46 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [c47 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [c48 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [c49 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [c4a 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [c4b 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [c4c 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [c4d 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [c4e 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [c4f 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [c50 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [c51 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [c52 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [c53 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [c54 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [c55 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [c56 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [c57 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [c58 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -peer0.org2.example.com | [10a0 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [10a3 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020?" signature:"0E\002!\000\366H\351c\311e\331\317\254\326\220\230\234\250\000\362\227*~\350(\260\017\246\253! /O\356?S\002 \021\224bo\212y\304\006\"\007\260\n\245\\r\241K1\375\013fK\302\307\374<:\234.\022d;" > alive:\277-DO\273" > alive: -peer0.org2.example.com | [10a4 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [10a5 05-31 05:22:19.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [10a6 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [10a7 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [10a8 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10a9 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [10aa 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [10ab 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [10ac 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [10ad 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10ae 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [10af 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [10b0 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [10b1 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [10b2 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10b3 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [10b4 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [10b5 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10b6 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [10b7 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [10b8 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [10b9 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [10ba 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [10bb 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [10bc 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [10bd 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [10be 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [10bf 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [10c0 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [10c1 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [10c3 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [10c4 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [10c2 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > alive:\277-DO\273" > alive: -peer0.org2.example.com | [10c5 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [10c6 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [10c7 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [10c8 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [10c9 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [10ca 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [10cb 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [10cc 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [fb1 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [fb2 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 66 but got ts: inc_num:1527744091840124700 seq_num:65 -peer1.org1.example.com | [fb3 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [fb4 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [fb5 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [fb6 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 65 but got ts: inc_num:1527744091618763800 seq_num:64 -peer1.org1.example.com | [fb7 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [fb8 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [fb9 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [fba 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [fbb 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [fbc 05-31 05:22:19.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [fbd 05-31 05:22:19.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [fbe 05-31 05:22:19.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [fbf 05-31 05:22:19.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [fc0 05-31 05:22:19.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [fc1 05-31 05:22:19.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [fc2 05-31 05:22:19.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [fc3 05-31 05:22:19.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [fc4 05-31 05:22:19.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [fc5 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [fc6 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [fc7 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [fc8 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [fc9 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1284 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1285 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1286 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1287 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [128b 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1289 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [128a 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [128c 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1288 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [128d 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [128e 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [128f 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1290 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1291 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1292 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1293 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1294 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1295 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1296 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1297 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1298 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1299 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [129a 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [129b 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [129c 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [129d 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [129e 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [129f 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [12a0 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [12a1 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [12a2 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [12a3 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [12a4 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [12a5 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [12a6 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [12a7 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [12a9 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [12aa 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [12ab 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\204J\313\314W\360\027tL\013R\242\372!\324\007kn\014\264\014i\332\273TS^nl7\032" > > -peer1.org2.example.com | [12ac 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [12ad 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [12a8 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [12ae 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49114 -peer1.org2.example.com | [12af 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4202a8ba0 -peer0.org2.example.com | [10ce 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [10cd 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [10cf 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [10d0 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [10d1 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [10d2 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [10d3 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10d4 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [10d5 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [10d6 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [10d7 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10d8 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [10d9 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [10da 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [10db 05-31 05:22:19.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10dc 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [fca 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [fcb 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [fcc 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [fcd 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [fce 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [fcf 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [fd0 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [fd1 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [fd2 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [fd3 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [fd4 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [fd5 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [fd6 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [fd7 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [fd8 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [fda 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [fdb 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [fdc 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > alive:" signature:"0E\002!\000\221-G\234\026\362\000`\237| nW\307\021\321\352B\316\354\026\306<\262*\200@\367@\276\031z\002 4F{P\2532\257Re@\261\314iQ\320j7O!(Dqh\217rVc0\301\270^\n" secret_envelope: > -peer1.org1.example.com | [fdd 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [fde 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [fd9 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [11bd 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11bf 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [11c0 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [11c1 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11c2 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [11c3 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11c4 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11c5 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [11c6 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11c7 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11c8 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [11c9 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11ca 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11cb 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [11cc 05-31 05:22:26.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [11cd 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [12b0 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [12b1 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [12b2 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer1.org2.example.com | [12b3 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [12b4 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [12b5 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423419e00, header 0xc4202a8f00 -peer1.org2.example.com | [12b6 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org2.example.com | [12b7 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][077e23ad] processing txid: 077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c -peer1.org2.example.com | [12b8 05-31 05:22:34.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c] -peer1.org2.example.com | [12b9 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer1.org2.example.com | [12ba 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [12bb 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c] -peer1.org2.example.com | [12bc 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][077e23ad] Entry chaincode: name:"exp02" -peer1.org2.example.com | [12bd 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c,syscc=true,proposal=0xc423419e00,canname=lscc:1.2.0) -peer1.org2.example.com | [12be 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org2.example.com | [12bf 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [12c0 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [077e23ad]Received message TRANSACTION from peer -peer1.org2.example.com | [12c1 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [077e23ad] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [12c2 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [077e23ad] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org2.example.com | [12c3 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer1.org2.example.com | [12c4 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [077e23ad] Sending GET_STATE -peer1.org2.example.com | [12c5 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [077e23ad] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [12c6 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [077e23ad] handling GET_STATE from chaincode -peer1.org2.example.com | [12c7 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [077e23ad] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [12c8 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [12c9 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [077e23ad] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [12ca 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [077e23ad]Received message RESPONSE from peer -peer1.org2.example.com | [12cb 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [077e23ad] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [12cc 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [077e23ad] before send -peer1.org2.example.com | [12cd 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [077e23ad] after send -peer1.org2.example.com | [12ce 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [077e23ad] Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [10dd 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [10de 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [10df 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [10e0 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [10e3 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [10e1 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [10e2 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [10e4 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [10e5 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [10e7 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [10e8 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [10e9 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [10ea 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [10ec 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [10eb 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [10ed 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [10ee 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [10ef 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [10f0 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [10f1 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [c59 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [c5a 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [c5b 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [c5c 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [c5d 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [c5e 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [c5f 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [c60 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [c61 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -orderer.example.com | [c62 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -orderer.example.com | [c63 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -orderer.example.com | [c64 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [c65 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [c66 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608D48DBED80522...172305FBB799B8EE568A36179D54CF55 -orderer.example.com | [c67 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: F0B6CC2F781A109D61C1057909D3E380AE909E2DB6457FB7FC4940E38196A2E1 -orderer.example.com | [c68 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -orderer.example.com | [c69 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c6a 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -orderer.example.com | [c6b 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [c6c 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -orderer.example.com | [c6d 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [c6e 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq -orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO -orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw -orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o -orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR -orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [c6f 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eae0 gate 1527744212542395900 evaluation starts -orderer.example.com | [c70 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eae0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [c71 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eae0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [c72 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [c73 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [c74 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eae0 principal matched by identity 0 -orderer.example.com | [c75 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f0 b6 cc 2f 78 1a 10 9d 61 c1 05 79 09 d3 e3 80 |.../x...a..y....| -orderer.example.com | 00000010 ae 90 9e 2d b6 45 7f b7 fc 49 40 e3 81 96 a2 e1 |...-.E...I@.....| -orderer.example.com | [c76 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 30 95 02 3a 66 78 64 bd f2 57 |0E.!..0..:fxd..W| -orderer.example.com | 00000010 d0 65 9c fd 5f 7f b2 7e db 43 0a d4 cb 19 55 d7 |.e.._..~.C....U.| -orderer.example.com | 00000020 e1 d0 e1 08 ae 02 20 06 87 0c f5 ae 15 10 a1 25 |...... ........%| -orderer.example.com | 00000030 53 be cd 10 d2 b7 a6 55 5c 85 da 2e 6e fe 6c 6d |S......U\...n.lm| -orderer.example.com | 00000040 75 db ec ae 4e f5 68 |u...N.h| -orderer.example.com | [c77 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eae0 principal evaluation succeeds for identity 0 -orderer.example.com | [c78 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eae0 gate 1527744212542395900 evaluation succeeds -orderer.example.com | [c79 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [c7a 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [c7b 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -orderer.example.com | [c7c 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -orderer.example.com | [c7d 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -peer0.org2.example.com | [10f2 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [10f3 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [10f4 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [10f5 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [10f6 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [10f7 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [10f9 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [10fa 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [10fb 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [10f8 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [10e6 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [10fd 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [10fc 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [10fe 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [10ff 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1100 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1101 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1102 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1103 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [1104 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1106 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1105 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1107 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1108 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1109 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [110a 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [110b 05-31 05:22:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [fdf 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [fe0 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [fe1 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [fe2 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [fe3 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [fe4 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [fe5 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [fe6 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [fe7 05-31 05:22:19.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [fe8 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [fe9 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [fea 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [feb 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [fec 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [fed 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [fee 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [fef 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [ff0 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [ff1 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [ff2 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [12cf 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [077e23ad] GetState received payload RESPONSE -peer1.org2.example.com | [12d0 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [077e23ad] Transaction completed. Sending COMPLETED -peer1.org2.example.com | [12d1 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [077e23ad] send state message COMPLETED -peer1.org2.example.com | [12d2 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [077e23ad] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [12d3 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [077e23ad] notifying Txid:077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c, channelID:businesschannel -peer1.org2.example.com | [12d4 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [12d5 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org2.example.com | [12d6 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c] Entry chaincode: name:"exp02" version: 1.0 -peer1.org2.example.com | [12d7 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c,syscc=false,proposal=0xc423419e00,canname=exp02:1.0) -peer1.org2.example.com | [12d8 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c,syscc=true,proposal=0xc423419e00,canname=lscc:1.2.0) -peer1.org2.example.com | [12d9 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org2.example.com | [12da 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [12db 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [077e23ad]Received message TRANSACTION from peer -peer1.org2.example.com | [12dc 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [077e23ad] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [12dd 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [077e23ad] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org2.example.com | [12de 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetDeploymentSpec -peer1.org2.example.com | [12df 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [077e23ad] Sending GET_STATE -peer1.org2.example.com | [12e0 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [077e23ad] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [12e1 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [077e23ad] handling GET_STATE from chaincode -peer1.org2.example.com | [12e2 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [077e23ad] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [12e3 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [12e4 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [077e23ad] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [12e5 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [077e23ad]Received message RESPONSE from peer -peer1.org2.example.com | [12e6 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [077e23ad] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [12e7 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [077e23ad] before send -peer1.org2.example.com | [12e8 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [077e23ad] after send -peer1.org2.example.com | [12e9 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [077e23ad] Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [12ea 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [077e23ad] GetState received payload RESPONSE -peer1.org2.example.com | [12eb 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [077e23ad] Transaction completed. Sending COMPLETED -peer1.org2.example.com | [12ec 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [077e23ad] send state message COMPLETED -peer1.org2.example.com | [12ed 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [077e23ad] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [12ee 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [077e23ad] notifying Txid:077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c, channelID:businesschannel -peer1.org2.example.com | [12ef 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [12f0 05-31 05:22:34.39 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched -peer0.org2.example.com | [110c 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [110d 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [110e 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [110f 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1110 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1111 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1112 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1113 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1115 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1116 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1114 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1117 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 66 but got ts: inc_num:1527744090808810100 seq_num:65 -peer0.org2.example.com | [1118 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1119 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [111a 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [111b 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [111c 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [111d 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [111e 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [111f 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 63 but got ts: inc_num:1527744091508552400 seq_num:62 -peer0.org2.example.com | [1120 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1121 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1122 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1123 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1124 05-31 05:22:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1125 05-31 05:22:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1126 05-31 05:22:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1127 05-31 05:22:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1128 05-31 05:22:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1129 05-31 05:22:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [112a 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [112b 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [112c 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [112d 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [112e 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [112f 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1130 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1131 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1132 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1133 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1134 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1135 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1136 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1137 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1138 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [113a 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [113b 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1139 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [c7e 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -orderer.example.com | [c7f 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:41440 -orderer.example.com | [c80 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [c81 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [c82 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [c83 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [c84 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [c85 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [c86 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [c87 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [c88 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [c89 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [c8a 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [c8b 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [c8c 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [c8d 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -orderer.example.com | [c8e 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [c8f 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [c90 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | [c91 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [c92 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [c93 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [c94 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [c95 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [c96 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | [c97 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -orderer.example.com | [c98 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -orderer.example.com | [c99 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -orderer.example.com | [c9a 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [c9b 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [c9c 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [c9d 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [c9e 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [c9f 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [ca0 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [ca1 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [ca2 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == -orderer.example.com | [ca3 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ca4 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -orderer.example.com | [ca5 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [ca6 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b52c20 gate 1527744212549563300 evaluation starts -orderer.example.com | [ca7 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [ca8 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ca9 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -orderer.example.com | [caa 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [ff3 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\002 KY\211\257\332\351\301Q\244p\002\210\010\260EZ\226&y\342\0162\327\202\000B\2712q\245\254g" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > alive: -peer1.org1.example.com | [ff4 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [ff5 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [ff6 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ff7 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ff8 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ff9 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [ffa 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ffb 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [ffc 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [ffd 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [ffe 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [fff 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1000 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1001 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1003 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1004 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1006 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1005 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1002 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1007 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1008 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [113c 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [113d 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [113e 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [113f 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1140 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1141 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1142 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1143 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1144 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1145 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1147 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1148 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1146 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1149 05-31 05:22:21.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [114a 05-31 05:22:21.39 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [114b 05-31 05:22:21.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [114c 05-31 05:22:21.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [114d 05-31 05:22:21.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org2.example.com | [114e 05-31 05:22:21.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [114f 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1150 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1151 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1152 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1153 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1154 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1155 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1156 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1157 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1158 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1159 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [115a 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [115b 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [115c 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [115e 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [115d 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1160 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [115f 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1161 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1162 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1163 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1164 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1165 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1166 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1167 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1168 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1169 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [116a 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [116b 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [116c 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [116d 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [116e 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [cab 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 principal matched by identity 1 -orderer.example.com | [cac 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 2a 40 71 67 b3 da 91 b6 d1 0f ea 8c c3 a9 19 78 |*@qg...........x| -orderer.example.com | 00000010 34 b2 9a a4 f8 ce 44 a3 93 42 0a 57 6b fa 64 99 |4.....D..B.Wk.d.| -orderer.example.com | [cad 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 15 c0 eb 30 35 4f 3b e6 d4 2b 38 51 |0D. ...05O;..+8Q| -orderer.example.com | 00000010 e4 29 08 3e a5 5f 5f 45 cf 41 51 5d 8f 16 12 6a |.).>.__E.AQ]...j| -orderer.example.com | 00000020 e4 a3 8a 04 02 20 3f 85 f6 b8 9f 3a 4c f2 ea a9 |..... ?....:L...| -orderer.example.com | 00000030 9c 3d 82 35 0e a7 b2 74 00 41 ce 82 80 64 fa b8 |.=.5...t.A...d..| -orderer.example.com | 00000040 a9 ac 9c 0d ab 05 |......| -orderer.example.com | [caf 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41440: rpc error: code = Canceled desc = context canceled -orderer.example.com | [cb0 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -orderer.example.com | [cae 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 principal evaluation succeeds for identity 1 -orderer.example.com | [cb1 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b52c20 gate 1527744212549563300 evaluation succeeds -orderer.example.com | [cb3 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41438: rpc error: code = Canceled desc = context canceled -orderer.example.com | [cb4 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [cb2 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [cb5 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -orderer.example.com | [cb6 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -orderer.example.com | [cb7 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -orderer.example.com | [cb8 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b530e0 gate 1527744212554917500 evaluation starts -orderer.example.com | [cb9 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b530e0 signed by 0 principal evaluation starts (used [false false false]) -orderer.example.com | [cba 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b530e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [cbb 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b530e0 principal matched by identity 0 -peer1.org1.example.com | [1009 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [100b 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [100a 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [100c 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [100d 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [100e 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [100f 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1010 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1011 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1012 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1013 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1015 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1014 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1016 05-31 05:22:20.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [1017 05-31 05:22:20.97 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [1018 05-31 05:22:20.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1019 05-31 05:22:20.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [101a 05-31 05:22:20.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [101b 05-31 05:22:20.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [101c 05-31 05:22:21.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [101d 05-31 05:22:21.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [101e 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [101f 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1020 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1021 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [12f1 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [12f2 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 -peer1.org2.example.com | [12f3 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 -peer1.org2.example.com | [12f4 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org2.example.com | [12f5 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock -peer1.org2.example.com | [12f6 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock -peer1.org2.example.com | [12f7 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-exp02-1.0 -peer1.org2.example.com | [12f8 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-exp02-1.0(No such container: dev-peer1.org2.example.com-exp02-1.0) -peer1.org2.example.com | [12f9 05-31 05:22:34.40 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) -peer1.org2.example.com | [12fa 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Remove container dev-peer1.org2.example.com-exp02-1.0 (No such container: dev-peer1.org2.example.com-exp02-1.0) -peer1.org2.example.com | [12fb 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Start container dev-peer1.org2.example.com-exp02-1.0 -peer1.org2.example.com | [12fc 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org2.example.com | [12fd 05-31 05:22:34.40 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 | [12fe 05-31 05:22:34.40 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 | [12ff 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org2.example.com | FROM hyperledger/fabric-baseos:amd64-0.4.8 -peer1.org2.example.com | ADD binpackage.tar /usr/local/bin -peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org2.example.com | org.hyperledger.fabric.version="1.2.0" \ -peer1.org2.example.com | org.hyperledger.fabric.base.version="0.4.8" -peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.2.0 -peer1.org2.example.com | [1300 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org2.example.com | [1301 05-31 05:22:34.40 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental -peer1.org2.example.com | [1302 05-31 05:22:34.41 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 -peer1.org2.example.com | [1303 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1304 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1305 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1306 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1307 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1308 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1309 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [130a 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [130b 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [130c 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [130d 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [130e 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [130f 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1310 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1312 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1313 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1314 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1311 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1315 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1316 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1317 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1318 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1319 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [131a 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [131b 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [131c 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [131d 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [131e 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [131f 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1320 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1321 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1322 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1323 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1324 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1325 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1326 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1327 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1328 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1329 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [132b 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [132a 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [132c 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [132d 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [132e 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [132f 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1330 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1331 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1332 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1333 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1334 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1335 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1336 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1337 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1338 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1339 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [133a 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [133b 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [133c 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [133d 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [133e 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11ce 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [116f 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [cbc 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 93 cf 09 ee 40 78 08 19 7e ec 97 71 b8 45 29 c7 |....@x..~..q.E).| -peer1.org1.example.com | [1022 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [133f 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [11cf 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1170 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | 00000010 be c5 1b 2b 5a b3 b3 dc b4 ce 81 33 77 a9 7e 57 |...+Z......3w.~W| -peer1.org1.example.com | [1023 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1340 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [11d1 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1171 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [cbd 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc 82 74 43 ed 31 1a f5 83 02 f3 |0E.!...tC.1.....| -peer1.org1.example.com | [1024 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1341 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [11d0 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1172 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | 00000010 c5 3c d0 c7 b5 fb ec 59 0c 3f e0 88 6a 70 ab 57 |.<.....Y.?..jp.W| -peer1.org1.example.com | [1025 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1342 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [11d2 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1173 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | 00000020 50 08 a6 39 94 02 20 7d 24 bf 95 1d de 6b 29 02 |P..9.. }$....k).| -peer1.org1.example.com | [1026 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1343 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1027 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1174 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | 00000030 71 8d 39 3a 88 7f 01 b1 e3 47 06 08 47 e6 37 af |q.9:.....G..G.7.| -peer1.org2.example.com | [1344 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [1028 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11d4 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1175 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -orderer.example.com | 00000040 22 b1 4b 6c 66 5a e6 |".KlfZ.| -peer1.org2.example.com | [1345 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1029 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [11d3 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1176 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [cbe 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b530e0 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [1346 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [102a 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11d5 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1177 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [cbf 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b530e0 gate 1527744212554917500 evaluation succeeds -peer1.org2.example.com | [1347 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [102b 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11d6 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1178 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -orderer.example.com | [cc0 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [1348 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [102c 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11d7 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1179 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [cc1 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [1349 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [102d 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [11d8 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [117a 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [cc2 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins -peer1.org2.example.com | [134a 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [102e 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [11d9 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [117b 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [cc3 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins -peer1.org2.example.com | [134b 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [102f 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [11da 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [117c 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [cc4 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -peer1.org2.example.com | [134c 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1030 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [11db 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [117d 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [cc5 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -peer1.org2.example.com | [134d 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [1031 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [11dc 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [117e 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [cc6 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org2.example.com | [134f 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1032 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [11dd 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [117f 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [cc7 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [1033 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [134e 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [11de 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1180 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [cc8 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [1034 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1350 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [11df 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1181 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | [cc9 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [1035 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1351 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 84 but got ts: inc_num:1527744091840124700 seq_num:83 -peer0.org1.example.com | [11e0 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1182 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | [cca 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [1036 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1352 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [11e1 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1183 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [ccb 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [1037 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1353 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [11e2 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1184 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1185 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1039 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1354 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1186 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [11e3 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [ccc 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [1038 05-31 05:22:21.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1355 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1187 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11e4 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -orderer.example.com | [ccd 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [103a 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1356 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1188 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11e5 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [cce 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [1357 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [103b 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1189 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [11e6 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [ccf 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [1358 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [103c 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [118a 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11e7 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [cd0 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [1359 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [103d 05-31 05:22:21.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [118b 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11e8 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -orderer.example.com | [cd1 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [135a 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [103e 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [118c 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [11e9 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [cd2 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [135b 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [103f 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [118d 05-31 05:22:21.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [11eb 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -orderer.example.com | [cd3 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [135c 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1040 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [118e 05-31 05:22:21.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [11ec 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [cd4 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [135d 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1041 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [118f 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [11ea 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020J" signature:"0E\002!\000\321\033~(\227\316\210\326\000Hy\177\240\372\211\273\035\037\303\035\337\177g\360J\252:\320\271\315\240\\\002 \013T5\234\322\007\000d\210\241\216\037\347\026,\225\327i1\316\336\300\237>\322\377\356\031/\211\321\327" > -orderer.example.com | [cd5 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [135e 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [135f 05-31 05:22:34.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1190 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [11ed 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [cd6 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [1360 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1191 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1042 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11ee 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [cd7 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [1361 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1192 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1043 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [11ef 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [cd8 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [1362 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1194 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1044 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11f0 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [cd9 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [1363 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1195 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1045 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11f1 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [cda 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [1364 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1193 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1046 05-31 05:22:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [11f2 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [cdb 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [1365 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1197 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1047 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11f3 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -orderer.example.com | [cdc 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [1366 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [1196 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1048 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11f4 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [cdd 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [1367 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1198 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1049 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [11f5 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [cde 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [1199 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1368 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org1.example.com | [104a 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [11f6 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [cdf 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [119a 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1369 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [104b 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [11f7 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [ce0 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [119b 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org2.example.com | [136b 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [104c 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [ce1 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [11f8 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [11f9 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [136a 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -orderer.example.com | [ce2 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [11fa 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [119c 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [136c 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [104d 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [ce3 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [11fb 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [119d 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [136d 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [104e 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -orderer.example.com | [ce4 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [11fc 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [136e 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [119e 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [104f 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [ce5 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org1.example.com | [11fd 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [136f 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 1] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org2.example.com | [119f 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1050 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [ce6 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [11fe 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1370 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11a0 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -orderer.example.com | [ce7 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [1051 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [11ff 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [1371 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [11a1 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -orderer.example.com | [ce8 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [1052 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1200 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1372 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [11a2 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [ce9 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [1053 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1201 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1373 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [11a3 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -orderer.example.com | [cea 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [1054 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1202 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1374 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11a4 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [ceb 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [1055 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1203 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1375 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [11a5 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [cec 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [1056 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1204 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1376 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11a6 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [ced 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -peer1.org1.example.com | [1058 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1205 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1377 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [11a7 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [cee 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -peer1.org1.example.com | [1059 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1206 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1378 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [11a8 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [cef 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -peer1.org1.example.com | [1057 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1207 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1379 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [11a9 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [cf0 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [105a 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1208 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [137a 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [11aa 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -peer1.org1.example.com | [105b 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1209 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [137b 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [11ab 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -peer1.org1.example.com | [105c 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [120a 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [11ad 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [137c 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -peer1.org1.example.com | [105d 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [120b 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11ac 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" secret_envelope: > alive:\222\021Y\225\253\314\331\230\355\233\300$\346\3420\265{\355\236vf\344x\262\203\360\002 \0026\030\023#\201\245\304\243(\270%|\334hW\022*%\306f\267\321\254\007\310\357k\037\300!\007" secret_envelope: > -peer1.org2.example.com | [137d 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -peer1.org1.example.com | [105e 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [120c 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [11ae 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [137e 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -peer1.org1.example.com | [105f 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [120d 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [11af 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [137f 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -peer0.org2.example.com | [11b0 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1380 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -peer1.org1.example.com | [1060 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [120e 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1381 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [11b1 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -peer1.org1.example.com | [1061 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [120f 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1382 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [11b2 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -peer1.org1.example.com | [1062 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1210 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [1384 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [11b3 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -peer1.org1.example.com | [1063 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1211 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org2.example.com | [1385 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [11b4 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -peer1.org1.example.com | [1064 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1212 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1383 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020S" signature:"0D\002 sl\366\014h4\372\022\222\365?\357\357>\343\334\237`\326_\351\206\034\200\007'\200\243`\340\200\325\002 ~\301\270\325\211\nW9QZ\014r4\216\366\376\205P\222\005\207L\177\255L\307\354s\277\363?\014" > alive: alive:\255\334\240d\001}\002 GN@d7\255cz\276\223\332\241\316!;\250\033\036s\237\036P\013\021f\340[\3179\032\336\007" > -peer0.org2.example.com | [11b5 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -peer1.org1.example.com | [1065 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1213 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1386 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [11b6 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | -----END CERTIFICATE----- -peer1.org1.example.com | [1066 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1214 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1388 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [11b7 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [cf1 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -peer1.org1.example.com | [1067 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1389 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1215 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [11b9 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -peer1.org1.example.com | [1068 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [138a 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1216 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [11b8 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -peer1.org1.example.com | [1069 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [138b 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1217 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [11ba 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -peer1.org1.example.com | [106a 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org2.example.com | [1387 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1218 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [11bb 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -peer1.org2.example.com | [138c 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [138d 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [11bc 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -peer1.org1.example.com | [106b 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [138e 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11bd 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1219 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -peer1.org2.example.com | [138f 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [11bf 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [106c 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [121a 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -peer1.org2.example.com | [1390 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11be 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [106d 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [121b 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -peer1.org2.example.com | [1391 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [11c0 05-31 05:22:23.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [106e 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [121c 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -peer1.org2.example.com | [1392 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11c1 05-31 05:22:23.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [106f 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [121d 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -peer1.org2.example.com | [1393 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [11c2 05-31 05:22:23.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1070 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [121e 05-31 05:22:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -peer0.org2.example.com | [11c3 05-31 05:22:23.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer1.org2.example.com | [1394 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1071 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [121f 05-31 05:22:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | -----END CERTIFICATE----- -peer0.org2.example.com | [11c4 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1395 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1072 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1220 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [cf2 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -peer0.org2.example.com | [11c5 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1396 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1073 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1221 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [cf3 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [11c6 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1397 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [1074 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1222 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -orderer.example.com | [cf4 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org2.example.com | [11c7 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [1398 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1075 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1223 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -orderer.example.com | [cf5 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [11c8 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [1399 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1076 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1224 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 1] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -orderer.example.com | [cf6 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [11c9 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [139a 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1077 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1225 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [cf7 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [11ca 05-31 05:22:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [139b 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [1078 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1226 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1227 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11cb 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [139c 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [1079 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [1228 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [11cc 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | [cf8 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [139d 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [107a 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1229 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [11cd 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -orderer.example.com | [cf9 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [139e 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [107b 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020D" signature:"0D\002 \0103\310i\277\304O\025J\025h\230j\007\000\\eN\261\360\203J\323\304\362\"\205\236\033\311\\\314\002 \rPj\256\230'V\2369]lh\373\202~j\250p\001\235:\365\267+\312\206{\366d\2431\316" > alive: alive:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > alive: -peer0.org1.example.com | [122a 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [11ce 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [cfa 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -peer1.org2.example.com | [139f 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [107c 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [122b 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11cf 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | [cfb 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -peer1.org2.example.com | [13a0 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [13a1 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [13a2 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [13a3 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [13a4 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [13a5 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [13a6 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [13a7 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [13a8 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [13a9 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [13aa 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [13ab 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [11d0 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11d1 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [11d2 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [11d3 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [11d4 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [11d5 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [11d6 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [11d7 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [11d8 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [11d9 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [11da 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [11db 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [11dc 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [107d 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [122c 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [122d 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [122e 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [122f 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1230 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1231 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1232 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1233 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1234 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1235 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1236 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1237 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1238 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1239 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [123a 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [123b 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [123c 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020K" signature:"0E\002!\000\306.\010\375o\"\211sK9\270\237\273\274\213v_\203\365Q\r\025\314\327\234\2221k(d\361e\002 \006n\341K\365\223_;-O\217g\355\325i\247\277\310\331\007\"\035\376Bh6\363\035\336ZE\024" secret_envelope: > -peer0.org1.example.com | [123d 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [123e 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [123f 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1240 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [1241 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1242 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [11dd 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020D" signature:"0D\002 \0103\310i\277\304O\025J\025h\230j\007\000\\eN\261\360\203J\323\304\362\"\205\236\033\311\\\314\002 \rPj\256\230'V\2369]lh\373\202~j\250p\001\235:\365\267+\312\206{\366d\2431\316" > alive: alive:\271z&\356\210\007\241k\251\241\342\356\314L" > -peer0.org2.example.com | [11de 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [11df 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [11e0 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [11e1 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [11e2 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11e3 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [11e4 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [11e5 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [11e6 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [11e7 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11e8 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [11e9 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [11ea 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [11eb 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [11ec 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11ed 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [11ee 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [11ef 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [11f0 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [11f1 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [11f2 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [11f3 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [11f4 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [11f5 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [11f6 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [11f7 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [11f8 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [11f9 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [11fa 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [11fb 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [11fc 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > alive: alive:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > alive: -peer0.org2.example.com | [11fd 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [11fe 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [11ff 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1200 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1201 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1202 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1203 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [1204 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1205 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1206 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1207 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1208 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1209 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [120a 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [120b 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [120c 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [120d 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [120e 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [120f 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1211 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1212 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1210 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1213 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1214 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1215 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1216 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1217 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [cfc 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [cfd 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [cfe 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP -orderer.example.com | [cff 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQGCm4/p9EqkmwbVtW/XJGKTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzFaFw0yODAxMjgwNzQwMzFa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | 3PqQMEKlMela9BLoXcDOFEqvw7LGhC/imYoK8TmTuD3fc8zCMco+Vro5wdAySGBf -orderer.example.com | jJKIKGongOakmWvtfW0loqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQghdRukz+tFBdsZD0Hxhyl -orderer.example.com | oY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDSAAwRQIhAJFgIoUVJe/5IPVG -orderer.example.com | f7pEMNyhmJ9OTJ5Pmg/dnjt47BGBAiBdmt6ea8+qgSxgqleGtyaDzQhr6TxyJs2H -orderer.example.com | 73TfAIFqpw== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d00 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGDCCAb+gAwIBAgIQUxJMA+tdH0siY+rN7IewmTAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzJaFw0yODAxMjgwNzQwMzJa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmczLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAELmPLYv1h6V32TMihBEBz/dGocBrXc+OK -orderer.example.com | AoZS+bAEFBgwQOU5/JwVt4QH3TNzn1GuHSIVtWjw1ChZCv5NHYg9ZaNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAghdRukz+tFBds -orderer.example.com | ZD0HxhyloY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDRwAwRAIgJnAoONQf -orderer.example.com | 57KM4I9TaFQTI/EG7TjdwLP5Pe1Qgj5MmGMCIEPVLGqnvMyVbdTuJvPYXJlIVthz -orderer.example.com | 6bM3NghPvYPoknIC -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d01 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity -peer1.org1.example.com | [107e 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [107f 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1080 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1081 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1082 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1083 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1084 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1085 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1086 05-31 05:22:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1088 05-31 05:22:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1087 05-31 05:22:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1089 05-31 05:22:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [108a 05-31 05:22:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [108b 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [108c 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [108d 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [108f 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [1090 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [108e 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [1091 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1092 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [1093 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1094 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [1095 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1096 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1097 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1098 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1099 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [109a 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [109b 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org2.example.com | [13ac 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > alive: alive: -peer1.org2.example.com | [13ad 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [13ae 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [13af 05-31 05:22:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [13b0 05-31 05:22:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer1.org2.example.com | [13b1 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [13b2 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [13b3 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [13b4 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [13b6 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [13b7 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [13b5 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [13b8 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [13b9 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [13ba 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [13bb 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [13bc 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [13bd 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [13be 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [d02 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [d03 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [d04 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [d05 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d06 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -orderer.example.com | [d07 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -orderer.example.com | [d08 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [d09 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [d0a 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -orderer.example.com | [d0b 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -orderer.example.com | QKuzs3j8kg== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d0c 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -orderer.example.com | 3BDFnYuSFYhOCexVkA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d0d 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [d0e 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -orderer.example.com | [d0f 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -orderer.example.com | [d10 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -orderer.example.com | [d11 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -orderer.example.com | [d12 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -orderer.example.com | [d13 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -orderer.example.com | [d14 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -orderer.example.com | [d15 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -orderer.example.com | [d16 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -orderer.example.com | [d17 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -orderer.example.com | CSJWn+U1 -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d18 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -orderer.example.com | 5Y80QLeEvYkoMMMbcA== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d19 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [d1a 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) -orderer.example.com | [d1b 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps -orderer.example.com | [d1c 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP -orderer.example.com | [d1d 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP -orderer.example.com | [d1e 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP -orderer.example.com | [d1f 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -orderer.example.com | [d20 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -orderer.example.com | [d21 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -orderer.example.com | [d22 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -orderer.example.com | [d23 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -orderer.example.com | [d24 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -orderer.example.com | [d25 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -orderer.example.com | [d26 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -orderer.example.com | [d27 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -orderer.example.com | [d28 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -orderer.example.com | [d29 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -orderer.example.com | [d2a 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -orderer.example.com | [d2b 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -orderer.example.com | [d2c 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -orderer.example.com | [d2d 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -orderer.example.com | [d2e 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -orderer.example.com | [d2f 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -orderer.example.com | [d30 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -orderer.example.com | [d31 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -orderer.example.com | [d32 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -orderer.example.com | [d33 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -orderer.example.com | [d34 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -orderer.example.com | [d35 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -orderer.example.com | [d36 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -orderer.example.com | [d37 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -orderer.example.com | [d38 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -orderer.example.com | [d39 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -orderer.example.com | [d3a 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -orderer.example.com | [d3b 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -orderer.example.com | [d3c 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -orderer.example.com | [d3d 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -orderer.example.com | [d3e 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -orderer.example.com | [d3f 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -orderer.example.com | [d40 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -orderer.example.com | [d41 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -orderer.example.com | [d42 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -orderer.example.com | [d43 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -orderer.example.com | [d44 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -orderer.example.com | [d45 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -orderer.example.com | [d46 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -orderer.example.com | [d47 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -orderer.example.com | [d48 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -orderer.example.com | [d49 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -orderer.example.com | [d4a 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [1243 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1245 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1246 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1244 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1247 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1248 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [124a 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1249 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [124b 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [124c 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [124d 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [124e 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [124f 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1250 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1251 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1252 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1253 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1254 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1255 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1256 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1218 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [13bf 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [13c0 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [13c1 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [13c2 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [13c3 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [13c4 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [13c5 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [13c6 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [13c7 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [13c9 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [13c8 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [13ca 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [13cb 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:rY\371%\307\354" secret_envelope: > -peer1.org2.example.com | [13cc 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer1.org2.example.com | [13cd 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [13ce 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 4}, Envelope: 5364 bytes, Signature: 0 bytes -peer1.org2.example.com | [13cf 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [13d0 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [13d1 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [13d2 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42273c9e0 env 0xc4224abb00 txn 0 -peer1.org2.example.com | [13d3 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4224abb00 -peer1.org2.example.com | [13d4 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -peer1.org2.example.com | [13d5 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [13d6 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [109c 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [109d 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [109e 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [109f 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [10a0 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [10a1 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [10a2 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [10a3 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [10a4 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [10a5 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [10a6 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [10a7 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [10a8 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [10a9 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [10aa 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [10ab 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [10ac 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [10ae 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [10ad 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [10af 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [10b0 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [10b1 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [10b3 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [10b4 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [10b5 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [10b2 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [10b6 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [10b7 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [10b8 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [10b9 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\31385\036#\252`\311\370h\366:~" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [10ba 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [10bb 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [10bd 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [10be 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [10bf 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [10bc 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [10c0 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [10c1 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [10c2 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [10c3 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [10c4 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [10c5 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [10c6 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [10c7 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [10c8 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10c9 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [10ca 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [10cb 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [10cc 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10cd 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [10ce 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [10cf 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [10d0 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [10d1 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [10d2 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [10d3 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [10d4 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10d5 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [10d6 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [10d7 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [10d8 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [10d9 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [10da 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [10db 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [10dc 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [10dd 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10de 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [10df 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [10e1 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [10e2 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [10e0 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [10e3 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [10e4 05-31 05:22:23.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [10e5 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [10e6 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [10e7 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10e8 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [10e9 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [10ea 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [10eb 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [10ec 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 70 but got ts: inc_num:1527744091618763800 seq_num:69 -peer1.org1.example.com | [10ed 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10ee 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [10ef 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [10f0 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [10f1 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10f2 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [10f3 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [10f4 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 71 but got ts: inc_num:1527744091840124700 seq_num:70 -peer1.org1.example.com | [10f5 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10f6 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [10f7 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [10f8 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [10f9 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [10fa 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [10fb 05-31 05:22:23.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [10fc 05-31 05:22:23.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [10fd 05-31 05:22:23.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [10fe 05-31 05:22:23.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [10ff 05-31 05:22:23.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1100 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1101 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1102 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1103 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1104 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1105 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1106 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1107 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1108 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [1109 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [110a 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [110b 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [110c 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [110d 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [110e 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [110f 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1110 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1111 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1112 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1113 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1114 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1115 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [1116 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1117 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" secret_envelope: > alive: > -peer1.org1.example.com | [1118 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [1119 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [111a 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [111b 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [111c 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [111d 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [111e 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [111f 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1120 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1121 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1122 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1123 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1124 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1125 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1126 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1127 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1128 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1129 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [112a 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [112b 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [112c 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [112d 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [112e 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > alive: alive: alive: -peer1.org1.example.com | [112f 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1130 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1219 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [121a 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [121b 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [121c 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [121d 05-31 05:22:23.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [121e 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [121f 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1220 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1221 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1222 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1223 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1224 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1225 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1226 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1227 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1228 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1229 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [122a 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [122b 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [122c 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [122d 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [122e 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [122f 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1230 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [13d7 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer1.org2.example.com | [13d8 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [13d9 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [13da 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42437ca80, header channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -peer1.org2.example.com | [13db 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [13dc 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [13dd 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [13de 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org2.example.com | [13df 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -peer1.org2.example.com | [13e0 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [13e1 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc424378880 -peer1.org2.example.com | [13e2 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin -peer1.org2.example.com | [13e3 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [13e4 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -peer1.org2.example.com | [13e5 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [13e6 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [13e7 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org2.example.com | [13e8 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org2.example.com | [13e9 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [44a62568-3fd5-4986-a63d-0f0fd328a2a1] -peer1.org2.example.com | [13ea 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [13eb 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [44a62568-3fd5-4986-a63d-0f0fd328a2a1] -peer1.org2.example.com | [13ec 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -orderer.example.com | [d4b 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -orderer.example.com | [d4c 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -orderer.example.com | [d4d 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -orderer.example.com | [d4e 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [d4f 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -orderer.example.com | [d50 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -orderer.example.com | [d51 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -orderer.example.com | [d52 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -orderer.example.com | [d53 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -orderer.example.com | [d54 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -orderer.example.com | [d55 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -orderer.example.com | [d56 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -orderer.example.com | [d57 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -orderer.example.com | [d58 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -orderer.example.com | [d59 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -orderer.example.com | [d5a 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -orderer.example.com | [d5b 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -orderer.example.com | [d5c 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -orderer.example.com | [d5d 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -orderer.example.com | [d5e 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -orderer.example.com | [d5f 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -orderer.example.com | [d60 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -orderer.example.com | [d61 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -orderer.example.com | [d62 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -orderer.example.com | [d63 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [d64 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [d65 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -orderer.example.com | [d66 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -orderer.example.com | [d67 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -orderer.example.com | [d68 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -orderer.example.com | [d69 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -orderer.example.com | [d6a 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -orderer.example.com | [d6b 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -orderer.example.com | [d6c 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -orderer.example.com | [d6d 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -orderer.example.com | [d6e 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -orderer.example.com | [d6f 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -orderer.example.com | [d70 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -orderer.example.com | [d71 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [1231 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1232 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1234 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1235 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1233 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1236 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1237 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1239 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [1238 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [123a 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [123b 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [123c 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [123d 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [123e 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [123f 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1241 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [1240 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1242 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1243 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1244 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1245 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1246 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 68 but got ts: inc_num:1527744091508552400 seq_num:67 -peer0.org2.example.com | [1247 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1248 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1249 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [13ed 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org2.example.com | [13ee 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated -peer1.org2.example.com | [13ef 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c appears to be invalid: Chaincode exp02 is already instantiated -peer1.org2.example.com | [13f0 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc424378880 -peer1.org2.example.com | [13f1 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c returned error: Chaincode exp02 is already instantiated -peer1.org2.example.com | [13f2 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer1.org2.example.com | [13f3 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [13f4 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -peer1.org2.example.com | [13f5 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [13f6 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer1.org2.example.com | [13f7 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [13f8 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer1.org2.example.com | [13f9 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [13fa 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [13fb 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [13fc 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -peer1.org2.example.com | [13fd 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42273c9e0 env 0xc4224abb00 txn 0 -peer1.org2.example.com | [13fe 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] -peer1.org2.example.com | [13ff 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x9a, 0x51, 0x32, 0x74, 0x5b, 0x5e, 0xdc, 0xf4, 0xd1, 0x99, 0x68, 0x77, 0x79, 0x27, 0x0, 0xa0, 0x37, 0xef, 0x47, 0xcb, 0x4b, 0xc5, 0x8c, 0x46, 0x68, 0xc7, 0x45, 0x86, 0x87, 0xb6, 0xda, 0x34} txOffsets= -peer1.org2.example.com | txId=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c locPointer=offset=70, bytesLength=3458 -peer1.org2.example.com | ] -peer1.org2.example.com | [1400 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to index -peer1.org2.example.com | [1401 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx number:[0] ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to blockNumTranNum index -peer1.org2.example.com | [1402 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50743], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org2.example.com | [1403 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] -peer1.org2.example.com | [1404 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] -peer1.org2.example.com | [1405 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -peer1.org2.example.com | [1406 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer1.org2.example.com | [1407 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [1131 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1132 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1133 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1134 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1135 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1136 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1137 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1138 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1139 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [113a 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [113b 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [113c 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [113d 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [113e 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [113f 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1140 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1142 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1141 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1143 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1144 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1145 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1146 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1147 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [124a 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [124b 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [124c 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [124d 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [124e 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [124f 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1250 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1251 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1252 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1253 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1254 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1255 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1256 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1257 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1258 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1259 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [125a 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [125b 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [125c 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [125d 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [125e 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [125f 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1260 05-31 05:22:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1261 05-31 05:22:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [1262 05-31 05:22:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1263 05-31 05:22:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1264 05-31 05:22:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1265 05-31 05:22:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1266 05-31 05:22:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1267 05-31 05:22:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1268 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1269 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [126a 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [126b 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [126c 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [126d 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [126e 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [126f 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1270 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1271 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1272 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1273 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1274 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1275 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1276 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1277 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1278 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [d72 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -orderer.example.com | [d73 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -orderer.example.com | [d74 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [d75 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [d76 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...E213D92C4161E63BBD92FD2B5192FC80 -orderer.example.com | [d77 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C1B123295668100A5DBFA6F5E92D6B0DB619EDFB7980BBA1AB4AC9E55CA6B3AF -orderer.example.com | [d78 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 3 to 4, setting lastConfigBlockNum from 2 to 7 -orderer.example.com | [d79 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [d7a 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 7 -orderer.example.com | [d7b 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -orderer.example.com | [d7c 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...E213D92C4161E63BBD92FD2B5192FC80 -orderer.example.com | [d7d 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 09D592D75CEB49B32BD000273BD94572260B8B892CEF5E69FC3C17DA7B5B00F9 -orderer.example.com | [d7e 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xc4, 0x16, 0x22, 0xe7, 0x46, 0x1a, 0xfc, 0xec, 0xc7, 0x69, 0xc, 0xf3, 0xe0, 0x1, 0x23, 0x22, 0x90, 0xfe, 0x17, 0x1c, 0xa7, 0xb2, 0xe9, 0x74, 0x12, 0x78, 0x2c, 0xe5, 0xd0, 0xba, 0x37, 0xee} txOffsets= -orderer.example.com | txId= locPointer=offset=71, bytesLength=19393 -orderer.example.com | ] -orderer.example.com | [d7f 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81564], isChainEmpty=[false], lastBlockNumber=[7] -orderer.example.com | [d80 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 -orderer.example.com | [d81 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [d82 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -orderer.example.com | [d83 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [d84 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -orderer.example.com | [d85 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -orderer.example.com | [d86 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -orderer.example.com | [d87 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -orderer.example.com | [d88 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -orderer.example.com | [d89 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [d8a 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [d8c 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [d8b 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [d8d 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [d8e 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [d8f 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [d90 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [d91 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [d92 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [d93 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [d94 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [d95 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL -orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -orderer.example.com | Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2 -orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc -orderer.example.com | 2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G -orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r -orderer.example.com | 94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL -orderer.example.com | pKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x -orderer.example.com | Fi/K4VUkcrt2/JHLe2M= -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d96 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw -orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj -orderer.example.com | SPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD -orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue -orderer.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l -orderer.example.com | XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S -peer1.org1.example.com | [1148 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1149 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [114a 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [114b 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [114c 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [114d 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [114e 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [114f 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1150 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1151 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1152 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1153 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1154 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1155 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1156 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1157 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [1158 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [1159 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [115a 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [115b 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [115c 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [115d 05-31 05:22:26.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [115e 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [115f 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1160 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1161 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1162 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1164 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1163 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1165 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1166 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1167 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1168 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1169 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [116a 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [116b 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [116c 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [116d 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [116e 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [116f 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1170 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1171 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1172 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1173 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1174 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1175 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1177 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1176 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1408 05-31 05:22:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [1409 05-31 05:22:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [140a 05-31 05:22:36.41 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [140b 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [140c 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [140d 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [140e 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [140f 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1410 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1411 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1412 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1413 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1414 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1415 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1416 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1417 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1418 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1419 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [141a 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [141b 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [141c 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [141d 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [141e 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [141f 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1420 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1421 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1422 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1423 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1424 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1425 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1426 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1427 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1428 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1429 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [142a 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [142b 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [142c 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [142d 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [142e 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [142f 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1430 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1431 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1432 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1433 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1434 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1435 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1436 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1437 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1178 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1179 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [117a 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [117b 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [117c 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [117d 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [117e 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [117f 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1180 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1181 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1182 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1183 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1184 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1185 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1186 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1187 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1188 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1189 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [118a 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [118b 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [118c 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [118d 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [118e 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [118f 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1279 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [127a 05-31 05:22:25.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [127b 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [127c 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [127d 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [127e 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [127f 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1280 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1281 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1282 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1283 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1284 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1285 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1286 05-31 05:22:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1287 05-31 05:22:26.39 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [1288 05-31 05:22:26.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [1289 05-31 05:22:26.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [128a 05-31 05:22:26.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [128b 05-31 05:22:26.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [128c 05-31 05:22:26.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [128d 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [128e 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [128f 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1290 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1291 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1292 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1438 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1439 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [143a 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [143b 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [143c 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [143d 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [143e 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [143f 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1440 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1441 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1442 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1443 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1444 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1445 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1446 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1447 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1448 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1449 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [144a 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [144b 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [144c 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [144d 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [144e 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [144f 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1450 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1451 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1452 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1453 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1454 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1456 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1455 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1457 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1458 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1459 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [145a 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [145b 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [145c 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [145d 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [145e 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [145f 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1460 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1461 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1462 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1463 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1464 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1465 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1467 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1468 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1466 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1469 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [146b 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [146a 05-31 05:22:38.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [146c 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [146d 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1293 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1294 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1295 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1296 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1297 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1298 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1299 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [129a 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [129b 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [129c 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [129d 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [129e 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [12a0 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [12a1 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [129f 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12a3 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [12a4 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12a5 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12a2 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12a6 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12a7 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12a8 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [12a9 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12aa 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12ab 05-31 05:22:26.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1190 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1191 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1192 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1193 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1194 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1195 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1196 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1197 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1198 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1199 05-31 05:22:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [119a 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [119b 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020I" signature:"0D\002 \002p6\210B\251\262\276\207\373FPK\320\255\250$\217\356\212Se\023\260\3000 zB\035\265\t\002 x\216\0367u\370\300:\375\254X\017\3347\356\251\220\252\020HcW\030\206\020\244\000\035\312\230\301L" > alive: alive: alive: -peer1.org1.example.com | [119c 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [119d 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [119e 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [119f 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11a0 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [11a1 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11a2 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11a3 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | Qh80aTnAegSTSqmA1w== -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [d98 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744212617572100 evaluation starts -orderer.example.com | [d97 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8940 gate 1527744212617572100 evaluation starts -orderer.example.com | [d99 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [d9a 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8940 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [d9b 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [1257 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1259 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [125a 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1258 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [125b 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [125c 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [125d 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [125f 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [125e 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1260 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1261 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1262 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1263 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1264 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1265 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1266 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1267 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1268 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1269 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [126a 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [126b 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [126c 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [12ac 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12ad 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12ae 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [12af 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12b0 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12b1 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12b2 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [12b3 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [12b4 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [12b5 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [12b6 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [12b7 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [12b8 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [12b9 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [12bb 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12bc 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [12bd 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12be 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12bf 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [12ba 05-31 05:22:26.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [12c0 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [12c2 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12c1 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12c3 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [d9c 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8940 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [d9d 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) -orderer.example.com | [d9e 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8940 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org2MSP) -orderer.example.com | [d9f 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal evaluation fails -orderer.example.com | [da0 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8940 principal evaluation fails -orderer.example.com | [da1 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744212617572100 evaluation fails -orderer.example.com | [da2 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8940 gate 1527744212617572100 evaluation fails -orderer.example.com | [da3 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [da4 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [da5 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [da6 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [da7 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [da8 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [da9 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744212618041600 evaluation starts -orderer.example.com | [daa 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8950 gate 1527744212618051700 evaluation starts -orderer.example.com | [dac 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8950 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [126d 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [126e 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [126f 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1270 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1271 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1272 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1273 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1274 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1275 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [1276 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1277 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [1278 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1279 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [127a 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [127b 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [127c 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [127d 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [127e 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [127f 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1280 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1281 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1282 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1283 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1284 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1285 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [11a4 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [11a5 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [11a6 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [11a7 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [11a8 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [11a9 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [11aa 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [11ab 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [11ac 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11ae 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [11ad 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11af 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [11b0 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [11b1 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11b2 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11b3 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11b4 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11b5 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11b7 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [11b6 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11b8 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [11b9 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [11ba 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11bb 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [11bc 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [146e 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [146f 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1470 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1471 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1472 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1473 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1474 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1475 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1476 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1477 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1478 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1479 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [147a 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [147b 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [147c 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1286 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1288 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1289 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [128a 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [128b 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [128c 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [128d 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [128e 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [128f 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 72 but got ts: inc_num:1527744091508552400 seq_num:71 -peer0.org1.example.com | [1290 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1291 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1292 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1293 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 77 but got ts: inc_num:1527744091840124700 seq_num:75 -peer0.org1.example.com | [1294 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1295 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1296 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1297 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1298 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1299 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [129a 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [129b 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [129c 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [129d 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1287 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [129e 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [129f 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [12c4 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12c5 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12c6 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12c7 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [12c8 05-31 05:22:26.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12c9 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [12ca 05-31 05:22:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [12cb 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [12cc 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [12cd 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [12ce 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [12cf 05-31 05:22:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12d0 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [12d1 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [12d2 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [12d3 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12d4 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [12d5 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [12d6 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [12d7 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [12d8 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [12d9 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [dad 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8950 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [dab 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [dae 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8950 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -orderer.example.com | [daf 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [db1 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -orderer.example.com | [db2 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -orderer.example.com | [db3 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal matched by identity 0 -orderer.example.com | [db4 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ab c4 68 d1 2e b2 17 62 a4 47 e2 03 d9 1c 12 e2 |..h....b.G......| -orderer.example.com | 00000010 e9 82 52 e9 46 a0 14 4a d5 3e 39 8b 1c b6 5c ac |..R.F..J.>9...\.| -orderer.example.com | [db0 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8950 principal evaluation fails -orderer.example.com | [db6 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8950 gate 1527744212618051700 evaluation fails -orderer.example.com | [db5 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 02 50 7b 56 4b 5a 3f 22 97 b5 d9 89 |0D. .P{VKZ?"....| -orderer.example.com | 00000010 8d 69 e4 1e 5f 93 21 2e d5 a7 6f 8b c6 c6 93 cf |.i.._.!...o.....| -orderer.example.com | 00000020 75 5c 47 f1 02 20 3c 82 2f 8c 84 5e 6f 73 be a0 |u\G.. <./..^os..| -orderer.example.com | 00000030 ec 01 bf 77 14 b3 98 ba 53 95 d0 99 e5 60 fb 39 |...w....S....`.9| -orderer.example.com | 00000040 2b c6 e3 12 1d d1 |+.....| -orderer.example.com | [db7 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [db8 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [db9 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [dba 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8968 gate 1527744212621750600 evaluation starts -orderer.example.com | [dbb 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8968 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [dbc 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8968 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [dbd 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -orderer.example.com | [dbe 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -orderer.example.com | [dbf 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal evaluation succeeds for identity 0 -orderer.example.com | [dc1 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8968 principal matched by identity 0 -orderer.example.com | [dc0 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744212618041600 evaluation succeeds -orderer.example.com | [dc2 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c 3e fa ef 20 39 e9 85 27 d2 fb f0 d1 e7 42 46 |.>.. 9..'.....BF| -orderer.example.com | 00000010 3a d2 8a 90 44 cc 2a dc ae 47 77 2d d4 cd b9 f7 |:...D.*..Gw-....| -orderer.example.com | [dc4 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 05 a9 c0 86 01 8c c5 76 56 83 db 58 |0D. .......vV..X| -orderer.example.com | 00000010 cf df 31 94 e9 8e 94 e2 4e c2 fc da cd 09 c0 dd |..1.....N.......| -orderer.example.com | 00000020 c0 45 d4 0c 02 20 65 15 45 86 2a b1 08 34 57 75 |.E... e.E.*..4Wu| -orderer.example.com | 00000030 20 d9 9f 1b ee 6d 3f c2 21 68 40 6e a5 3b 4e ef | ....m?.!h@n.;N.| -orderer.example.com | 00000040 f4 45 f5 ae fb cd |.E....| -orderer.example.com | [dc3 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [dc5 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [dc7 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8968 principal evaluation succeeds for identity 0 -orderer.example.com | [dc8 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8968 gate 1527744212621750600 evaluation succeeds -orderer.example.com | [dc9 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [dc6 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [dca 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [dcc 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -orderer.example.com | [dcd 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer1.org1.example.com | [11bd 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [11be 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [11bf 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11c0 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11c1 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11c2 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [11c3 05-31 05:22:26.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11c4 05-31 05:22:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [11c5 05-31 05:22:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [11c6 05-31 05:22:27.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [11c8 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [11c9 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11c7 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [11ca 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11cc 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [11cd 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [11cb 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [11ce 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11cf 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [11d0 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [11d1 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11d2 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [11d3 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11d4 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [11d5 05-31 05:22:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11d6 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [11d7 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [11d8 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [11d9 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11da 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [12da 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [12db 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [12dc 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [12dd 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [12de 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [12df 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer0.org2.example.com | [12e0 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [12e2 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [12e3 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:%\342\246\034\271\225+\035\367\021%\350\251<[\325\327\022_Jb?\007\3749R\216g\002 m\254\242\337\232\250\277\023\377\246T\320\355\367\372\301\361G\350I\222\323\353\311F\\\335^i O5" > > -peer0.org2.example.com | [12e4 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12e5 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [12e1 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [12e7 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12e6 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [12e8 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [12e9 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [12ea 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12eb 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12ec 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [12ed 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [12ee 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12ef 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [12f0 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12f1 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [12f2 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [12f3 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12f4 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [12f7 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12f5 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [12f8 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [12f6 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [12f9 05-31 05:22:27.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [12fa 05-31 05:22:27.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12fb 05-31 05:22:27.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [12fc 05-31 05:22:27.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [12fd 05-31 05:22:27.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [12fe 05-31 05:22:27.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [12ff 05-31 05:22:27.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1300 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1301 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1302 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1303 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1304 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [1305 05-31 05:22:27.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [1306 05-31 05:22:27.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [1307 05-31 05:22:27.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1308 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1309 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [130a 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [130b 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [130c 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [130d 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [130e 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [130f 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1310 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1311 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1312 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1313 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1314 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1315 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1316 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1317 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1318 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [1319 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [131a 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020I" signature:"0D\002 \002p6\210B\251\262\276\207\373FPK\320\255\250$\217\356\212Se\023\260\3000 zB\035\265\t\002 x\216\0367u\370\300:\375\254X\017\3347\356\251\220\252\020HcW\030\206\020\244\000\035\312\230\301L" > alive:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > alive:\345\314\363\302\027\264<<\375\233l_\265\242\235\031\006\367l\352\r" > -peer0.org2.example.com | [131b 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [131c 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [131d 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [131e 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [131f 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1320 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1321 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1322 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1323 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1324 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1325 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1326 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1327 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1328 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1329 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [132a 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [132b 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [132c 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [132d 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [132e 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [132f 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1330 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1331 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1332 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1333 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1334 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1335 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1336 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1337 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1338 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [11db 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org1.example.com | [11dc 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org1.example.com | [11dd 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11de 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [11df 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [11e0 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11e1 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [11e2 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [11e3 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [11e4 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [11e5 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [11e6 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [11e7 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [11e8 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11e9 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [11ea 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11eb 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [11ec 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11ed 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [11ee 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [11ef 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [11f0 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11f1 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [11f2 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [147d 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [147e 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [147f 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1480 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1481 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1482 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1483 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1484 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [1485 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1486 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [1487 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1488 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1489 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [148a 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [148b 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [148c 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [148d 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [148e 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [148f 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1490 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1491 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1492 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1493 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1495 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1494 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1339 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > alive:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > alive: -peer0.org2.example.com | [133a 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [133b 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [133c 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [133d 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [133e 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [133f 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1340 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1341 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1342 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1343 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1344 05-31 05:22:27.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1345 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1346 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1347 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1348 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1349 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [134a 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [134b 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [134c 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [11f3 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [11f4 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11f5 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [11f6 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [11f7 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [11f8 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [11f9 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [11fa 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [11fb 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [11fc 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [11fd 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [11fe 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [11ff 05-31 05:22:27.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1200 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1201 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [dcb 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [dce 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [dd0 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [dcf 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [dd1 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -orderer.example.com | [dd2 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [dd3 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [dd4 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -orderer.example.com | [dd5 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [dd6 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [dd7 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41458 -orderer.example.com | [dd8 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41458 -orderer.example.com | [dd9 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [dda 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ddb 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [ddc 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [ddd 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [dde 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -orderer.example.com | [ddf 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -orderer.example.com | -----END CERTIFICATE----- -orderer.example.com | [de0 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89c8 gate 1527744214664684500 evaluation starts -orderer.example.com | [de1 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89c8 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [134d 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [134e 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [134f 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1350 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1351 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1352 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1353 05-31 05:22:27.93 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1354 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1356 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1357 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1358 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1359 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1355 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [135b 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [135c 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [135d 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [135e 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [135f 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1360 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1361 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1362 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1363 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1364 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1367 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [135a 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1365 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [1366 05-31 05:22:27.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1368 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [136a 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1369 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [136b 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [136c 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [136d 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [136e 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [136f 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1370 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1371 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1372 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1373 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1374 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1375 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1496 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1497 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1498 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1499 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [149a 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [149b 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [149c 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [149d 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [149e 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [149f 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [14a0 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [14a1 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [14a2 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14a3 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [14a4 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [14a5 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [14a6 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [14a7 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [14a8 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [14a9 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [14aa 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [14ab 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [14ac 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [14ad 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [14ae 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [14af 05-31 05:22:38.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [de2 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [de3 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [de4 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89c8 principal evaluation fails -orderer.example.com | [de5 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89c8 gate 1527744214664684500 evaluation fails -orderer.example.com | [de6 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [de7 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [de8 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [de9 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89f0 gate 1527744214667173200 evaluation starts -orderer.example.com | [dea 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [deb 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [dec 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [ded 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f0 principal evaluation fails -orderer.example.com | [dee 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89f0 gate 1527744214667173200 evaluation fails -orderer.example.com | [def 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [df0 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [df1 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [df2 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89f8 gate 1527744214668350900 evaluation starts -peer1.org1.example.com | [1202 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1203 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1204 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1206 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [1207 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [1205 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1208 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1209 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [120a 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [120b 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [120c 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [120d 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [120e 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [120f 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1210 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1211 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1212 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1213 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1214 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1215 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1216 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1217 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1218 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [121a 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [121b 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1219 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [14b0 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [14b1 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14b2 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14b3 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14b4 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14b5 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14b6 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14b7 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14b8 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [14b9 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14bb 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14ba 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14bc 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14bd 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [14be 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14bf 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14c0 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14c1 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [14c2 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14c3 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14c4 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14c5 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14c6 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [14c7 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14c8 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [14c9 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14ca 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [14cb 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14cc 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer1.org2.example.com | [14cd 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [14ce 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14cf 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [14d0 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14d1 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [14d2 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [14d3 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [14d4 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14d5 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [14d6 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [14d7 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [14d8 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14d9 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1376 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1377 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1378 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1379 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [137a 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [137b 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [137c 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [137e 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [137f 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [137d 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1380 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1381 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1382 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1383 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [1384 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1385 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1386 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1387 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1388 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1389 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [138a 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [138b 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [138c 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [138d 05-31 05:22:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [138e 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [138f 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1390 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1391 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1392 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 73 but got ts: inc_num:1527744091508552400 seq_num:72 -peer0.org2.example.com | [1393 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1394 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1395 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1396 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 76 but got ts: inc_num:1527744090808810100 seq_num:75 -peer0.org2.example.com | [1397 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1398 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1399 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [139a 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [139b 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [139c 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [139d 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [139e 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [139f 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [13a0 05-31 05:22:27.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [13a1 05-31 05:22:31.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [13a2 05-31 05:22:31.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [13a3 05-31 05:22:31.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [13a4 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [13a5 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [13a6 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [13a7 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [13a8 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [13a9 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [13aa 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [13ab 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [13ac 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [df3 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [df4 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [df5 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [df6 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f8 principal evaluation fails -orderer.example.com | [df7 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89f8 gate 1527744214668350900 evaluation fails -orderer.example.com | [df8 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [df9 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [dfa 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] -orderer.example.com | [dfb 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [dfc 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [dfd 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [dfe 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [dff 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [e00 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a00 gate 1527744214671983700 evaluation starts -orderer.example.com | [e01 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a00 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [121c 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [121d 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [121e 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [121f 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1220 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1221 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1222 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [1223 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1224 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1225 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1226 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1227 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1228 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [122a 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1229 05-31 05:22:27.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [122b 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [122c 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [122d 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 76 but got ts: inc_num:1527744091840124700 seq_num:75 -peer1.org1.example.com | [122e 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [122f 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1230 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1231 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 75 but got ts: inc_num:1527744091618763800 seq_num:74 -peer1.org1.example.com | [1232 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1233 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1234 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [13ad 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [13ae 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [13af 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [13b3 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13b4 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [13b0 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [13b5 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:5\0028\n\320\004\343\262" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [13b6 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13b1 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13b7 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [13b8 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13b9 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [13ba 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13bb 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [13bc 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13bd 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [13be 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13bf 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13c0 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [13b2 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [13c1 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org2.example.com | [13c2 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [13c3 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [14da 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14db 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [14dc 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [14dd 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [14de 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [14df 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [14e0 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [14e1 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [14e2 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [14e3 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [14e4 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [14e5 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [14e6 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [14e8 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [14e9 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14e7 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:J\312\331<\363H0V\277\334O\177\225\320\002\033uc\264\307\324?5\t\177\312Q\"\240\016\263\002 2\346\223\362\016\321\207K\001B\217vmMS\310#2\360`\344R\261\340\310\354\204\216\007\351\326;" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020X" signature:"0D\002 [W!\333\241\3020\245\001S\363)\336\027\021\021< alive:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > alive:1\301\022\373\337\037s\315\323\230" > -peer1.org2.example.com | [14ea 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [14eb 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [14ec 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [14ed 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14ee 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14ef 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [14f0 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14f1 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [14f2 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14f3 05-31 05:22:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [14f4 05-31 05:22:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14f5 05-31 05:22:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [14f6 05-31 05:22:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14f7 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes -peer1.org2.example.com | [14f8 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes -peer1.org2.example.com | [14f9 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [14fa 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [14fb 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [14fc 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [14fd 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [14fe 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [14ff 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org2.example.com | [1500 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org2.example.com | [1501 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1502 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1503 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1504 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1505 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1506 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1507 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1235 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1236 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1237 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1238 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1239 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [123a 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [123b 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [123c 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [123d 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [123e 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [123f 05-31 05:22:27.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1240 05-31 05:22:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1241 05-31 05:22:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1242 05-31 05:22:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1243 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1244 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1245 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1246 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1247 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1248 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1249 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [124a 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [124b 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [e02 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a00 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e03 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -orderer.example.com | [e04 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -orderer.example.com | [e05 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a00 principal matched by identity 0 -orderer.example.com | [e06 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 54 0d 94 88 ff 8c 88 ca dc 63 d1 4e 31 3f 68 21 |T........c.N1?h!| -orderer.example.com | 00000010 34 34 6e cd 41 12 2b 93 53 d9 96 97 0f 55 83 a1 |44n.A.+.S....U..| -orderer.example.com | [e07 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cf 3a 40 ac 30 2e 34 8a eb fe fe |0E.!..:@.0.4....| -orderer.example.com | 00000010 4b 60 55 0b c7 98 82 e1 f9 22 31 15 46 14 38 6d |K`U......"1.F.8m| -orderer.example.com | 00000020 c8 8c 08 77 3a 02 20 2f 1a 2a 16 8d 36 27 76 cf |...w:. /.*..6'v.| -orderer.example.com | 00000030 98 b6 e4 50 f6 c5 74 ef 18 bf 63 52 f1 69 a4 02 |...P..t...cR.i..| -orderer.example.com | 00000040 3a 59 a2 cc 11 3b f8 |:Y...;.| -orderer.example.com | [e08 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a00 principal evaluation succeeds for identity 0 -orderer.example.com | [e09 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a00 gate 1527744214671983700 evaluation succeeds -orderer.example.com | [e0a 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [e0b 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [e0c 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [e0d 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [e0e 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [e0f 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [e10 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4205094a0) start: > stop: > from 172.18.0.7:41458 -orderer.example.com | [e11 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [e12 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -orderer.example.com | [e13 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -orderer.example.com | [e14 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -orderer.example.com | [e15 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -orderer.example.com | [e16 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4205094a0) for 172.18.0.7:41458 -orderer.example.com | [e17 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41458 for (0xc4205094a0) -orderer.example.com | [e18 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41458 -orderer.example.com | [e19 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41458 -peer0.org1.example.com | [12a0 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [12a1 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12a2 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [12a3 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12a4 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [12a5 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [12a6 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [12a7 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [12a8 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [12a9 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [12aa 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [12ab 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [12ac 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [12ad 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [12ae 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [12af 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [12b0 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020M" signature:"0D\002 y\261\345\036\332.\274\367\334\027\332u\322N\021\354#\320\370\234(\305\035\300\375\371\253l\322\\r\373\002 \033Y)\276i\023iX`\240N\271,\203\224b\2354\231xV\026f\365y\224\320\225\037\017){" > -peer0.org1.example.com | [12b1 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [12b2 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1508 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1509 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [150a 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [150b 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [150c 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [150d 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [150e 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [150f 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1510 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:J\312\331<\363H0V\277\334O\177\225\320\002\033uc\264\307\324?5\t\177\312Q\"\240\016\263\002 2\346\223\362\016\321\207K\001B\217vmMS\310#2\360`\344R\261\340\310\354\204\216\007\351\326;" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > alive:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > alive: -peer1.org2.example.com | [1511 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1512 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1513 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1514 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1515 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1516 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1517 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1518 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1519 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [13c4 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13c5 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [13c6 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [13c7 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [13c8 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [13c9 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [13ca 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [13cb 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [13cc 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [13cd 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13ce 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [13cf 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13d0 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [13d1 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13d2 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [13d3 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [13d4 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [13d5 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13d6 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:5\0028\n\320\004\343\262" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [13d7 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13d8 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13d9 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [13da 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:5\0028\n\320\004\343\262" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [13db 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [13dc 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13dd 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [13de 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13df 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [13e0 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [13e1 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\243\377\364\210\035*\202\324=\370\303\374\226]B\307|\036\302\266 \177\361{\204I\250\002 2\365\232\344\310\255z\323\001\256\335\336\305\251\373\364ic\316\034\177\317\215\350\003\372\273\021wW\200R" secret_envelope: > -peer0.org2.example.com | [13e2 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [13e3 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [13e4 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [13e5 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [13e6 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13e7 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [13e8 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [13e9 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13ea 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [13eb 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13ec 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13ed 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [13ee 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13ef 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13f0 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [13f1 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [13f2 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [13f3 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13f4 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [13f5 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13f6 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [13f7 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [13f8 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [13f9 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [13fa 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13fb 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13fc 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [13fd 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [13fe 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [13ff 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1400 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1401 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1402 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1405 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1406 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1407 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1408 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1409 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [140a 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1403 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1404 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12b3 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [12b4 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [12b5 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [12b6 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [12b7 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [12b8 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [12b9 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [12ba 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [12bb 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [12bc 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [12bd 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [12be 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12bf 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [12c0 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12c1 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [12c2 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12c3 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer0.org1.example.com | [12c4 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer0.org1.example.com | [12c5 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12c6 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [12c7 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12c8 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [12c9 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12ca 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [12cb 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -orderer.example.com | [e1a 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e1b 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [e1c 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e1d 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [e1e 05-31 05:23:34.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41458: rpc error: code = Canceled desc = context canceled -orderer.example.com | [e1f 05-31 05:23:34.68 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [e20 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [e21 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41460 -orderer.example.com | [e22 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41460 -orderer.example.com | [e23 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [e24 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e25 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [e26 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e27 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [e28 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a60 gate 1527744214832315200 evaluation starts -orderer.example.com | [e29 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a60 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e2a 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a60 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e2b 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a60 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [e2c 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a60 principal evaluation fails -orderer.example.com | [e2d 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a60 gate 1527744214832315200 evaluation fails -orderer.example.com | [e2e 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e2f 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -peer0.org2.example.com | [140b 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [140c 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [140d 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [140e 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [140f 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1410 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1411 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1412 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1413 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1414 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1415 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1416 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1417 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1418 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1419 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [141a 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [141b 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [141c 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020M" signature:"0D\002 y\261\345\036\332.\274\367\334\027\332u\322N\021\354#\320\370\234(\305\035\300\375\371\253l\322\\r\373\002 \033Y)\276i\023iX`\240N\271,\203\224b\2354\231xV\026f\365y\224\320\225\037\017){" > alive:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > alive:\256\311jq\033Di\225\224\253\352\177\311\216\361]O\251\367\340B\351" > -peer0.org2.example.com | [141d 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [141e 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [124c 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [124d 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [124e 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [124f 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1250 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1251 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1252 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1253 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1254 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1255 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [1256 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1257 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > alive: > -peer1.org1.example.com | [1258 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [1259 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [125a 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [125b 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [125c 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [125d 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [125e 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [125f 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1260 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1261 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [e30 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [e31 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a78 gate 1527744214833309400 evaluation starts -orderer.example.com | [e32 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a78 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e33 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a78 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e34 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a78 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [e35 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a78 principal evaluation fails -orderer.example.com | [e36 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a78 gate 1527744214833309400 evaluation fails -orderer.example.com | [e37 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e38 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e39 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [e3a 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a88 gate 1527744214834603200 evaluation starts -orderer.example.com | [e3b 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a88 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e3c 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a88 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e3d 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a88 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -peer1.org2.example.com | [151a 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [151b 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [151c 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [151d 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [151e 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [151f 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1520 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1521 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1522 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1523 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1524 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1525 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\351.\350\007\277-`\024\0234\303g\023\030\227\224\204\211\231\324J\\\260-\202G/\260\002 i\366\305@\013\2019\341+Y\273\013\204\210\202;\265R\243VT\274~\214p-\021\202O\323\3710" > > -peer1.org2.example.com | [1526 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [1527 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1528 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [1529 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [152a 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [152b 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [152c 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [152d 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [152e 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [152f 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [12cc 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [12cd 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12ce 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12cf 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12d0 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [12d1 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [12d2 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [12d3 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [12d4 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [12d5 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [12d6 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [12d7 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [12d8 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [12d9 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [12da 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [12db 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [12dc 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12dd 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [12de 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [12df 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [12e0 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12e1 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [12e2 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [e3e 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a88 principal evaluation fails -orderer.example.com | [e3f 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a88 gate 1527744214834603200 evaluation fails -orderer.example.com | [e40 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [e41 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [e42 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [e43 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [e44 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [e45 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [e46 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e47 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [e48 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a90 gate 1527744214836258800 evaluation starts -orderer.example.com | [e49 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a90 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e4a 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a90 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e4b 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a90 principal matched by identity 0 -orderer.example.com | [e4c 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 99 77 e2 ac f9 c8 e7 f4 69 5f 24 bb 71 cf aa 5a |.w......i_$.q..Z| -orderer.example.com | 00000010 fa e7 1e 56 15 9a d0 4b 7f 24 d7 fd c1 ce dc 4b |...V...K.$.....K| -orderer.example.com | [e4d 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ab f0 ba c2 78 2a b2 f8 0d 0d f0 |0E.!.....x*.....| -orderer.example.com | 00000010 2e 61 8c ad 0d 23 c1 2d ad a1 0f c7 bc 3b da db |.a...#.-.....;..| -orderer.example.com | 00000020 ec 04 bc 26 0c 02 20 49 f5 84 16 bc f8 76 c0 cb |...&.. I.....v..| -orderer.example.com | 00000030 ca d8 9a 85 2a ef 15 26 07 4c 40 3e 04 b1 55 3a |....*..&.L@>..U:| -peer0.org2.example.com | [141f 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1420 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1421 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1422 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1423 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1424 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1425 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1426 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1427 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1428 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1429 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [142a 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [142b 05-31 05:22:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [142c 05-31 05:22:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [142d 05-31 05:22:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [142e 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [142f 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1430 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1431 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1432 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1433 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1434 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1435 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1436 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1437 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1262 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1263 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1264 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1265 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1266 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1267 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1268 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1269 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [126a 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [126b 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [126c 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [126d 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [126e 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > alive: alive: alive: -peer1.org1.example.com | [126f 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1270 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1271 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1272 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1273 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1274 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [1275 05-31 05:22:30.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12e3 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12e4 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [12e5 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [12e6 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [12e7 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12e8 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [12e9 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12ea 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [12eb 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [12ec 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020N" signature:"0E\002!\000\266#\300\303\334\272\353\257\007.\266\273\007\273\262\325h\211O\324\022mN\276c&,\354fz\n\211\002 ]n\301\363b\272\023\304\222\355\317\224\036\305j\240\310\337\267\260\321\251%\350\350\324._F\271\027\266" > -peer0.org1.example.com | [12ed 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [12ee 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [12ef 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [12f0 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [12f1 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12f2 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [12f3 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12f4 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [12f5 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [12f6 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [12f7 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12f8 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [12f9 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12fa 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [12fb 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12fc 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [12fd 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [12fe 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [12ff 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1300 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1301 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1302 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1303 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1304 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1305 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1306 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1307 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1308 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1309 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [130a 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [130b 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [130c 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [130d 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [130e 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [130f 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1310 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1530 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1531 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1532 05-31 05:22:41.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [1533 05-31 05:22:41.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [1534 05-31 05:22:41.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [1535 05-31 05:22:41.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [1536 05-31 05:22:41.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1537 05-31 05:22:41.41 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [1538 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1539 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [153a 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [153b 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [153c 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [153d 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [153e 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [153f 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1540 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1541 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1542 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1543 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1544 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1545 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1546 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1547 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1548 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | 00000040 db c5 80 94 ab 93 b3 |.......| -orderer.example.com | [e4e 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a90 principal evaluation succeeds for identity 0 -orderer.example.com | [e4f 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a90 gate 1527744214836258800 evaluation succeeds -orderer.example.com | [e50 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [e51 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [e52 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [e53 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [e54 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [e55 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [e56 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420cb6a80) start: > stop: > from 172.18.0.7:41460 -orderer.example.com | [e57 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [e58 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -orderer.example.com | [e59 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -orderer.example.com | [e5a 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -orderer.example.com | [e5b 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -orderer.example.com | [e5c 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420cb6a80) for 172.18.0.7:41460 -orderer.example.com | [e5d 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41460 for (0xc420cb6a80) -orderer.example.com | [e5e 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41460 -orderer.example.com | [e5f 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41460 -orderer.example.com | [e60 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e61 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [e62 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [e63 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [e64 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41460: read: connection reset by peer -orderer.example.com | [e65 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41460: rpc error: code = Canceled desc = context canceled -orderer.example.com | [e66 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [e67 05-31 05:23:35.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [e68 05-31 05:23:35.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41468 -orderer.example.com | [e69 05-31 05:23:35.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41468 -orderer.example.com | [e6a 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [1311 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1312 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1313 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1314 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1315 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1316 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1317 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1318 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" secret_envelope:\230\306\026\311\322!\355\353k\211\363\234\340\260\235\306\251\322\310\222\313\002 \027}\203&\345\tgap\312\340\207\264\000\321Z\265O\010[\201\215\037@s\354q#\222\373-`" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1319 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [131a 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" secret_envelope:\230\306\026\311\322!\355\353k\211\363\234\340\260\235\306\251\322\310\222\313\002 \027}\203&\345\tgap\312\340\207\264\000\321Z\265O\010[\201\215\037@s\354q#\222\373-`" > > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [131b 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [131c 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [131d 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [131e 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [131f 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1320 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1321 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1322 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1323 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1324 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1325 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1276 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1277 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1278 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1279 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [127a 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [127b 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [127c 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [127d 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [127e 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [127f 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1280 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1281 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1282 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1283 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1284 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1285 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > alive:\372\311\t\000\301\371\224B\307\025Ff\254t\262p\357\261\205" > -peer1.org1.example.com | [1286 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1287 05-31 05:22:30.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1288 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [e6b 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e6c 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [e6d 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e6e 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [e6f 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744215391739100 evaluation starts -orderer.example.com | [e70 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e71 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e72 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [e73 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal evaluation fails -orderer.example.com | [e74 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744215391739100 evaluation fails -orderer.example.com | [e75 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e76 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [e77 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [e78 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744215394542000 evaluation starts -orderer.example.com | [e79 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [1438 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1439 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [143a 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [143b 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [143c 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [143d 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [143e 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [143f 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1440 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1441 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1442 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1443 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1444 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1445 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1446 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1447 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 alive:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > alive: alive: -peer0.org2.example.com | [1448 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1449 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [144a 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [144b 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [144c 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [144d 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [144e 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [144f 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1450 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1451 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1452 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1453 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1454 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1455 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1456 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1457 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1458 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1459 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [145a 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [145b 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [145c 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [145d 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [145e 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [145f 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1460 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1461 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1462 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [e7a 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e7b 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [e7c 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal evaluation fails -orderer.example.com | [e7d 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744215394542000 evaluation fails -orderer.example.com | [e7e 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e7f 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [e80 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [e81 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b0 gate 1527744215397974500 evaluation starts -orderer.example.com | [e82 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e83 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e84 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [e85 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b0 principal evaluation fails -orderer.example.com | [e86 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b0 gate 1527744215397974500 evaluation fails -orderer.example.com | [e87 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [e88 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [e89 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [e8a 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [e8b 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer0.org1.example.com | [1326 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1327 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1328 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1329 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [132a 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [132b 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [132c 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" secret_envelope:\230\306\026\311\322!\355\353k\211\363\234\340\260\235\306\251\322\310\222\313\002 \027}\203&\345\tgap\312\340\207\264\000\321Z\265O\010[\201\215\037@s\354q#\222\373-`" > > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020O" signature:"0D\002 \016b\365c+\214D\225\266\016\241\373\006\212\222\211<\025x\303hN\031\230vT\007\204\002\245Ts\002 \014\207n,\023\350>\244\216^\375\342\206\025\243U\272\355*\222U\323\007\303\310\272\271\317;\003\360O" secret_envelope: > -peer0.org1.example.com | [132d 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org1.example.com | [132e 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [132f 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1330 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1331 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1332 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [1333 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1334 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1335 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1336 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1338 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1337 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1339 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [133a 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [133b 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [133c 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [133d 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [133e 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [133f 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1549 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [154a 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [154b 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [154c 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [154d 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [154e 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [154f 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1550 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1551 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1552 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1553 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1554 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1555 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1556 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1557 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1558 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1559 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [155a 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [155b 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [155c 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [155d 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [155e 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [155f 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1560 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1561 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1463 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1464 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1465 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1466 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1467 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1468 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1469 05-31 05:22:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [146a 05-31 05:22:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer0.org2.example.com | [146b 05-31 05:22:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [146c 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [146d 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [146e 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [146f 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1470 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1471 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1472 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1473 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1474 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1475 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1476 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1477 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1478 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1479 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [147a 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [147b 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [e8c 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [e8d 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [e8e 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [e8f 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1527744215401205900 evaluation starts -orderer.example.com | [e90 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [e91 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [e92 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal matched by identity 0 -orderer.example.com | [e93 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 1c 53 53 54 bc ef 0e 46 2f f6 d7 c6 fd b0 47 99 |.SST...F/.....G.| -orderer.example.com | 00000010 39 d2 6b 76 73 10 91 58 e5 00 79 61 97 a2 6d e6 |9.kvs..X..ya..m.| -orderer.example.com | [e94 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a4 a8 f9 2b f4 6c 13 4c 3a da e3 |0E.!....+.l.L:..| -orderer.example.com | 00000010 f8 43 91 3e 8b 60 0e 33 07 84 9d 01 a8 7d 63 c8 |.C.>.`.3.....}c.| -orderer.example.com | 00000020 41 1e a9 33 83 02 20 6e 16 07 30 ee 3e 8d d3 19 |A..3.. n..0.>...| -orderer.example.com | 00000030 4c 59 a7 86 5b 1e db 70 1b fd 93 5a 3a fe d5 56 |LY..[..p...Z:..V| -orderer.example.com | 00000040 e4 ef 74 7f 76 6b 96 |..t.vk.| -orderer.example.com | [e95 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal evaluation succeeds for identity 0 -orderer.example.com | [e96 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1527744215401205900 evaluation succeeds -orderer.example.com | [e97 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [e98 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [e99 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [e9a 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [e9b 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [e9c 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [e9d 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a21ba0) start: > stop: > from 172.18.0.7:41468 -orderer.example.com | [e9e 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [e9f 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -orderer.example.com | [ea0 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -orderer.example.com | [ea1 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -orderer.example.com | [ea2 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -orderer.example.com | [ea3 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a21ba0) for 172.18.0.7:41468 -orderer.example.com | [ea4 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41468 for (0xc420a21ba0) -orderer.example.com | [ea5 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41468 -orderer.example.com | [ea6 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41468 -orderer.example.com | [ea7 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [ea8 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [ea9 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [eaa 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [eab 05-31 05:23:35.41 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41468: rpc error: code = Canceled desc = context canceled -orderer.example.com | [eac 05-31 05:23:35.41 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [ead 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [eae 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41470 -orderer.example.com | [eaf 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41470 -orderer.example.com | [eb0 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [eb1 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [eb2 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [eb3 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [eb4 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [eb5 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1527744215579292900 evaluation starts -orderer.example.com | [eb6 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [1289 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [128a 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [128b 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [128c 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [128d 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [128e 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [128f 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1290 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1291 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1292 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1293 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1294 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1295 05-31 05:22:30.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1296 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1297 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1298 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1299 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [129b 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [129a 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [129c 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [129d 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [129e 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [129f 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [12a0 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [1562 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1563 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1564 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1565 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1566 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1568 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1567 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1569 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [156a 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [156b 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [156c 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [156d 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [156e 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [156f 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1570 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1571 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1572 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1573 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1574 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1575 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1576 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1577 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1578 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1579 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1340 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1341 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1343 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1342 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1344 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1345 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1346 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1347 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1348 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1349 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [134a 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [134b 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [134c 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [134d 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [134e 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [eb7 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [eb8 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [eb9 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation fails -orderer.example.com | [eba 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1527744215579292900 evaluation fails -orderer.example.com | [ebb 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [ebc 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [ebd 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [ebe 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1527744215580723800 evaluation starts -orderer.example.com | [ebf 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [ec0 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [ec1 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [ec2 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 principal evaluation fails -orderer.example.com | [ec3 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1527744215580723800 evaluation fails -orderer.example.com | [ec4 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [ec5 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [ec6 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [ec7 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1527744215582326400 evaluation starts -orderer.example.com | [ec8 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [12a1 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [12a2 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [12a3 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [12a4 05-31 05:22:30.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [12a5 05-31 05:22:30.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [12a6 05-31 05:22:30.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [12a7 05-31 05:22:30.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [12a8 05-31 05:22:30.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [12a9 05-31 05:22:30.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [12aa 05-31 05:22:31.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [12ab 05-31 05:22:31.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [12ac 05-31 05:22:31.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [12ad 05-31 05:22:31.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [12ae 05-31 05:22:31.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [12af 05-31 05:22:31.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [12b0 05-31 05:22:31.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [12b1 05-31 05:22:31.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [12b2 05-31 05:22:31.13 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [12b3 05-31 05:22:31.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [12b4 05-31 05:22:31.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [12b5 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [12b6 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [12b7 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [12b8 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [12b9 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [12ba 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -peer1.org1.example.com | [12bb 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [12bc 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [12bd 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [12be 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [147c 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [147d 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [147e 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [147f 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1480 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1481 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1482 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1483 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1484 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1485 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1486 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [1487 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1488 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1489 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [148a 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [148b 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [148c 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [148d 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [148e 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [148f 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1490 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1491 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1492 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1493 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1494 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1495 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1496 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1497 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1498 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1499 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [149a 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [149b 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [149c 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [149d 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [149e 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [149f 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [14a0 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [14a1 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [14a2 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [14a3 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [14a4 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [14a5 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [14a6 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [14a7 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [14a8 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [14a9 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [14aa 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [14ab 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14ac 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [14ad 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14ae 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14af 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14b0 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [14b1 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [14b2 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [14b3 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [14b4 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [14b6 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [14b5 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [14b8 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [14b7 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [14b9 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14ba 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [14bb 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [14bc 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [14bd 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [14be 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [14bf 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [14c0 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [14c1 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14c2 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [14c3 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [14c4 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [14c5 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [14c6 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [14c7 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [14c8 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [14c9 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [14ca 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [14cb 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14cc 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14cd 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [14ce 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14cf 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14d0 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14d1 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [14d3 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [14d4 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [14d2 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 78 but got ts: inc_num:1527744091508552400 seq_num:77 -peer0.org2.example.com | [14d5 05-31 05:22:31.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14d6 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [14d7 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [14d8 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [14d9 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [14da 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [14db 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [14dc 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [14dd 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14de 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [14df 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [14e0 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [14e1 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [14e2 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [14e3 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14e4 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [14e5 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [14e6 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [14e7 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [14e8 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [14e9 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [14ea 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [14eb 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [14ec 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [14ed 05-31 05:22:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [14ee 05-31 05:22:33.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 -peer0.org2.example.com | [14ef 05-31 05:22:33.33 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully -peer1.org2.example.com | [157a 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [157b 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [157c 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [157d 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [157e 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [157f 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1580 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1582 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1581 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1583 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1584 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1585 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1586 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1587 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1588 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1589 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [158a 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [158b 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [158c 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [158d 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [158e 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [158f 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1590 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1591 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1593 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1592 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1594 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1595 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [134f 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1350 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1351 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1353 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1352 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1354 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1355 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1356 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1357 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1358 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1359 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [135a 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [135b 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [135c 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [135d 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [135e 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [135f 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1360 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1361 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1362 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1363 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1364 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1365 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1366 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1367 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1368 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1369 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [136a 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [136b 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [136c 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [136e 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [136d 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [136f 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1370 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1371 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1372 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1373 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1374 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1375 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1376 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1377 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1378 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1379 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 81 but got ts: inc_num:1527744091840124700 seq_num:79 -peer0.org1.example.com | [137a 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [137b 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [137c 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [137d 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [137e 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [137f 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1380 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1381 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1382 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1383 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1384 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1385 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1386 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1387 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1388 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1389 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [138a 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [138b 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [138c 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [138d 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [138e 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [138f 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1390 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1391 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1392 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1393 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1394 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1395 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1396 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1397 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1398 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1399 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [139a 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [139b 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [139c 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [139d 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [139e 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [139f 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [13a0 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [13a1 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [13a2 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [13a3 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [13a4 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [13a5 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [13a6 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [13a7 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [13a8 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [13a9 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [13ab 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [13ac 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [13aa 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [13ad 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [13ae 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [13af 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [13b0 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [13b1 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [13b2 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [13b3 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [13b4 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [13b5 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [13b6 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [13b7 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [13b8 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [13b9 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [13ba 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [13bb 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [13bc 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [13bd 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [13be 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [13bf 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [13c0 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [13c1 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [13c2 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [13c3 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [13c4 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [13c5 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020R" signature:"0D\002 #\347|\337\221\221\006\262\"U\001\017\"4\0249%\316\355!\352\304\316\257%\325\313`y5\253\322\002 &\27453cQ\373\273 -peer0.org1.example.com | [13c6 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [13c7 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [13c8 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [13c9 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [13ca 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [13cb 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [13cc 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [13cd 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [13ce 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [13cf 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [13d0 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [13d1 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [13d2 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [13d3 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [13d4 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [13d5 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [13d6 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [13d7 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [13d8 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [13da 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [13db 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [13dc 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020S" signature:"0D\002 sl\366\014h4\372\022\222\365?\357\357>\343\334\237`\326_\351\206\034\200\007'\200\243`\340\200\325\002 ~\301\270\325\211\nW9QZ\014r4\216\366\376\205P\222\005\207L\177\255L\307\354s\277\363?\014" > -peer0.org1.example.com | [13dd 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [13de 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [13d9 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [13df 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [13e0 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [13e1 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [13e2 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [13e3 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [13e4 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [13e5 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [13e6 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [13e7 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [13e8 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [13e9 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [13ea 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [13eb 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [13ec 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [13ed 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [13ee 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [13ef 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [13f0 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [13f1 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org1.example.com | [13f2 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [1596 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [ec9 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [12bf 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [14f0 05-31 05:22:33.33 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 | [13f3 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1597 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [eca 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -peer1.org1.example.com | [12c0 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [14f1 05-31 05:22:33.43 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.org1.example.com | [13f4 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1598 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | [ecb 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal evaluation fails -peer1.org1.example.com | [12c1 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [14f2 05-31 05:22:34.01 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 | [13f5 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [159a 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [ecc 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1527744215582326400 evaluation fails -peer1.org1.example.com | [12c2 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14f3 05-31 05:22:34.01 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) -peer0.org1.example.com | [13f6 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1599 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [ecd 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [12c3 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14f4 05-31 05:22:34.06 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -peer0.org1.example.com | [13f7 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [159b 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [ece 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [12c4 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [14f5 05-31 05:22:34.06 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer0.org1.example.com | [13f8 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [159c 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [ecf 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -peer1.org1.example.com | [12c5 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [14f6 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer0.org1.example.com | [13f9 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [159d 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [ed0 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -peer1.org1.example.com | [12c6 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [14f7 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer0.org1.example.com | [13fa 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [159e 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [ed1 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer1.org1.example.com | [12c7 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [14f8 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 -peer0.org1.example.com | [13fb 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [159f 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [ed2 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer1.org1.example.com | [12c8 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [14f9 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer0.org1.example.com | [13fc 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [15a0 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [ed3 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org1.example.com | [12c9 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org2.example.com | [14fa 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" -peer0.org1.example.com | [13fd 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [15a1 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -orderer.example.com | [ed4 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer1.org1.example.com | [12ca 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [14fb 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" -peer0.org1.example.com | [13fe 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [15a2 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -orderer.example.com | [ed5 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1527744215583585600 evaluation starts -peer1.org1.example.com | [12cb 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [14fc 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" -peer0.org1.example.com | [13ff 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [15a3 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [ed6 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [12cc 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [14fd 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer0.org1.example.com | [1400 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [15a4 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [ed7 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [12cd 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org2.example.com | [14fe 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer0.org1.example.com | [1401 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [15a5 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [12ce 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [ed8 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal matched by identity 0 -peer0.org2.example.com | [14ff 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [1402 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [15a7 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [12cf 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -orderer.example.com | [ed9 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 57 fc 5f ef 96 8d 2a 13 9b 8e 09 51 1f b5 24 6e |W._...*....Q..$n| -peer0.org2.example.com | [1500 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0768437b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [1403 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org1.example.com | [12d0 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [15a6 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | 00000010 c9 30 5d e3 58 61 d4 5f 73 9a 4d f9 d6 7c e0 2a |.0].Xa._s.M..|.*| -peer0.org2.example.com | [1501 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0768437b] handling PUT_STATE from chaincode -peer0.org1.example.com | [1404 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [12d1 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [15a8 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | [eda 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 da 27 7d e3 ba 8f 47 2b 74 a7 ae |0E.!..'}...G+t..| -peer0.org2.example.com | [1502 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0768437b] Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [1405 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\t\342\361'" > > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org1.example.com | [12d2 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [15a9 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | 00000010 59 1a 3e 5b f3 65 b7 7c 0a 86 dc ba 0d 94 f9 9f |Y.>[.e.|........| -peer0.org2.example.com | [1503 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0768437b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer0.org1.example.com | [1406 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [12d3 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [15aa 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | 00000020 6b 0b e7 cd 57 02 20 60 56 37 05 69 a3 99 83 15 |k...W. `V7.i....| -peer0.org2.example.com | [1504 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0768437b] handling PUT_STATE from chaincode -peer0.org1.example.com | [1407 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\t\342\361'" > > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org1.example.com | [12d4 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [15ab 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | 00000030 64 43 f9 e3 9a 9c fc fd fb 3e 41 1f 9d e0 73 b4 |dC.......>A...s.| -peer0.org2.example.com | [1505 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0768437b] Completed PUT_STATE. Sending RESPONSE -peer0.org1.example.com | [1408 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [12d5 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [15ac 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | 00000040 03 0a 0d 2c 12 eb ea |...,...| -peer0.org2.example.com | [1506 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0768437b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [1409 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [12d6 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [15ad 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -orderer.example.com | [edb 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [1507 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [0768437b] notifying Txid:0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, channelID:businesschannel -peer1.org1.example.com | [12d7 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [140a 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [15ae 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [edc 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1527744215583585600 evaluation succeeds -peer0.org2.example.com | [1508 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [12d8 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [140b 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [15af 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -orderer.example.com | [edd 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [1509 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] Exit -peer0.org2.example.com | [150a 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [140c 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [15b1 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [ede 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [150b 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -peer1.org1.example.com | [12d9 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [140d 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [15b2 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [edf 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -peer0.org2.example.com | [150c 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][0768437b] Exit -peer1.org1.example.com | [12da 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [140e 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [15b3 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [ee0 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -peer1.org1.example.com | [12db 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [150d 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][0768437b] Entry chaincode: name:"lscc" -peer0.org1.example.com | [140f 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [15b4 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [ee1 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer1.org1.example.com | [12dc 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [150e 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][0768437b] escc for chaincode name:"lscc" is escc -peer0.org1.example.com | [1410 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [15b5 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -orderer.example.com | [ee2 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer1.org1.example.com | [12dd 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [150f 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, chaincode: lscc} -peer0.org1.example.com | [1411 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [15b6 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [ee3 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420315720) start: > stop: > from 172.18.0.7:41470 -peer1.org1.example.com | [12de 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1510 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, chaincode: lscc} -peer0.org1.example.com | [1412 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\t\342\361'" > > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020T" signature:"0D\002 z\221\3464\345\200\277\030;PC\373\363Fz\237\266\356K\232\367\037\314\323\246\217\252-\307X\254@\002 i*s\250\360\223\213\346\344\301\322Q\202\375\201[\021\310\210\341\367k\036\261\272\035\276o\230\227s\276" secret_envelope: > -peer1.org2.example.com | [15b7 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -orderer.example.com | [ee4 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -peer1.org1.example.com | [12df 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1511 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][0768437b] Exit -peer0.org1.example.com | [1413 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [15b8 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [ee5 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -peer1.org1.example.com | [12e0 05-31 05:22:31.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1512 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -peer0.org1.example.com | [1414 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [15b0 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [ee6 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -peer1.org1.example.com | [12e1 05-31 05:22:31.55 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1513 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49088 -peer0.org1.example.com | [1415 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [15b9 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [ee7 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -peer1.org1.example.com | [12e2 05-31 05:22:31.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1514 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [1416 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [15ba 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [ee8 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -peer1.org1.example.com | [12e3 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [1515 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org1.example.com | [1417 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [15bb 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [ee9 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420315720) for 172.18.0.7:41470 -peer1.org1.example.com | [12e4 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1516 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org1.example.com | [1418 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [15bc 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [eea 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41470 for (0xc420315720) -peer1.org1.example.com | [12e5 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1517 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -peer0.org1.example.com | [1419 05-31 05:22:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [15bd 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [eeb 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41470 -peer1.org1.example.com | [12e6 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1518 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [141a 05-31 05:22:35.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [15be 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [eec 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41470 -peer1.org1.example.com | [12e7 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1519 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] -peer0.org1.example.com | [141b 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -orderer.example.com | [eed 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -peer1.org2.example.com | [15bf 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [12e8 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [151a 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [afa49131-9823-484e-b42a-0c40de9ef32e] -peer0.org1.example.com | [141c 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [eee 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -peer1.org2.example.com | [15c0 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [12e9 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [151c 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] -peer0.org1.example.com | [141d 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -orderer.example.com | [eef 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -peer1.org2.example.com | [15c1 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [12eb 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [151b 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -peer0.org1.example.com | [141e 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [ef0 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -peer1.org2.example.com | [15c2 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [151e 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -peer1.org1.example.com | [12ea 05-31 05:22:31.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [141f 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [ef1 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer1.org2.example.com | [15c3 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [151d 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [12ed 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1420 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [ef2 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org2.example.com | [15c4 05-31 05:22:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [151f 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] -peer1.org1.example.com | [12ec 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" secret_envelope:\230\306\026\311\322!\355\353k\211\363\234\340\260\235\306\251\322\310\222\313\002 \027}\203&\345\tgap\312\340\207\264\000\321Z\265O\010[\201\215\037@s\354q#\222\373-`" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1421 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [ef3 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer1.org2.example.com | [15c5 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1520 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [afa49131-9823-484e-b42a-0c40de9ef32e] -peer1.org1.example.com | [12ee 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" secret_envelope:\230\306\026\311\322!\355\353k\211\363\234\340\260\235\306\251\322\310\222\313\002 \027}\203&\345\tgap\312\340\207\264\000\321Z\265O\010[\201\215\037@s\354q#\222\373-`" > > > , Envelope: 271 bytes, Signature: 0 bytes -orderer.example.com | [ef4 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [1422 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [15c6 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1521 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] -peer1.org1.example.com | [12ef 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [ef5 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -peer0.org1.example.com | [1424 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [15c7 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1522 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -peer1.org1.example.com | [12f0 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [ef6 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8170 gate 1527744215591672000 evaluation starts -peer0.org1.example.com | [1423 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [15c8 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1523 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -peer1.org1.example.com | [12f1 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [ef7 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8170 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [1426 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [15c9 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1524 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [12f2 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [ef8 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8170 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org1.example.com | [1425 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [15ca 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1525 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 -peer1.org1.example.com | [12f4 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [ef9 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8170 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -peer0.org1.example.com | [1427 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [15cb 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1526 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [12f5 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -orderer.example.com | [efa 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8170 principal evaluation fails -peer0.org1.example.com | [1428 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [15cc 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1527 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [12f6 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -orderer.example.com | [efb 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8170 gate 1527744215591672000 evaluation fails -peer0.org1.example.com | [1429 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [15cd 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [12f7 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1528 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [efc 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -peer0.org1.example.com | [142a 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [15ce 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [12f3 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1529 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -orderer.example.com | [efd 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -peer0.org1.example.com | [142b 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [15cf 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [12f9 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [152a 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -orderer.example.com | [efe 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -peer0.org1.example.com | [142c 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [15d0 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [12f8 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [152b 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -orderer.example.com | [eff 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b81c8 gate 1527744215594427300 evaluation starts -peer0.org1.example.com | [142d 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [15d2 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [12fa 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [152c 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -orderer.example.com | [f00 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81c8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [142e 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [15d1 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [12fb 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [152d 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [142f 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [f01 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [15d3 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [12fc 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [152e 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [1430 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [f02 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -peer1.org2.example.com | [15d4 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [12fd 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [152f 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1431 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -orderer.example.com | [f03 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81c8 principal evaluation fails -peer1.org2.example.com | [15d5 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1530 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [12fe 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -orderer.example.com | [f04 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b81c8 gate 1527744215594427300 evaluation fails -peer0.org1.example.com | [1432 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [15d6 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1531 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [12ff 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [f05 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [1433 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [15d7 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1532 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [1300 05-31 05:22:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -orderer.example.com | [f06 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [1434 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1533 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [15d8 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1301 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -orderer.example.com | [f07 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -peer0.org1.example.com | [1435 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1534 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [15d9 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1302 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -orderer.example.com | [f08 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b81d0 gate 1527744215596844100 evaluation starts -peer0.org1.example.com | [1436 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1535 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [15da 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1303 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [f09 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81d0 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [1437 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1536 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [15db 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1304 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1305 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1306 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1307 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1308 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [f0a 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org1.example.com | [130a 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [f0b 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -peer0.org1.example.com | [1438 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1537 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [15dc 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1309 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -orderer.example.com | [f0c 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81d0 principal evaluation fails -peer0.org1.example.com | [1439 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1538 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [15dd 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [130b 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [f0d 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b81d0 gate 1527744215596844100 evaluation fails -peer0.org1.example.com | [143a 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1539 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [15de 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [130c 05-31 05:22:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | [f0e 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [143c 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [153a 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [15df 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [130d 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [f0f 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [143d 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [153b 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [15e0 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [130e 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [f10 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] -peer0.org1.example.com | [143b 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [153c 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [15e1 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1310 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -orderer.example.com | [f11 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -peer0.org1.example.com | [143e 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [15e2 05-31 05:22:43.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [153d 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1311 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -orderer.example.com | [f12 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer0.org1.example.com | [143f 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [15e3 05-31 05:22:43.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [153e 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [130f 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1440 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [f13 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer1.org2.example.com | [15e4 05-31 05:22:43.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [153f 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1312 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1441 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [f14 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org2.example.com | [15e5 05-31 05:22:43.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org2.example.com | [1540 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1313 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1442 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [f15 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer1.org2.example.com | [15e6 05-31 05:22:43.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1541 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1314 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1443 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [f16 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8228 gate 1527744215600180000 evaluation starts -peer1.org2.example.com | [15e7 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1542 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1315 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1444 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [f17 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8228 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [15e8 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1543 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org1.example.com | [1316 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1445 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [f18 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8228 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [15e9 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [1544 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [1446 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1317 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [f19 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8228 principal matched by identity 0 -peer1.org2.example.com | [15ea 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1545 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1447 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1318 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [f1a 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 99 d0 36 c5 fb 75 3c 8a fb 28 23 a8 01 fd 6c c8 |..6..u<..(#...l.| -peer1.org2.example.com | [15eb 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1546 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1448 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1319 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | 00000010 76 7d 0e f3 ae 00 8c 41 47 cd 5b 1e 8b 0e 04 cd |v}.....AG.[.....| -peer1.org2.example.com | [15ec 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1547 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1449 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [131a 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [f1b 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc 01 be 3f a6 2f 1a 41 fd 69 51 |0E.!....?./.A.iQ| -peer1.org2.example.com | [15ed 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1548 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [131b 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 79 but got ts: inc_num:1527744091618763800 seq_num:78 -peer0.org1.example.com | [144a 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | 00000010 a6 97 1d 6b 55 8f ed fd 41 0a f4 62 f9 79 ad 32 |...kU...A..b.y.2| -peer1.org2.example.com | [15ee 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1549 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [131c 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [144b 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | 00000020 94 06 a0 7c 14 02 20 23 2c cf be ec cf 99 61 92 |...|.. #,.....a.| -peer1.org2.example.com | [15ef 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [154a 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [131d 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [144c 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | 00000030 87 a7 cd 6c e8 e3 1a 3b 5e 5f d9 b4 89 1d 04 fc |...l...;^_......| -peer1.org2.example.com | [15f0 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [154b 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [131e 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [144d 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | 00000040 d0 1f 04 ad 8b 52 7b |.....R{| -peer1.org2.example.com | [15f1 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [154c 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [131f 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [144e 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [144f 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [15f2 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1320 05-31 05:22:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1450 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [f1c 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8228 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [15f3 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [154e 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1321 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1451 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [f1d 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8228 gate 1527744215600180000 evaluation succeeds -peer1.org2.example.com | [15f4 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [154f 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1323 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1452 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [f1e 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [15f5 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1550 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1322 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1453 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [f1f 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [15f7 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [154d 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1324 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1454 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -orderer.example.com | [f20 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -peer1.org2.example.com | [15f8 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1551 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1325 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1456 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [f21 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -peer1.org2.example.com | [15f9 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020]" signature:"0E\002!\000\314\216\250\037\n\272~>\336\362\302\234\326\356/\014\222+\345\221\336\022)\022\033\265\020Q\330\211\234\202\002 J+JC\245\256|\025\344H\254\342\356\010\250\245\265\35270\303s\331~\271\001\221%s\237\020\215" > alive: alive:'\2762\267\223$l\234\336s\220d\002 \014\275$\020\320\237\005\244\214(\275\342\373U\277r\332\2127#\233\323\255L\316Ql\274\250\316\372H" > -peer0.org2.example.com | [1552 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1326 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1457 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -orderer.example.com | [f22 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -peer1.org2.example.com | [15fa 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1553 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1327 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1455 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -orderer.example.com | [f23 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer1.org2.example.com | [15fb 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1554 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [1328 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1458 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [f24 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b53c60) start: > stop: > from 172.18.0.7:41470 -peer1.org2.example.com | [15f6 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1555 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1556 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1557 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [f25 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -peer1.org2.example.com | [15fc 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [1558 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer0.org1.example.com | [1459 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1329 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | [f26 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -peer1.org2.example.com | [15fd 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1559 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [145a 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 84 but got ts: inc_num:1527744090808810100 seq_num:82 -peer1.org1.example.com | [132a 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [15fe 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [f27 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -peer1.org1.example.com | [132b 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1600 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -orderer.example.com | [f28 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -orderer.example.com | [f29 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -orderer.example.com | [f2a 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b53c60) for 172.18.0.7:41470 -peer1.org1.example.com | [132c 05-31 05:22:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1601 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [132d 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 79 but got ts: inc_num:1527744091618763800 seq_num:77 -peer0.org1.example.com | [145b 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [132e 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [155a 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer1.org1.example.com | [132f 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [15ff 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [155b 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [145c 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [f2b 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41470 for (0xc420b53c60) -peer1.org1.example.com | [1330 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1602 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [155c 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [145d 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | [f2d 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -peer1.org1.example.com | [1331 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1603 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [155d 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [145e 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [f2e 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [f2c 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41470 -orderer.example.com | [f30 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41470 -peer1.org1.example.com | [1332 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [145f 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [f31 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41470: rpc error: code = Canceled desc = context canceled -peer1.org1.example.com | [1333 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1604 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [155e 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1460 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [f32 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer1.org1.example.com | [1334 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1605 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [155f 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1461 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -orderer.example.com | [f2f 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -peer1.org1.example.com | [1335 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1606 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1560 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1462 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [f33 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [f34 05-31 05:23:35.86 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -peer0.org2.example.com | [1561 05-31 05:22:35.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1562 05-31 05:22:35.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1607 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -orderer.example.com | [f35 05-31 05:23:35.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41472 -peer1.org1.example.com | [1337 05-31 05:22:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1563 05-31 05:22:35.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1608 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1463 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [f36 05-31 05:23:35.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41472 -peer1.org1.example.com | [1336 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1564 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1609 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [f37 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -peer0.org1.example.com | [1464 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1338 05-31 05:22:31.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1565 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [160a 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -orderer.example.com | [f38 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [1465 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1339 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1566 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer0.org2.example.com | [1567 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org2.example.com | [160b 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org1.example.com | [1466 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [133a 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1568 05-31 05:22:35.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [160c 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [f39 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -peer0.org1.example.com | [1467 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1468 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1569 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [156a 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [160d 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [1469 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [133b 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [156b 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [160e 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -orderer.example.com | [f3a 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer0.org1.example.com | [146a 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [146b 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [133c 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [160f 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -orderer.example.com | [f3b 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -peer0.org1.example.com | [146c 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [133e 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [156c 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1610 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [f3c 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d8 gate 1527744215871711200 evaluation starts -peer0.org1.example.com | [146d 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [133f 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [156d 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1611 05-31 05:22:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -orderer.example.com | [f3d 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [146e 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1340 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [146f 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [133d 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [156e 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1612 05-31 05:22:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [1470 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1471 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1341 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1613 05-31 05:22:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1342 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1343 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1344 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1345 05-31 05:22:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1346 05-31 05:22:31.66 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [156f 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1570 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1614 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1472 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [1347 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1615 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [f3e 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [1571 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1473 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1348 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1616 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -orderer.example.com | [f3f 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -peer0.org2.example.com | [1572 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1474 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [1349 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1617 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [f40 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d8 principal evaluation fails -peer0.org2.example.com | [1573 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [134a 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [f41 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d8 gate 1527744215871711200 evaluation fails -peer1.org2.example.com | [1618 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [134b 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1475 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [f42 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -peer0.org2.example.com | [1574 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1619 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [134c 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1476 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [161a 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [134d 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1477 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1575 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [161b 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [f43 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -peer1.org1.example.com | [134e 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1478 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1479 05-31 05:22:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [161c 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [f44 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -peer1.org1.example.com | [134f 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org1.example.com | [147a 05-31 05:22:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [161d 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1576 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [f45 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82a8 gate 1527744215875196500 evaluation starts -peer1.org1.example.com | [1350 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [147b 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [161e 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1577 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [f46 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [1351 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1352 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1353 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [147c 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | [f47 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [f48 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -peer0.org2.example.com | [1579 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org1.example.com | [1354 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [147d 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [f49 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 principal evaluation fails -peer1.org2.example.com | [1620 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1578 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1355 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [147e 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [f4a 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82a8 gate 1527744215875196500 evaluation fails -peer1.org2.example.com | [1621 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [157a 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1356 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1357 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -orderer.example.com | [f4b 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [1622 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > alive: alive: -peer0.org2.example.com | [157c 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [147f 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1358 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [f4c 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [1623 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [157b 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020R" signature:"0D\002 #\347|\337\221\221\006\262\"U\001\017\"4\0249%\316\355!\352\304\316\257%\325\313`y5\253\322\002 &\27453cQ\373\273 alive: alive: -peer0.org1.example.com | [1480 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1481 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [f4d 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -peer1.org2.example.com | [1624 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [157d 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1482 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1359 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -orderer.example.com | [f4e 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82b0 gate 1527744215877596300 evaluation starts -peer1.org2.example.com | [161f 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [157e 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1483 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [135a 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -orderer.example.com | [f4f 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f50 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer1.org2.example.com | [1625 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1484 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [135b 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -orderer.example.com | [f51 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -peer1.org2.example.com | [1626 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [157f 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1485 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [135c 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -orderer.example.com | [f52 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b0 principal evaluation fails -peer1.org2.example.com | [1627 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org2.example.com | [1580 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1581 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1582 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1583 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [135d 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [135e 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1628 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1584 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -orderer.example.com | [f53 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82b0 gate 1527744215877596300 evaluation fails -peer1.org1.example.com | [135f 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1486 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1487 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1488 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1629 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [1360 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [162a 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [162b 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1585 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1361 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1489 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [162c 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1586 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -orderer.example.com | [f54 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [1362 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [148a 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [162d 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1587 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -orderer.example.com | [f55 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [f56 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -peer1.org1.example.com | [1363 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [162e 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [1588 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -orderer.example.com | [f57 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -peer1.org1.example.com | [1364 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [148c 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [162f 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1589 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -orderer.example.com | [f58 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -peer1.org1.example.com | [1365 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [148b 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1630 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [f59 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -peer1.org1.example.com | [1366 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [148d 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1631 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [158a 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [f5a 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org1.example.com | [1369 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [148e 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1632 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [158b 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [f5b 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer1.org1.example.com | [136a 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [148f 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1633 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [158c 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1367 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [158d 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [136c 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [f5c 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82b8 gate 1527744215880958200 evaluation starts -peer0.org1.example.com | [1490 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [136d 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1634 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1635 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [1368 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1636 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [158e 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [136e 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 alive: > -peer0.org1.example.com | [1491 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -orderer.example.com | [f5d 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b8 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [1637 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\220\266\300\220\321~\302;%\356\301l\223{\224/5sh?\351\270\313[i" secret_envelope: > -peer0.org2.example.com | [158f 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [136f 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [1492 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1638 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -orderer.example.com | [f5e 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -peer0.org2.example.com | [1590 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1370 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1639 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [f5f 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b8 principal matched by identity 0 -peer0.org2.example.com | [1591 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [136b 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [163a 05-31 05:22:45.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -orderer.example.com | [f60 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 0f 06 12 e2 34 31 53 35 c9 22 99 70 56 4d 74 47 |....41S5.".pVMtG| -peer0.org2.example.com | [1592 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1371 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [163b 05-31 05:22:45.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -orderer.example.com | 00000010 5c ad e6 b1 34 33 7d 88 29 2d b1 40 49 f6 fe 61 |\...43}.)-.@I..a| -peer0.org1.example.com | [1493 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1593 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1372 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [163c 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | [f61 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 7f 1b f1 13 01 54 44 3d 9e 4d |0E.!.......TD=.M| -peer0.org1.example.com | [1494 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1594 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1373 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [163d 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1495 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1595 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1374 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [163f 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -orderer.example.com | 00000010 31 7e 38 c6 ce e2 91 e1 d8 8b 75 9d 86 b3 d4 d8 |1~8.......u.....| -peer0.org1.example.com | [1496 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1596 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1375 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1640 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | 00000020 87 8a 12 d0 e5 02 20 3c 5c 94 fc ff 90 5d 83 29 |...... <\....].)| -peer0.org1.example.com | [1497 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1597 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1376 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [163e 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -orderer.example.com | 00000030 1c 3c 3e 3d d1 d2 8d 94 b7 c7 9c e8 9e ab 05 c6 |.<>=............| -peer1.org1.example.com | [1377 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1642 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1498 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1499 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1378 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1643 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [149a 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1598 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [1379 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -orderer.example.com | 00000040 fe 4d b4 48 27 16 81 |.M.H'..| -peer1.org2.example.com | [1641 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [149b 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1599 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [137a 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [f62 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b8 principal evaluation succeeds for identity 0 -peer1.org2.example.com | [1644 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [149c 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [159b 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [137b 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1645 05-31 05:22:46.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org2.example.com | [1646 05-31 05:22:46.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [137c 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [137d 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [137e 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [137f 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1380 05-31 05:22:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1381 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1382 05-31 05:22:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1383 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1384 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1385 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1386 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1387 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1389 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1388 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [138b 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [138a 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [138c 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [f63 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82b8 gate 1527744215880958200 evaluation succeeds -orderer.example.com | [f64 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [f65 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [f66 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [f67 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [f68 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [f69 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [f6a 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42056aba0) start: > stop: > from 172.18.0.7:41472 -orderer.example.com | [f6b 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [f6c 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -orderer.example.com | [f6d 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[81564], Going to peek [8] bytes -orderer.example.com | [f6e 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12118], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [f6f 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -orderer.example.com | [f70 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056aba0) for 172.18.0.7:41472 -orderer.example.com | [f71 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41472 for (0xc42056aba0) -orderer.example.com | [f73 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [f74 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -peer0.org2.example.com | [159c 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [149d 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [149e 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [149f 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [14a0 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [14a1 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [14a2 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [14a3 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [14a4 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [14a5 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [14a6 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [14a7 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [14a8 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [14a9 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [14aa 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [14ac 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [14ab 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\363\347}\202;\013\212\036\036\223\035\260" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020V" signature:"0D\002 G\332zY&u\255D9\204\016\336\004z\177o<\214q\261\241c\377\017R\253A6\006^\255\206\002 ?\353\222\331(\020\250\303\365\361G{I\206\2019\306\257\333]\247y\377\314VmU\372\256~\335\203" > -peer0.org1.example.com | [14ad 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [14ae 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [14af 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [14b0 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [14b1 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [14b2 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [14b3 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [14b4 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [14b5 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 4}, Envelope: 5364 bytes, Signature: 0 bytes -peer0.org1.example.com | [14b6 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [14b7 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [14b8 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [14b9 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc424237c00 env 0xc42421d470 txn 0 -peer0.org1.example.com | [14ba 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42421d470 -peer0.org1.example.com | [14bb 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -peer0.org1.example.com | [14bc 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [14bd 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [14be 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org1.example.com | [14bf 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [14c0 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [14c1 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc424296a80, header channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -peer0.org1.example.com | [14c2 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [14c3 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [14c4 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [14c5 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org1.example.com | [14c6 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -peer0.org1.example.com | [14c7 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [14c8 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc424290880 -peer0.org1.example.com | [14c9 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin -peer0.org1.example.com | [14ca 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [14cb 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -peer0.org1.example.com | [14cc 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [14cd 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [14ce 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org1.example.com | [14cf 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org1.example.com | [14d0 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [d7f12392-fe0e-4cf3-a0b4-02904f0cb760] -peer0.org1.example.com | [14d1 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [14d2 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [d7f12392-fe0e-4cf3-a0b4-02904f0cb760] -peer0.org1.example.com | [14d3 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org1.example.com | [14d4 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org2.example.com | [1647 05-31 05:22:46.41 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [1648 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1649 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [164a 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [164b 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [164c 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [164d 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [164e 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [164f 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1650 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1651 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1652 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1653 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1654 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1655 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1656 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1657 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1658 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1659 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [165a 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [165b 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [165c 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [165d 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [165e 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [f75 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [f76 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [f72 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41472 -orderer.example.com | [f77 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41472 -orderer.example.com | [f78 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41472: rpc error: code = Canceled desc = context canceled -orderer.example.com | [f79 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [f7a 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [f7b 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41474 -orderer.example.com | [f7c 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41474 -orderer.example.com | [f7d 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [f7e 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [f7f 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [f80 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [f81 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [f82 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e300 gate 1527744216225250500 evaluation starts -orderer.example.com | [f83 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f84 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [f85 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [f86 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 principal evaluation fails -orderer.example.com | [f87 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e300 gate 1527744216225250500 evaluation fails -orderer.example.com | [f88 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [f89 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -peer0.org2.example.com | [159a 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > alive: alive: -peer0.org2.example.com | [159d 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [159e 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [159f 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [15a0 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [15a1 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15a2 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15a3 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [15a4 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [15a5 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [15a6 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [15a7 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [15a8 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [15a9 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [15aa 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [15ab 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15ac 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15ad 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [15ae 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [15af 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15b0 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [15b1 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [15b2 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [15b3 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [15b4 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [15b5 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [15b6 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [15b7 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [15b8 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [15b9 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [15ba 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [15bb 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15bd 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [15be 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [15bc 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15bf 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [15c0 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [14d5 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated -peer0.org1.example.com | [14d6 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c appears to be invalid: Chaincode exp02 is already instantiated -peer0.org1.example.com | [14d7 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc424290880 -peer0.org1.example.com | [14d8 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c returned error: Chaincode exp02 is already instantiated -peer0.org1.example.com | [14da 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer0.org1.example.com | [14db 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [138d 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [138e 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [138f 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1390 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1391 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1392 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1393 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1394 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1396 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1395 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1397 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1398 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1399 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [139a 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [139d 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [139e 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [139f 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [139c 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [139b 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13a0 05-31 05:22:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [13a1 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [13a2 05-31 05:22:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [13a3 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [13a4 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [13a5 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [13a6 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [13a7 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13a8 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [13a9 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [13aa 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13ab 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [13ac 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [13ad 05-31 05:22:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [13ae 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [13af 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [13b0 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [13b1 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [13b2 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [13b3 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [13b5 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [13b6 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [13b7 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Q" signature:"0E\002!\000\374\177\213\274\037w\030\225\324.W>\035\266+\016\254\200\236\211\307\017\0371\375\017\035\213\2355u\022\002 C\361\234\303\365\244\021\227\356\361\333;\231\300\357\323H}\377\332R\317E\270F\373\2150\0008\201S" > alive: alive:\020\335\254\377\204\223\346B5w" > alive: -peer1.org1.example.com | [13b8 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [13b9 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [13b4 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [15c1 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [15c2 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [15c3 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [15c4 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15c5 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [15c6 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15c7 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [15c8 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [15c9 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [14dc 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -peer0.org1.example.com | [14dd 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [14de 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer0.org1.example.com | [14df 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [14e0 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer0.org1.example.com | [14e1 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [14e2 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [14e3 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [14e4 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -peer0.org1.example.com | [14d9 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc424237c00 env 0xc42421d470 txn 0 -peer0.org1.example.com | [14e5 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] -peer0.org1.example.com | [14e6 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x9a, 0x51, 0x32, 0x74, 0x5b, 0x5e, 0xdc, 0xf4, 0xd1, 0x99, 0x68, 0x77, 0x79, 0x27, 0x0, 0xa0, 0x37, 0xef, 0x47, 0xcb, 0x4b, 0xc5, 0x8c, 0x46, 0x68, 0xc7, 0x45, 0x86, 0x87, 0xb6, 0xda, 0x34} txOffsets= -peer0.org1.example.com | txId=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c locPointer=offset=70, bytesLength=3458 +peer0.org1.example.com | [dc7 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to index +peer0.org1.example.com | [dc8 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx number:[0] ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to blockNumTranNum index +peer0.org1.example.com | [dc9 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45423], isChainEmpty=[false], lastBlockNumber=[3] +peer0.org1.example.com | [dca 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] +peer0.org1.example.com | [dcb 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] +peer0.org1.example.com | [dcc 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +peer0.org1.example.com | [dcd 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +peer0.org1.example.com | [dce 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [dcf 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org1.example.com | [dd0 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [dd1 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [dd2 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org1.example.com | [dd3 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer0.org1.example.com | [dd4 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [dd5 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [ae1bdbfd-4b13-4530-a0dc-e5c789b4fa8a] +peer0.org1.example.com | [dd6 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [4] +peer0.org1.example.com | [dd7 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] +peer0.org1.example.com | [dd8 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [4] +peer0.org1.example.com | [dd9 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] +peer0.org1.example.com | [dda 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [e57 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e58 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e59 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [e5a 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [e5b 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [e5c 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [e5d 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [e5e 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [e5f 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e60 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [e61 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e62 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [e63 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [e64 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [e65 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [e66 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 58 but got ts: inc_num:1528769653227426900 seq_num:57 +peer1.org2.example.com | [e67 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e68 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [e69 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [e6a 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 59 but got ts: inc_num:1528769652429776900 seq_num:58 +peer1.org2.example.com | [e6b 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e6c 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e6d 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [e6e 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e6f 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e70 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [e71 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [e72 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [e73 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [e74 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [e75 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [e76 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [e77 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e78 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [e7a 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e79 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [e7b 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e7c 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [e7d 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [e7e 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e7f 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [e80 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [e81 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [e82 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [e83 06-12 02:14:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [e84 06-12 02:14:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [e85 06-12 02:14:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [e86 06-12 02:14:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e87 06-12 02:14:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [e88 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [e89 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [e8a 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [e8b 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e8c 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [e8d 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e8e 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [e8f 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [e90 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [e91 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [e92 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [e93 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [e94 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [e95 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [e96 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [e97 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [e98 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [e99 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [e9a 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > alive: +peer1.org2.example.com | [e9b 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [e9c 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [e9d 06-12 02:14:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [e9e 06-12 02:14:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [e9f 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [ea0 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [ea1 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ea2 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [ea3 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [ea4 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [ea5 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ea6 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ea7 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ea8 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [ea9 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [eaa 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [eab 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [eac 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [ead 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [eae 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [eaf 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [eb0 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [eb1 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [eb2 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +orderer.example.com | [a8f 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [a90 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal matched by identity 0 +orderer.example.com | [a91 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f8 0a 59 d9 e2 e9 16 af ef 1a 63 ab c1 2b 1d 60 |..Y.......c..+.`| +orderer.example.com | 00000010 43 39 19 0f ac 5b 68 2e b6 35 7f f6 54 e2 14 fa |C9...[h..5..T...| +orderer.example.com | [a92 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 14 4f 39 62 f6 01 a8 26 0d c1 dc 27 |0D. .O9b...&...'| +orderer.example.com | 00000010 40 ad 3a 95 e5 a0 3d 82 30 84 5a 41 56 f2 34 09 |@.:...=.0.ZAV.4.| +orderer.example.com | 00000020 9e b5 52 3a 02 20 06 e0 cd 5c 6e 66 b6 b7 51 97 |..R:. ...\nf..Q.| +orderer.example.com | 00000030 1a 95 26 06 c7 86 27 e8 cd 68 55 9d 2e e6 6a 1c |..&...'..hU...j.| +orderer.example.com | 00000040 d2 bf 02 59 d4 c2 |...Y..| +orderer.example.com | [a93 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal evaluation succeeds for identity 0 +orderer.example.com | [a94 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1528769763539356800 evaluation succeeds +orderer.example.com | [a95 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a96 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [a97 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [a98 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [a99 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [a9a 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [a9b 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420519840) start: > stop: > from 172.18.0.7:35862 +orderer.example.com | [a9c 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [a9d 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [a9e 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24013], Going to peek [8] bytes +orderer.example.com | [a9f 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [aa0 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +orderer.example.com | [aa1 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420519840) for 172.18.0.7:35862 +orderer.example.com | [aa2 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35862 for (0xc420519840) +orderer.example.com | [aa3 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35862 +orderer.example.com | [aa4 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35862 +orderer.example.com | [aa5 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35862: rpc error: code = Canceled desc = context canceled +orderer.example.com | [aa6 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [aa7 06-12 02:16:03.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [aa8 06-12 02:16:03.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35864 +peer0.org2.example.com | [dfe 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [dff 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer0.org2.example.com | [e00 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [e02 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e01 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [e03 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e04 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [e05 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e06 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [e07 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e08 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer0.org2.example.com | [e09 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [e0b 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e0a 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [e0c 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e0d 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [e0e 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [e0f 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e10 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [e11 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [e12 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [ddb 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] +peer0.org1.example.com | [ddc 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [ae1bdbfd-4b13-4530-a0dc-e5c789b4fa8a] +peer0.org1.example.com | [ddd 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] +peer0.org1.example.com | [dde 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +peer0.org1.example.com | [ddf 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer0.org1.example.com | [de0 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer0.org1.example.com | [de1 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer0.org1.example.com | [de2 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [de3 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac +peer0.org1.example.com | [de4 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [de5 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [de6 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [de7 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [de8 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [de9 06-12 02:14:50.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [dea 06-12 02:14:50.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [deb 06-12 02:14:50.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [dec 06-12 02:14:50.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [ded 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [dee 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [def 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [df0 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [df1 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [df2 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [df3 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [df4 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [df5 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [df6 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [aa9 06-12 02:16:03.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35864 +orderer.example.com | [aaa 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [aab 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [aac 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [aad 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [aae 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [aaf 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150638 gate 1528769763661206900 evaluation starts +orderer.example.com | [ab0 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150638 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ab1 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150638 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [ab2 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150638 principal matched by identity 0 +orderer.example.com | [ab3 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9e 20 54 f9 22 67 be 7f fb e9 b3 8e 64 77 27 0a |. T."g......dw'.| +orderer.example.com | 00000010 6d 2e 49 39 ea c8 41 d6 20 bf b0 d1 04 4a 9d a8 |m.I9..A. ....J..| +orderer.example.com | [ab4 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 77 1f a7 aa 16 56 b9 3d 1a ea 5d e5 |0D. w....V.=..].| +orderer.example.com | 00000010 2c 37 8d 67 9b ac 5a fa c8 3e 58 d6 b3 b2 50 2b |,7.g..Z..>X...P+| +orderer.example.com | 00000020 4c 4e 97 87 02 20 37 20 26 f0 a4 07 90 d2 d0 f3 |LN... 7 &.......| +orderer.example.com | 00000030 84 24 3d e1 a1 36 b7 bd cb e7 44 f8 31 4a 9b bb |.$=..6....D.1J..| +orderer.example.com | 00000040 9f ed 4d 9c 99 70 |..M..p| +orderer.example.com | [ab5 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150638 principal evaluation succeeds for identity 0 +orderer.example.com | [ab6 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150638 gate 1528769763661206900 evaluation succeeds +orderer.example.com | [ab7 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [ab8 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [ab9 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [aba 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [f90 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f91 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [f92 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [f93 06-12 02:14:57.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [f94 06-12 02:14:57.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [f95 06-12 02:14:57.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [f96 06-12 02:14:57.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [f97 06-12 02:14:57.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [f98 06-12 02:14:57.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [f99 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f9a 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f9b 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [f9c 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [f9d 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f9e 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [f9f 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [fa0 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [fa1 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [fa2 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [fa3 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [fa4 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [fa5 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [fa6 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [fa7 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [e13 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [e14 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [e15 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e16 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [e17 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e18 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [e19 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e1a 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [e1b 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [e1c 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [e1d 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [e1e 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [e21 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [e1f 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [e20 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [e22 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [e23 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e25 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e26 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [e24 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e27 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [e29 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [e2a 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e28 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [eb3 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [df7 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [df8 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [df9 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [dfa 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [dfb 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [dfc 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [dfd 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [dfe 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [dff 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e00 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e01 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [e02 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [e03 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [e04 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [e05 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e06 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e07 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e08 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [e09 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e0a 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e0b 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [e0c 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e0d 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [e0e 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e0f 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e10 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [e11 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [e12 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [e14 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [e15 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e16 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [e17 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [e18 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [e19 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [e1a 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [e1b 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [e1c 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e1d 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [e13 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e1e 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [e1f 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [e21 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [e22 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e20 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0203" signature:"0E\002!\000\343\311O$\035+\343e\232L\305\013\316\361\363\333*\2158\376\326\333\215\312\273\026\r\246$\374\334\\\002 \030\217*\340\023N\374[NJ\264\220d,\264J\3354\211\2427\020\247%a\354l\236L\271P\327" > +peer0.org1.example.com | [e23 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [e24 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [e26 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e25 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [e28 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e27 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [e2a 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [e2b 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [e2c 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [e2d 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [e2e 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [e2f 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [e30 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [e29 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e31 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e32 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e34 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [e33 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e36 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [e35 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e38 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e37 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [e39 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [e3a 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [e3c 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e3b 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [fa8 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [faa 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [fa9 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [fab 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [fac 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [fad 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [fae 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [faf 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [fb0 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [fb1 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [fb2 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [fb3 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [fb4 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [fb5 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [fb6 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [fb7 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [fb8 06-12 02:14:58.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [fb9 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [fbb 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fba 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [fbd 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [fbe 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fbc 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [fbf 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fc0 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [fc1 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [fc2 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fc3 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fc4 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [fc5 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [fc6 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fc7 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fc8 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [fc9 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fca 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [fcb 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [fcc 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [fcd 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [fce 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fcf 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [fd0 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fd1 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [fd2 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [fd3 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [fd4 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [fd5 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [fd6 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [fd7 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [fd8 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [fd9 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [fda 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [fdb 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [fdc 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [fdd 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [fde 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [fdf 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [fe0 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [fe1 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [fe2 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [fe3 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [fe4 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020?" signature:"0D\002 \"\003\036V\n\373\252\246\267X\205E_\217\254\003\360\351\006\036N\260\007\201\215\202L\261\235\346j\201\002 \013)\351\034\372\014\t?\357\313\355\336\246\255\336\235!\031\315\2744\3138\316\314K\325Le\022\002\317" > alive: alive: +peer1.org1.example.com | [fe5 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [fe6 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [fe7 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [fe8 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [fe9 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [fea 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [feb 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [fec 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [fed 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [fee 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [fef 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [ff0 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [ff1 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [ff2 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [ff3 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [ff4 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [ff5 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [ff6 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [ff7 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [ff8 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [ff9 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [ffa 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [ffb 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" secret_envelope: > alive: > +peer1.org1.example.com | [ffc 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org1.example.com | [ffd 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [ffe 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [fff 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1000 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1001 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1002 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1003 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1004 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1005 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1006 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1007 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1008 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [100a 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [100b 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [100c 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1009 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [100d 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [100e 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [100f 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1010 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1011 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1012 06-12 02:15:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1013 06-12 02:15:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1014 06-12 02:15:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1015 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1016 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1017 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1018 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1019 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [101a 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [101b 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [101c 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [101d 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [101e 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [101f 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1020 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1021 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1022 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1023 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1024 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1025 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1026 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1027 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1028 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1029 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [102a 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [102b 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [102c 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [102d 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [102e 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [102f 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [1030 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [eb4 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > alive: > +peer1.org2.example.com | [eb5 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org2.example.com | [eb6 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [eb7 06-12 02:14:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [eb8 06-12 02:14:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [eb9 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [eba 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [ebb 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [ebc 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ebd 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [ebe 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [ebf 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [ec0 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ec2 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [ec3 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ec1 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ec4 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [ec5 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [ec6 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ec7 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [ec8 06-12 02:14:56.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ec9 06-12 02:14:56.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [eca 06-12 02:14:56.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ecb 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [ecc 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [ecd 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [ece 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ecf 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org2.example.com | [ed0 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org2.example.com | [ed1 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ed2 06-12 02:14:56.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [ed3 06-12 02:14:56.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [ed4 06-12 02:14:56.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [ed5 06-12 02:14:56.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ed6 06-12 02:14:56.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [ed8 06-12 02:14:56.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ed9 06-12 02:14:56.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ed7 06-12 02:14:56.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [eda 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [edb 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [edc 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [edd 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [ede 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [edf 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ee0 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ee1 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [ee2 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [ee3 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [ee4 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [ee5 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [ee6 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [ee7 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [ee8 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [e3d 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [e3e 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e3f 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [e40 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [e41 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [e42 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [e43 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e44 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e45 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e46 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e47 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [e48 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e49 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e4a 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [e4b 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [e4c 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [e4d 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e4e 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [e4f 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [e50 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [e51 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e52 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [e53 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e54 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [e55 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [e56 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e57 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e58 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [e59 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e5b 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e5a 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e5c 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [e5d 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [e5e 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e5f 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [e60 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e61 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [e63 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [e62 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [e64 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e65 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e66 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [e67 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e68 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e69 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [e6a 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e6b 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e6c 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e6e 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [e6f 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [e70 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e71 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [e72 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e73 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [e74 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e6d 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [e75 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [e76 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [e77 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [e78 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [e79 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [e7b 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [e7c 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e7a 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 741 bytes, Signature: 0 bytes +peer0.org1.example.com | [e7d 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [e7e 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [e7f 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [e80 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +orderer.example.com | [abb 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [abc 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [abd 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420bd0d80) start: > stop: > from 172.18.0.7:35864 +orderer.example.com | [abe 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [abf 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +orderer.example.com | [ac0 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24013], Going to peek [8] bytes +orderer.example.com | [ac1 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +orderer.example.com | [ac2 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +orderer.example.com | [ac3 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420bd0d80) for 172.18.0.7:35864 +orderer.example.com | [ac4 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35864 for (0xc420bd0d80) +orderer.example.com | [ac5 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35864 +orderer.example.com | [ac6 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35864 +orderer.example.com | [ac7 06-12 02:16:03.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35864: rpc error: code = Canceled desc = context canceled +orderer.example.com | [ac8 06-12 02:16:03.67 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [ac9 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [aca 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35866 +orderer.example.com | [acb 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35866 +orderer.example.com | [acc 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +orderer.example.com | [acd 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [ace 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +orderer.example.com | [acf 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [ad0 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [ad1 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150708 gate 1528769763822444900 evaluation starts +orderer.example.com | [ad2 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150708 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [ad3 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150708 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [ad4 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150708 principal matched by identity 0 +orderer.example.com | [ad5 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ae c4 10 75 15 ad 6c ef e3 7f 92 e2 cc 10 1d c4 |...u..l.........| +orderer.example.com | 00000010 53 17 6e a5 35 6e fa 88 70 70 6f 5d 1c 64 f0 99 |S.n.5n..ppo].d..| +orderer.example.com | [ad6 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ae 36 29 e7 13 8d d7 89 3c e8 48 |0E.!..6).....<.H| +orderer.example.com | 00000010 05 c0 6a 77 18 5f d1 b9 f7 33 5d 42 e3 03 5f 3f |..jw._...3]B.._?| +orderer.example.com | 00000020 75 ae bf df e5 02 20 7c 57 66 c7 a5 9d 0d a1 e4 |u..... |Wf......| +orderer.example.com | 00000030 b6 6e f7 c0 f9 0b d3 d0 82 12 b7 be de a3 92 1d |.n..............| +orderer.example.com | 00000040 29 e8 9a de fc 67 b1 |)....g.| +orderer.example.com | [ad7 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150708 principal evaluation succeeds for identity 0 +orderer.example.com | [ad8 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150708 gate 1528769763822444900 evaluation succeeds +orderer.example.com | [ad9 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [ada 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +orderer.example.com | [adb 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +orderer.example.com | [adc 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +orderer.example.com | [add 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +orderer.example.com | [ade 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [adf 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420412380) start: > stop: > from 172.18.0.7:35866 +orderer.example.com | [ae0 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +orderer.example.com | [ae1 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +orderer.example.com | [ae2 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +orderer.example.com | [ae3 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +orderer.example.com | [ae4 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +orderer.example.com | [ae5 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420412380) for 172.18.0.7:35866 +orderer.example.com | [ae6 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35866 for (0xc420412380) +orderer.example.com | [ae7 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35866 +orderer.example.com | [ae8 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35866 +orderer.example.com | [ae9 06-12 02:16:03.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35866: rpc error: code = Canceled desc = context canceled +orderer.example.com | [aea 06-12 02:16:03.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [aeb 06-12 02:16:09.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +orderer.example.com | [aec 06-12 02:16:09.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35878 +orderer.example.com | [aed 06-12 02:16:09.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35878 +orderer.example.com | [aee 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +orderer.example.com | [aef 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35880 +orderer.example.com | [af0 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:35880 +orderer.example.com | [af1 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +orderer.example.com | [af2 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +orderer.example.com | [af3 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [af4 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [af5 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [af6 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [af7 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769769815046300 evaluation starts +orderer.example.com | [af8 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [af9 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [afa 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +orderer.example.com | [afb 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 principal evaluation fails +orderer.example.com | [afc 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769769815046300 evaluation fails +orderer.example.com | [afd 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [afe 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [aff 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +orderer.example.com | [b00 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +orderer.example.com | [b01 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [b02 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +orderer.example.com | [b03 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [b04 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +orderer.example.com | [b05 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150350 gate 1528769769816389800 evaluation starts +orderer.example.com | [b06 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [b07 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [b08 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [b09 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 principal evaluation fails +orderer.example.com | [b0a 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150350 gate 1528769769816389800 evaluation fails +orderer.example.com | [b0b 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [b0c 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +orderer.example.com | [b0d 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +orderer.example.com | [b0e 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150358 gate 1528769769817904000 evaluation starts +orderer.example.com | [b0f 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [b10 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [b11 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 principal matched by identity 0 +orderer.example.com | [b12 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 d0 0a 02 38 b3 29 46 c1 8b 2f 53 d4 f8 87 58 c9 |...8.)F../S...X.| +orderer.example.com | 00000010 e8 80 2b 59 a1 04 73 51 38 ff 6c 86 57 1a 23 4e |..+Y..sQ8.l.W.#N| +orderer.example.com | [b13 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 c5 e7 64 80 25 4b b5 81 ed 7d 9c |0D. "..d.%K...}.| +orderer.example.com | 00000010 f8 cb 5c 4e 32 1a 0c 06 1e 96 65 70 5e cf 08 87 |..\N2.....ep^...| +orderer.example.com | 00000020 9e 22 18 92 02 20 09 10 5a a7 0a b1 25 cc de 97 |."... ..Z...%...| +orderer.example.com | 00000030 36 c3 21 2c 4f 9d ab 4b 54 e0 fe 99 e9 b3 3a 12 |6.!,O..KT.....:.| +orderer.example.com | 00000040 55 b3 c7 6a c3 5d |U..j.]| +orderer.example.com | [b14 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 principal evaluation succeeds for identity 0 +orderer.example.com | [b15 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150358 gate 1528769769817904000 evaluation succeeds +orderer.example.com | [b16 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [b17 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +orderer.example.com | [b18 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +orderer.example.com | [b19 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +orderer.example.com | [b1a 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [b1b 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [b1c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [b1d 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [b1e 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [b1f 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [b20 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [b21 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [b22 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [b23 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [b24 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [b25 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [b26 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [b27 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [b28 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +orderer.example.com | [b29 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +orderer.example.com | [b2a 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +orderer.example.com | [b2b 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +orderer.example.com | [b2c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +orderer.example.com | [b2d 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [b2e 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [b2f 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [b30 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [b31 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +orderer.example.com | [b32 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +orderer.example.com | [b33 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +orderer.example.com | [b34 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +orderer.example.com | [b35 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +orderer.example.com | [b36 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | [e2b 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [e2c 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [e2e 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e2d 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [e30 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [e2f 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [e31 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [e32 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [e33 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e34 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [e35 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [e36 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [e3a 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [e37 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e38 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e39 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [e3b 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [e3c 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [e3d 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ee9 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [eea 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [eeb 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [eec 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [eed 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [eee 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [eef 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ef0 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ef1 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [ef2 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ef3 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ef4 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [ef5 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ef6 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [ef7 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ef8 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [ef9 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [efa 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [efb 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [efc 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [efd 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [efe 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [eff 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [b37 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [b38 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [b39 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [b3a 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [b3b 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [b3c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [b3d 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [b3e 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == +orderer.example.com | [b3f 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [b40 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +orderer.example.com | [b41 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +orderer.example.com | [b42 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420c7fa40 gate 1528769769826371100 evaluation starts +orderer.example.com | [b43 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fa40 signed by 0 principal evaluation starts (used [false false false]) +peer1.org1.example.com | [1031 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > alive: alive:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > alive: +peer1.org1.example.com | [1032 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1033 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1034 06-12 02:15:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1035 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1036 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1037 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1038 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1039 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [103a 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [103b 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [103c 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [103d 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [103e 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [103f 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1040 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1041 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1042 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1043 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1044 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1045 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1046 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1047 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1048 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [e81 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e82 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [e83 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer0.org1.example.com | [e84 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 56 but got ts: inc_num:1528769652429776900 seq_num:55 +peer0.org1.example.com | [e86 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e85 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [e88 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e87 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [e89 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [e8a 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [e8b 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [e8d 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [e8e 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e8f 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [e90 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e8c 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [e91 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [e92 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [e93 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e94 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e95 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [e96 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [e97 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [e98 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +orderer.example.com | [b44 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fa40 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [b45 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +orderer.example.com | [b46 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fa40 principal matched by identity 0 +orderer.example.com | [b47 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9d 13 7f 14 ec 7c 06 a4 3f b4 5b 5d 3e ef fc 48 |.....|..?.[]>..H| +orderer.example.com | 00000010 16 e5 b8 fe 0a ef 1f 20 1c a3 ba 25 2b 95 56 09 |....... ...%+.V.| +orderer.example.com | [b48 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 51 3c 7e 32 b5 ef 8d 1d e0 44 32 83 |0D. Q<~2.....D2.| +orderer.example.com | 00000010 b5 9f e2 78 f7 85 27 e8 c5 e3 14 6a 34 a1 89 45 |...x..'....j4..E| +orderer.example.com | 00000020 ab dc 04 1f 02 20 61 6a df 93 8e 01 5d 6a 09 ee |..... aj....]j..| +orderer.example.com | 00000030 69 40 7c f9 38 fb 5e 75 ef 29 ee 34 e6 a6 e6 b0 |i@|.8.^u.).4....| +orderer.example.com | 00000040 a9 1b d0 81 d0 0a |......| +orderer.example.com | [b49 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fa40 principal evaluation succeeds for identity 0 +orderer.example.com | [b4a 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420c7fa40 gate 1528769769826371100 evaluation succeeds +orderer.example.com | [b4b 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [b4c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [b4d 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +orderer.example.com | [b4e 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +orderer.example.com | [b4f 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420c7fde0 gate 1528769769828141800 evaluation starts +orderer.example.com | [b50 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 signed by 0 principal evaluation starts (used [false false false]) +peer1.org1.example.com | [1049 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [104a 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [104b 06-12 02:15:01.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [104c 06-12 02:15:01.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [104d 06-12 02:15:01.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [104e 06-12 02:15:01.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [104f 06-12 02:15:01.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1050 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1051 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1052 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1053 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1054 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1055 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1056 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1057 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [e3e 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [e3f 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [e40 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e42 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [e41 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [e43 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [e44 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [e45 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [e46 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [e47 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [e48 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [e49 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [e4a 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [e4b 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [e4c 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e4e 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [e4d 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e4f 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [e50 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e51 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [e52 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e53 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [e54 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [b51 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [b52 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [b53 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [b54 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +orderer.example.com | [b55 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 principal matched by identity 1 +orderer.example.com | [b56 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 42 4e 71 d9 f8 76 ba 7c 0d ef c9 49 c9 e5 f9 db |BNq..v.|...I....| +orderer.example.com | 00000010 79 ec 2b 22 43 f0 00 ab c9 95 8a 18 fc 66 71 8d |y.+"C........fq.| +orderer.example.com | [b57 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 f6 55 14 05 2f fa 56 56 38 07 |0E.!...U../.VV8.| +orderer.example.com | 00000010 d3 fa 86 6c 62 18 fe 3c 2f de b8 68 9c d9 d9 4b |...lb.. DEBU 0xc420c7fde0 principal evaluation succeeds for identity 1 +orderer.example.com | [b59 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420c7fde0 gate 1528769769828141800 evaluation succeeds +orderer.example.com | [b5a 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [1058 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1059 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [105a 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [105b 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [105c 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [105d 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [105e 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [105f 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1060 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1061 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [1062 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1063 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [1064 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1065 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1066 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1067 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1069 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1068 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [106b 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [106a 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [106c 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [106d 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [106f 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [106e 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1070 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1071 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [e99 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [e9a 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [e9c 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [e9b 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [e9d 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [e9e 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [ea0 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [e9f 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [ea1 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [ea2 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [ea3 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [ea4 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [ea5 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [ea7 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [ea6 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [ea8 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [ea9 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [eaa 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [eab 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [ead 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [eac 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [eae 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [eaf 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [eb0 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [eb1 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [b5b 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [b5c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins +orderer.example.com | [b5d 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins +orderer.example.com | [b5e 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +orderer.example.com | [b5f 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +orderer.example.com | [b60 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +orderer.example.com | [b61 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b62 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b63 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b64 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b65 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b66 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b67 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b68 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b69 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b6a 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +orderer.example.com | [b6b 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +orderer.example.com | [b6c 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [1072 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1073 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1074 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1075 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1076 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1077 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1078 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1079 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 67 but got ts: inc_num:1528769652088169500 seq_num:66 +peer1.org1.example.com | [107a 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [107b 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [107c 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [107d 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [107e 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [107f 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1080 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1081 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1082 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1083 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1084 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1085 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1086 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1087 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1088 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1089 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [108a 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [108b 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [108c 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 68 but got ts: inc_num:1528769652429776900 seq_num:67 +peer1.org1.example.com | [108d 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [108e 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [108f 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1090 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1091 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1092 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1093 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1094 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 67 but got ts: inc_num:1528769652088169500 seq_num:65 +peer1.org1.example.com | [1095 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1096 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1097 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1098 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1099 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [109a 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [109b 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [109c 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [109d 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [109e 06-12 02:15:01.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [109f 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10a0 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [10a1 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10a2 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10a3 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [b6d 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b6e 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b6f 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b70 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b71 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [b72 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b73 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b74 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [b75 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [b76 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [b77 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +orderer.example.com | [b78 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +orderer.example.com | [b79 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +orderer.example.com | [b7a 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +orderer.example.com | [b7b 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +orderer.example.com | [b7c 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [b7d 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +orderer.example.com | [b7e 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +orderer.example.com | [b7f 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [f00 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [f01 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f02 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [f03 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f04 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [f05 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [f06 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [f07 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [f08 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [f09 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [f0a 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f0b 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [f0c 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [f0d 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020>" signature:"0D\002 Gw\200\324\"\277\334\247h\210[\3660\225\225\021\024\307\360\037\255&'\321da\270J\351\364\325\023\002 #\366>\360\337\304\321\360%v\r\307\r+i\004\006\264I\364pd\232\313\244\\\221\232\221+\305\372" > alive: +peer1.org2.example.com | [f0e 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [f0f 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [f10 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f11 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f12 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [f13 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f14 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f15 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f16 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [f17 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [f18 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [f19 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [f1a 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [f1b 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [f1c 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f1e 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f1d 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f1f 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f20 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [f21 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f22 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f23 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f24 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [f25 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [f26 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f27 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [f28 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f29 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [f2a 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f2b 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [f2c 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [b80 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +orderer.example.com | [b81 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +orderer.example.com | [b82 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +orderer.example.com | [b83 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [b84 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [b85 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [b86 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +orderer.example.com | [b87 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [b88 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [b89 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +orderer.example.com | [b8a 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b8b 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b8c 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [b8d 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +orderer.example.com | [b8e 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +orderer.example.com | [b8f 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +orderer.example.com | [b90 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [b91 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [b92 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [b93 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [b94 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +orderer.example.com | [b95 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +orderer.example.com | [b96 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [b97 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [b98 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +orderer.example.com | [b99 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +orderer.example.com | CSJWn+U1 +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b9a 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [b9b 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +orderer.example.com | [b9c 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [b9d 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [10a4 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [10a5 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [10a6 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [10a7 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [10a8 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [10a9 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [10aa 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [10ab 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [10ac 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [10ad 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [10ae 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10af 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [10b0 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10b1 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [10b2 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10b3 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10b4 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [10b5 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10b7 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10b6 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10b9 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [10b8 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10ba 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [10bb 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e55 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [e56 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [e57 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [e58 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [e59 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [e5a 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e5b 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [e5c 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 57 but got ts: inc_num:1528769651824440500 seq_num:55 +peer0.org2.example.com | [e5d 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [e5e 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [e5f 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [e60 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [e61 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [e62 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [e63 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [e64 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [e65 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [e66 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [e67 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [e69 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e6a 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [e68 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e6b 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e6c 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [e6d 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [b9e 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [b9f 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +orderer.example.com | [ba0 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +orderer.example.com | [ba1 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +orderer.example.com | [ba2 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +orderer.example.com | [ba3 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [ba4 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP +orderer.example.com | [ba5 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICQzCCAemgAwIBAgIQGCm4/p9EqkmwbVtW/XJGKTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzFaFw0yODAxMjgwNzQwMzFa +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +orderer.example.com | 3PqQMEKlMela9BLoXcDOFEqvw7LGhC/imYoK8TmTuD3fc8zCMco+Vro5wdAySGBf +orderer.example.com | jJKIKGongOakmWvtfW0loqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQghdRukz+tFBdsZD0Hxhyl +orderer.example.com | oY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDSAAwRQIhAJFgIoUVJe/5IPVG +orderer.example.com | f7pEMNyhmJ9OTJ5Pmg/dnjt47BGBAiBdmt6ea8+qgSxgqleGtyaDzQhr6TxyJs2H +orderer.example.com | 73TfAIFqpw== +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [ba6 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICGDCCAb+gAwIBAgIQUxJMA+tdH0siY+rN7IewmTAKBggqhkjOPQQDAjBzMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzJaFw0yODAxMjgwNzQwMzJa +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmczLmV4YW1wbGUuY29tMFkw +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAELmPLYv1h6V32TMihBEBz/dGocBrXc+OK +orderer.example.com | AoZS+bAEFBgwQOU5/JwVt4QH3TNzn1GuHSIVtWjw1ChZCv5NHYg9ZaNNMEswDgYD +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAghdRukz+tFBds +orderer.example.com | ZD0HxhyloY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDRwAwRAIgJnAoONQf +orderer.example.com | 57KM4I9TaFQTI/EG7TjdwLP5Pe1Qgj5MmGMCIEPVLGqnvMyVbdTuJvPYXJlIVthz +orderer.example.com | 6bM3NghPvYPoknIC +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [ba7 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity +orderer.example.com | [ba8 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [ba9 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [baa 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +orderer.example.com | [bab 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [10bc 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10bd 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [10be 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10bf 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10c0 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [10c1 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10c2 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10c3 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10c4 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [10c5 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [10c6 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [10c7 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [10c8 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [10c9 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [10ca 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [10cb 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [10cc 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [10cd 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [10ce 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10cf 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [10d0 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10d1 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [10d2 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10d3 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [eb2 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [eb3 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +peer0.org1.example.com | [eb4 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [eb5 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [eb6 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 740 bytes, Signature: 0 bytes +peer0.org1.example.com | [eb7 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [eb8 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [eb9 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [eba 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [ebb 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [ebc 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [ebd 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ebe 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 741 bytes, Signature: 0 bytes +peer0.org1.example.com | [ebf 06-12 02:14:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ec0 06-12 02:14:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org1.example.com | [ec1 06-12 02:14:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org1.example.com | [ec2 06-12 02:14:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ec3 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:6812725869896769966 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes +peer0.org1.example.com | [ec4 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ec5 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:6812725869896769966 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes +peer0.org1.example.com | [ec6 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [ec7 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [ec8 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 6812725869896769966, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 546 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [eca 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 6812725869896769966, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 546 bytes, Signature: 0 bytes +peer0.org1.example.com | [ec9 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0206" signature:"0D\002 \002%\240\330\335\261Uo)\372\244\374B\022\327:\214b[\213PO\252\023\254\315\345\276o$\225\215\002 \032\364f\300\030\3768\225N\0132b\023\303\235tH\372)\306\376\211\177\035\260\301\370\372\210\253z\007" secret_envelope: > +peer0.org1.example.com | [ecb 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [ecc 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [ecd 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ece 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [ecf 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ed0 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [ed1 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [ed2 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ed3 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [ed4 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [ed5 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ed6 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [ed7 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [ed8 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [ed9 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [eda 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [edb 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [edc 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [edd 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ede 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [edf 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [ee0 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [ee1 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [ee2 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [ee3 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [ee4 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [ee5 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [ee6 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [ee7 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [ee8 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ee9 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [f2d 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [eea 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [f2e 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f2f 06-12 02:14:57.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [e6e 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [10d4 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [eeb 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [f30 06-12 02:14:57.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f31 06-12 02:14:57.59 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer0.org2.example.com | [e6f 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 57 but got ts: inc_num:1528769651824440500 seq_num:56 +peer1.org1.example.com | [10d5 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f32 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [e70 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [bac 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +orderer.example.com | [bad 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +orderer.example.com | [bae 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [10d6 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [10d7 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f33 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [10d8 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [eec 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [baf 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [bb0 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org1.example.com | [10d9 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [eed 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [f34 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [bb1 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [10da 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e71 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [eef 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f35 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10db 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e72 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [eee 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f36 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [10dc 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [e73 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 55 but got ts: inc_num:1528769653227426900 seq_num:54 +peer1.org2.example.com | [f37 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [ef1 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [10dd 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [e74 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f38 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [ef0 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [10de 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [10df 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [10e0 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [10e1 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [ef2 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [10e2 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e75 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [ef3 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f39 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [10e3 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer0.org2.example.com | [e76 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [ef4 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [f3a 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [10e4 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e77 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer0.org1.example.com | [ef5 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [f3b 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [10e5 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [10e6 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [10e7 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10e8 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f3c 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [10e9 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [e78 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [ef6 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f3e 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [10ea 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [e79 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [f3f 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [ef7 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [10eb 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [e7a 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [f3d 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [ef8 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer1.org1.example.com | [10ec 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [e7b 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [ef9 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer1.org1.example.com | [10ed 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [e7c 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f41 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [efa 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +peer1.org1.example.com | [10ee 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [e7d 06-12 02:14:52.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f40 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [efc 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | [10ef 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [e7e 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [f42 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [efd 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +peer1.org1.example.com | [10f0 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [e7f 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [f43 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [efe 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +peer1.org1.example.com | [10f1 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f44 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [efb 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +peer0.org2.example.com | [e80 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [10f2 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [eff 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f45 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | QKuzs3j8kg== +peer0.org2.example.com | [e81 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [10f3 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [f01 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f46 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [e82 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [10f5 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [f00 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [f47 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [bb2 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [e83 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [10f7 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [f02 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f48 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [e84 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [10f6 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [f03 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [f49 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [e85 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [10f9 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [f04 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [f4a 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [e86 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [10fa 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [f05 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [f4b 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer0.org2.example.com | [e87 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10f4 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f4c 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f06 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [e88 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [10fb 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [f4d 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f07 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | [e89 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10f8 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f4e 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f08 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +peer0.org2.example.com | [e8a 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [10fc 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [f4f 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f09 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +peer0.org2.example.com | [e8b 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [10fd 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f50 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f0a 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer0.org2.example.com | [e8c 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [10fe 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f51 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f0b 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +peer0.org2.example.com | [e8d 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [10ff 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [f52 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [f0c 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +peer0.org2.example.com | [e8e 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1100 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f53 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f0d 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0207" signature:"0D\002 f>\2665\262\311\362\032\323wd<\177!\241\221\343+E;rE\355'\230\023\272\026\003\257\\=\002 Nz\274?\303\375\023\342\320_\205\034\320\036\226\267?6\003\007\005\200\274jF\340\001\023q]N\001" > +orderer.example.com | 3BDFnYuSFYhOCexVkA== +peer0.org2.example.com | [e8f 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1101 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1102 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [f0e 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [e90 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [1103 06-12 02:15:03.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [f54 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f0f 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [bb3 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer0.org2.example.com | [e91 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [1104 06-12 02:15:03.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [f55 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [f10 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [bb4 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) +peer0.org2.example.com | [e92 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [1105 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [f56 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [f11 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [bb5 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps +peer0.org2.example.com | [e93 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f57 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [f58 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [1106 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [bb6 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [e94 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer1.org2.example.com | [f59 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1107 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [f12 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [bb7 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [e95 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer1.org2.example.com | [f5a 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1108 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f13 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [bb8 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer0.org2.example.com | [e96 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer1.org2.example.com | [f5c 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1109 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f14 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [bb9 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer0.org2.example.com | [e97 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [f5b 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [110a 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f15 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [bba 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer0.org2.example.com | [e98 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [f5d 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [110c 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f16 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +orderer.example.com | [bbb 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer0.org2.example.com | [e99 06-12 02:14:52.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [f5e 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [110b 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f17 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [e9a 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [bbc 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer1.org2.example.com | [f5f 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [110d 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f18 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e9b 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [bbd 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer1.org2.example.com | [f60 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [110e 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [f19 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes +peer0.org2.example.com | [e9c 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [bbe 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer1.org2.example.com | [f61 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [110f 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [f1a 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes +peer0.org2.example.com | [e9d 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +orderer.example.com | [bbf 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer1.org1.example.com | [1110 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [f62 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f1b 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [e9e 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +orderer.example.com | [bc0 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP +peer1.org1.example.com | [1111 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f64 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f1c 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes +peer0.org2.example.com | [e9f 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [bc1 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP +peer1.org1.example.com | [1112 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [f65 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f1d 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ea0 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [bc2 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP +peer1.org1.example.com | [1113 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f66 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f1e 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [ea1 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [bc3 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer1.org1.example.com | [1114 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [f67 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f1f 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 8871544096824663435, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [ea2 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [bc4 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer1.org1.example.com | [1115 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f63 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f20 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0208" signature:"0E\002!\000\244xZ+\001\223\214\251\022\355\177\215y%Wa\376\372N\036.\031\252\337\301\203Y\024\037\270\274I\002 k\240\2751\224\273-\200\016\2261\201hf\324\2007\302\r\303[<\221N\245\210\257\326`\335\232\276" > +peer0.org2.example.com | [ea3 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +orderer.example.com | [bc5 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer1.org1.example.com | [1116 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [f68 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f21 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 8871544096824663435, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes +peer0.org2.example.com | [ea4 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [bc6 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer1.org1.example.com | [1117 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [f69 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f22 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [bc7 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer0.org2.example.com | [ea5 06-12 02:14:52.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1118 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [f6a 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f23 06-12 02:14:52.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +orderer.example.com | [bc8 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer0.org2.example.com | [ea6 06-12 02:14:52.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +peer1.org1.example.com | [1119 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [f6b 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f24 06-12 02:14:52.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +orderer.example.com | [bc9 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer0.org2.example.com | [ea7 06-12 02:14:52.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [111a 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [f6c 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f25 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [bca 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer0.org2.example.com | [ea8 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 10783280152773448649, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 659 bytes, Signature: 0 bytes +peer1.org1.example.com | [111b 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [f6d 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f26 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +orderer.example.com | [bcb 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer0.org2.example.com | [ea9 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [111c 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f6e 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [f27 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [bcc 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [eaa 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 10783280152773448649, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 659 bytes, Signature: 0 bytes +peer1.org1.example.com | [111e 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org2.example.com | [f70 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f28 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +orderer.example.com | [bcd 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +orderer.example.com | [bce 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [eab 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [eac 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [f29 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 10783280152773448649, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 659 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [bcf 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [111f 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [ead 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 55 but got ts: inc_num:1528769653227426900 seq_num:54 +peer1.org2.example.com | [f71 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [f2a 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0209" signature:"0E\002!\000\215\252yb;8\306Ua\353P\343\347\356\327\2540\303D\022\303\014I\370AQ\254v\241\341\360\221\002 b\253I\262\225\304\265\007*#\201\301\210N\232\201\222\017<~b\221\264\265\315\206\340\326\324y*\226" > +orderer.example.com | [bd0 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1120 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020D" signature:"0D\002 )\221\036!~\342\214\010\201\325\317\337p\312\310v\227aT\263u\211t\017\212@!\002\346\3211X\002 \017\214\250A\223\236Ss;:C\326\002\335\n\331T;d\0075R\3454\356\201\350~\024\004l[" > alive: alive: +peer0.org2.example.com | [eae 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f72 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f2b 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 10783280152773448649, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 659 bytes, Signature: 0 bytes +orderer.example.com | [bd1 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [1121 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [eaf 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f6f 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f2c 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [bd2 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [1122 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [eb0 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [f73 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [f2d 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [bd3 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [111d 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [eb1 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f74 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f2e 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [bd4 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [1123 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [eb2 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f75 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [f30 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [bd5 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [1124 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [eb3 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f76 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [f31 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [bd6 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [1125 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [eb4 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [f77 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f32 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [bd7 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [1126 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [eb5 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 57 but got ts: inc_num:1528769651824440500 seq_num:56 +peer1.org2.example.com | [f78 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [f2f 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [bd8 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [1127 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [eb6 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f79 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [f33 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [bd9 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [1128 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [eb7 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f7a 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [f34 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [bda 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [1129 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [eb8 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [f7b 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [f36 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [bdb 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [112a 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [eb9 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [f7c 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [f35 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [bdc 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [112b 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [eba 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [f7d 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [f38 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [bdd 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [112c 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [f7e 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [ebb 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [f39 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [f3a 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f80 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [112d 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [ebc 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [ebd 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [ebe 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [ebf 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [112e 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [ec0 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [112f 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [f37 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [ec1 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [bde 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [f81 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f82 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f83 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [ec2 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f3b 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1130 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1131 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1132 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1133 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [f3c 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [f3d 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [f3e 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f3f 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f40 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1135 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [1136 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [bdf 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [f41 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f42 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f43 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [f44 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [f45 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [be0 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +orderer.example.com | [be1 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +orderer.example.com | [be2 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +orderer.example.com | [be3 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +orderer.example.com | [be4 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +orderer.example.com | [be5 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +orderer.example.com | [be6 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +orderer.example.com | [be7 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +orderer.example.com | [be8 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [be9 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +orderer.example.com | [bea 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +orderer.example.com | [beb 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +orderer.example.com | [bec 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +orderer.example.com | [bed 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +orderer.example.com | [bee 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [bef 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [bf0 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [bf1 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [bf2 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +orderer.example.com | [bf3 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +orderer.example.com | [bf4 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +orderer.example.com | [bf5 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +orderer.example.com | [bf6 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +orderer.example.com | [bf7 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +orderer.example.com | [bf8 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +orderer.example.com | [bf9 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +orderer.example.com | [bfa 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +orderer.example.com | [bfb 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [f46 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f47 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f48 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f49 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f4a 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f4b 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f4c 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [f4d 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f4e 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f4f 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [f50 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [f51 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f52 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [f53 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [f54 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [f55 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [f56 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [f57 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [f58 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [f59 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [f5a 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [f5b 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [f5c 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [f5d 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f5e 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020:" signature:"0E\002!\000\327\314f\267\331\220\303jh\276\343\235n\023\001\204\013w\025\316\252\204\346(\250\326b\036\274\320\244w\002 `\346\372\242\217\211\371u\324u\n0X5*\211T\363\010`\376%Re\300\372>\215\245W\262\n" secret_envelope: > +peer0.org1.example.com | [f5f 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [f60 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f61 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [f62 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [f63 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [f64 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [f65 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f66 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [f67 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [f68 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ec3 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ec4 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ec5 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [ec6 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [ec7 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [ec8 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [ec9 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [eca 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [ecb 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [ecc 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ecd 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [ece 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [ecf 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [ed0 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [ed1 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ed2 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [ed4 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f84 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f7f 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [f85 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f86 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [f87 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [bfc 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [bfd 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [bfe 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [bff 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [c00 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [c01 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [c02 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP +orderer.example.com | [c03 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +orderer.example.com | [c04 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +orderer.example.com | [c05 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +orderer.example.com | [c06 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +orderer.example.com | [c07 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [c08 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [c09 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +orderer.example.com | [c0a 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +orderer.example.com | [c0b 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +orderer.example.com | [c0c 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +orderer.example.com | [c0d 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +orderer.example.com | [c0e 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [c0f 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +orderer.example.com | [c10 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608E9D9FCD80522...AB4B54E0FE99E9B33A1255B3C76AC35D +orderer.example.com | [c11 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: E00E270A17A367780E932CE7D24BAADF02CF6AE76EFB980BDF4B86E0E894FFD8 +orderer.example.com | [c12 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +peer1.org1.example.com | [1137 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" secret_envelope: > alive: > +peer1.org1.example.com | [1138 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org1.example.com | [1139 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1134 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [113a 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [113b 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [113c 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [113d 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [113e 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [113f 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1140 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1141 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1142 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1143 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1144 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1145 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1146 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1147 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1148 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1149 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [114a 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [114b 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [114c 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [114d 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [114e 06-12 02:15:04.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [114f 06-12 02:15:04.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1150 06-12 02:15:04.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1151 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1152 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1153 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [1154 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1155 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [1156 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [1157 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [1158 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1159 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [115a 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [115b 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [115c 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [115d 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [115e 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [115f 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [ed3 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ed5 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [ed7 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ed8 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [ed9 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [eda 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [edc 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [edb 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ed6 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [edd 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ede 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [edf 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ee0 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ee1 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [ee2 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [ee3 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ee4 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [ee5 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ee6 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [ee7 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [ee8 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [ee9 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [f88 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [f89 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [f8a 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [f8b 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [f8c 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [f8d 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f8e 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f8f 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [f91 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f92 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [f90 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [f93 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [f94 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f95 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f96 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [f97 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [f98 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [f99 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [f9a 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [f9b 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [f9c 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [f9d 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [f9e 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [f9f 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [fa0 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fa1 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [fa2 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [c13 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [c14 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +orderer.example.com | [c15 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [c16 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +orderer.example.com | [c17 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +orderer.example.com | [c18 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +orderer.example.com | MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +orderer.example.com | Y28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq +orderer.example.com | hkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO +orderer.example.com | Fk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw +orderer.example.com | DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o +orderer.example.com | zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR +orderer.example.com | qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [c19 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769769876961300 evaluation starts +orderer.example.com | [c1a 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [c1b 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [c1c 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +orderer.example.com | [c1d 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +orderer.example.com | [c1e 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 principal matched by identity 0 +orderer.example.com | [c1f 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 e0 0e 27 0a 17 a3 67 78 0e 93 2c e7 d2 4b aa df |..'...gx..,..K..| +orderer.example.com | 00000010 02 cf 6a e7 6e fb 98 0b df 4b 86 e0 e8 94 ff d8 |..j.n....K......| +orderer.example.com | [c20 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e0 17 84 33 b9 1a 85 4d 36 11 af |0E.!....3...M6..| +orderer.example.com | 00000010 dd 39 1e fc 5e be 84 e1 b4 ad e1 bc fe 54 32 84 |.9..^........T2.| +orderer.example.com | 00000020 c7 6f 9e 19 8a 02 20 14 98 a3 90 b7 19 50 73 0e |.o.... ......Ps.| +orderer.example.com | 00000030 8f 33 74 85 34 37 a3 e1 c0 96 a9 14 23 99 cc 9c |.3t.47......#...| +orderer.example.com | 00000040 42 9d c2 74 6a db ee |B..tj..| +peer0.org1.example.com | [f69 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [f6a 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [f6b 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [f6c 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [f6d 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [f6e 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [f6f 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [f70 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [f71 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [f72 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [f73 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [f74 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f75 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020;" signature:"0D\002 X\"\305\360mB\2055\362\201\363\2401\033\305\260\366\357]\242R\016\232K%N\372\034K\027\253$\002 \037$X\r\222\256%\276}EL\004X6a\255\235\200\000\352\260bX\235\014\377\224d\341\247\226\n" > +peer0.org1.example.com | [f76 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [f77 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f78 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [f79 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f7a 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [f7c 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f7d 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [f7f 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f80 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [f7b 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [f81 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [eea 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [eeb 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [eec 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [eed 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [eee 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [eef 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [ef0 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0209" signature:"0E\002!\000\215\252yb;8\306Ua\353P\343\347\356\327\2540\303D\022\303\014I\370AQ\254v\241\341\360\221\002 b\253I\262\225\304\265\007*#\201\301\210N\232\201\222\017<~b\221\264\265\315\206\340\326\324y*\226" > alive:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > alive: +peer0.org2.example.com | [ef1 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [ef2 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [ef3 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [ef4 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [ef5 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [ef6 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [ef7 06-12 02:14:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [ef8 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [ef9 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [efa 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [efb 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [efc 06-12 02:14:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [efd 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [fa3 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [fa4 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [fa5 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [fa6 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [fa7 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [fa8 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [fa9 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [faa 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [fab 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [fac 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [fad 06-12 02:14:59.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [fae 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [faf 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [fb0 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [fb1 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fb2 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [fb3 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fb4 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [fb5 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [fb6 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [fb7 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [fb8 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [c21 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 principal evaluation succeeds for identity 0 +orderer.example.com | [c22 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769769876961300 evaluation succeeds +orderer.example.com | [c23 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [c24 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +orderer.example.com | [c25 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +orderer.example.com | [c26 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +orderer.example.com | [c27 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +orderer.example.com | [c28 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +orderer.example.com | [c29 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:35880 +orderer.example.com | [c2a 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [c2b 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [c2c 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [c2d 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [c2e 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [c2f 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [c30 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [c31 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +orderer.example.com | [c32 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +orderer.example.com | [c33 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +orderer.example.com | [c34 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +orderer.example.com | [c35 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +orderer.example.com | [c36 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +orderer.example.com | [c37 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +orderer.example.com | [c38 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +orderer.example.com | [c39 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +orderer.example.com | [c3a 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +orderer.example.com | [c3b 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +orderer.example.com | [c3c 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +orderer.example.com | [c3d 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [1160 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1161 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1162 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1163 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1164 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1165 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1166 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1167 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1168 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1169 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [116b 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [116a 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [116c 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [116d 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > alive: alive: +peer1.org1.example.com | [116e 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [116f 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1170 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1171 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1172 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1173 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1174 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1175 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1176 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1177 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [1178 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1179 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [117a 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [117b 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [117c 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [117e 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [117d 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [117f 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1180 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1181 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1182 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1183 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1184 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1185 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1186 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1187 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1188 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1189 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [c3e 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +orderer.example.com | [c3f 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +orderer.example.com | [c40 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +orderer.example.com | [c41 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +orderer.example.com | [c42 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +orderer.example.com | [c43 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +orderer.example.com | [c44 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +orderer.example.com | [c45 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [c46 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [c47 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +orderer.example.com | [c48 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +orderer.example.com | [c49 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +orderer.example.com | [c4a 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +orderer.example.com | [c4b 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +orderer.example.com | [c4c 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +orderer.example.com | [c4d 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == +orderer.example.com | [c4e 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [c4f 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +orderer.example.com | [c50 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +orderer.example.com | [c51 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420272c80 gate 1528769769892220000 evaluation starts +orderer.example.com | [c52 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420272c80 signed by 0 principal evaluation starts (used [false false false]) +orderer.example.com | [c53 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420272c80 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [c54 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420272c80 principal matched by identity 0 +orderer.example.com | [c55 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9d 13 7f 14 ec 7c 06 a4 3f b4 5b 5d 3e ef fc 48 |.....|..?.[]>..H| +orderer.example.com | 00000010 16 e5 b8 fe 0a ef 1f 20 1c a3 ba 25 2b 95 56 09 |....... ...%+.V.| +orderer.example.com | [c57 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35878: rpc error: code = Canceled desc = context canceled +orderer.example.com | [c58 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +orderer.example.com | [c59 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35880: rpc error: code = Canceled desc = context canceled +orderer.example.com | [c5a 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +orderer.example.com | [c56 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 51 3c 7e 32 b5 ef 8d 1d e0 44 32 83 |0D. Q<~2.....D2.| +orderer.example.com | 00000010 b5 9f e2 78 f7 85 27 e8 c5 e3 14 6a 34 a1 89 45 |...x..'....j4..E| +orderer.example.com | 00000020 ab dc 04 1f 02 20 61 6a df 93 8e 01 5d 6a 09 ee |..... aj....]j..| +orderer.example.com | 00000030 69 40 7c f9 38 fb 5e 75 ef 29 ee 34 e6 a6 e6 b0 |i@|.8.^u.).4....| +orderer.example.com | 00000040 a9 1b d0 81 d0 0a |......| +orderer.example.com | [c5b 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420272c80 principal evaluation succeeds for identity 0 +orderer.example.com | [c5c 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420272c80 gate 1528769769892220000 evaluation succeeds +orderer.example.com | [c5d 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [c5e 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +orderer.example.com | [c5f 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +orderer.example.com | [c60 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +orderer.example.com | [c61 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4202730c0 gate 1528769769896578000 evaluation starts +orderer.example.com | [c62 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 signed by 0 principal evaluation starts (used [false false false]) +peer0.org2.example.com | [efe 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [eff 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [f00 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [f01 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [f02 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [f03 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f04 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [f05 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [f06 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f07 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer0.org2.example.com | [f08 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [f09 06-12 02:14:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [f0a 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [f0b 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [f0c 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [f0d 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f0e 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [f0f 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f10 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [f11 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f12 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [fb9 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [fba 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [fbb 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [fbc 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [fbe 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [fbf 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [fc0 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > alive: alive: alive: +peer1.org2.example.com | [fc1 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [fc2 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [fbd 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [fc3 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [fc4 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fc5 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [fc6 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [fc7 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fc8 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [fc9 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [fca 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [fcb 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fcc 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [fcd 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [118a 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [118b 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [118c 06-12 02:15:05.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [118d 06-12 02:15:05.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [118e 06-12 02:15:05.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [118f 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1190 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1191 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1192 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1193 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1194 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1195 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1196 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1197 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1198 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1199 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [119a 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [119b 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [119c 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [119d 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [119e 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [11a0 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [119f 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [11a1 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11a2 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [11a3 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [11a5 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [11a4 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11a6 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [11a7 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [11a8 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [11a9 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [11aa 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [11ab 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [11ac 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [11ad 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [11ae 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [11af 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11b1 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [11b0 06-12 02:15:05.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11b2 06-12 02:15:05.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [11b3 06-12 02:15:05.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 72 but got ts: inc_num:1528769651824440500 seq_num:71 +peer1.org1.example.com | [11b4 06-12 02:15:05.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [11b5 06-12 02:15:05.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [11b6 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [11b7 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [c63 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [c64 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +orderer.example.com | [c65 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [c66 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 principal matched by identity 1 +orderer.example.com | [c67 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 42 4e 71 d9 f8 76 ba 7c 0d ef c9 49 c9 e5 f9 db |BNq..v.|...I....| +orderer.example.com | 00000010 79 ec 2b 22 43 f0 00 ab c9 95 8a 18 fc 66 71 8d |y.+"C........fq.| +orderer.example.com | [c68 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 f6 55 14 05 2f fa 56 56 38 07 |0E.!...U../.VV8.| +orderer.example.com | 00000010 d3 fa 86 6c 62 18 fe 3c 2f de b8 68 9c d9 d9 4b |...lb.. DEBU 0xc4202730c0 principal evaluation succeeds for identity 1 +orderer.example.com | [c6a 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4202730c0 gate 1528769769896578000 evaluation succeeds +orderer.example.com | [c6b 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [c6c 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +orderer.example.com | [c6d 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins +orderer.example.com | [c6e 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins +orderer.example.com | [c6f 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +orderer.example.com | [c70 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +orderer.example.com | [c71 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +orderer.example.com | [c72 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c73 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c74 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +orderer.example.com | [c75 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +orderer.example.com | [c76 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +orderer.example.com | [c77 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [f13 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [f14 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [f15 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [f16 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [f17 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [f18 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f19 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [f1a 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [f1b 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f1c 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > alive:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > alive: +peer0.org2.example.com | [f1d 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [f1e 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [f1f 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [f20 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f21 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [f22 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f23 06-12 02:14:56.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [f24 06-12 02:14:56.46 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f25 06-12 02:14:56.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [f26 06-12 02:14:56.46 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f27 06-12 02:14:56.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [f28 06-12 02:14:56.46 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f29 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [f2a 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [f2b 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [f2d 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [f7e 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [f84 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f82 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [f85 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [f86 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f83 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f87 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [f88 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [f89 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [f8a 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f8b 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f8c 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f8d 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [f8e 06-12 02:14:56.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f8f 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f90 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f91 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [f92 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [f94 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f95 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [f93 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [f96 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f97 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [f98 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [f99 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [f9a 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [f9b 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [f9c 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [f9d 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [f9e 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [f9f 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [fa0 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [fa1 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fa2 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [fa3 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [fa4 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [fa5 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [fa6 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [fa7 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [fa8 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [fa9 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [faa 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [fab 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [fac 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [fad 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [fae 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [faf 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [fb0 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [fb1 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [fb2 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [fb3 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [fb4 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [fb5 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fb6 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [fb7 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [fb8 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 59 but got ts: inc_num:1528769653227426900 seq_num:58 +peer0.org1.example.com | [fb9 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fba 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [fbb 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [fbc 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [fbd 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fbe 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [fbf 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [fc0 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [fc1 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [fc2 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [fc3 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [fc4 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [fc5 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fc6 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [fc7 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [fc8 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [fc9 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [fca 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [fcb 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 60 but got ts: inc_num:1528769651824440500 seq_num:59 +peer0.org1.example.com | [fcc 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fcd 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [fce 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [fcf 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [fd0 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fd1 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [fd2 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [fd3 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 59 but got ts: inc_num:1528769653227426900 seq_num:57 +peer0.org1.example.com | [fd4 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fd5 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [fd6 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [fd7 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [fd8 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [fd9 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [fda 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [fdb 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [fdc 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [fdd 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [fde 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [fdf 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [fe0 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [fe1 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [fe2 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [fe3 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [fe4 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [fe5 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [fe6 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [fe7 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [fe8 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [fe9 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [fea 06-12 02:14:56.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [feb 06-12 02:14:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [fec 06-12 02:14:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [fed 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [fee 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [fef 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [ff0 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [ff1 06-12 02:14:56.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer0.org1.example.com | [ff2 06-12 02:14:56.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer0.org1.example.com | [ff3 06-12 02:14:56.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ff4 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [ff5 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ff6 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [ff7 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [ff8 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [ff9 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [ffa 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ffb 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ffc 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [ffd 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [ffe 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [fff 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1000 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1001 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1002 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1003 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1004 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1005 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1006 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1007 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1008 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1009 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [100a 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [100b 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [100c 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [100d 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [100e 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020=" signature:"0D\002 L\366a\305\365\231[\342t\221\\\212\204\272\005U\324.\ts v,\362,4\347\022\306q\016\263\002 5\376\003\204Y\217j\202\242LR(\260a\2052\315\332J9\206\275,\325\n\255\242\247\002\212\270\220" > +peer0.org1.example.com | [100f 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1010 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1011 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1012 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1013 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1014 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1015 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1016 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1017 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1018 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1019 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [101a 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [101b 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [101c 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [101d 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [101e 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [101f 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1020 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1021 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1022 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1023 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1024 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1025 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1026 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1027 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1028 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1029 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [102a 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [102b 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [102c 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [102d 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fce 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [fcf 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [fd0 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [fd1 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [fd2 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [fd3 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [fd4 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [fd5 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [fd6 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [fd7 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [fd8 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [fd9 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [fdb 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [fdc 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [fda 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" secret_envelope: > alive:\263\275uUL24*\031\361u\024/\340^\230\236\305\215\222\002 2\334m\261\211\006\377\345N\344\226\0101oc\033\177\333\373o\336\245\177j\226\201\024\306\352\377\260\245" secret_envelope: > +peer1.org2.example.com | [fdd 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [fde 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fdf 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [fe0 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [fe1 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [fe2 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fe3 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [fe4 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [fe5 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [fe7 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [fe8 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [fe6 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [fe9 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [fea 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [feb 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [fec 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fed 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [fee 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [fef 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [ff0 06-12 02:15:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ff1 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [ff2 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [ff3 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [ff4 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [ff5 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org2.example.com | [ff6 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org2.example.com | [ff7 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ff8 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [ff9 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [ffa 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [ffb 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [ffc 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [ffd 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [ffe 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [fff 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1000 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1001 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1002 06-12 02:15:01.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1003 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1004 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1005 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1006 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1007 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1008 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1009 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [100a 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [100b 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [100c 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > alive: +peer1.org2.example.com | [100d 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [100e 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [100f 06-12 02:15:01.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [1010 06-12 02:15:01.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1011 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1012 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1013 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1014 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1015 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1016 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1017 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1018 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1019 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [101a 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [101b 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [101c 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [101d 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [101e 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [101f 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1020 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1021 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1022 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1023 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [f2c 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [f2e 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [f30 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [f2f 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [f31 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [f32 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f33 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [f34 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [f35 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f36 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [f37 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [f38 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f39 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f3a 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f3b 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f3c 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [f3d 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [f3e 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [f40 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [f3f 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [f41 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [f42 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [f43 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f44 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [f45 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [f46 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [f47 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [f48 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [f49 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [f4a 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [f4b 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [f4c 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [f4d 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f4e 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f4f 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [f51 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [f50 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f52 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f53 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [f54 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [f55 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [f56 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [f57 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [f58 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [f59 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [f5a 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f5b 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f5c 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [f5d 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [f5e 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [f5f 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [f60 06-12 02:14:56.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [f61 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [f62 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f63 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [f65 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f66 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [f64 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [f67 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [f68 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [f69 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 60 but got ts: inc_num:1528769651824440500 seq_num:59 +peer0.org2.example.com | [f6a 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f6b 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f6c 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [f6d 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f6e 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f6f 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f70 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [f71 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 61 but got ts: inc_num:1528769652088169500 seq_num:60 +peer0.org2.example.com | [f72 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f73 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [f74 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [102e 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [102f 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1030 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1031 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1032 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1033 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1034 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1035 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1036 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [1037 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1038 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1039 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [103a 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [103b 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [11b8 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [11b9 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [103c 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [103d 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1024 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1025 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [103e 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [103f 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1040 06-12 02:14:57.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [1041 06-12 02:14:57.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [1042 06-12 02:14:57.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [1043 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [11ba 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1044 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [1045 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [11bb 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [11bc 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1046 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [11bd 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11be 06-12 02:15:05.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [11bf 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11c0 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1047 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1048 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1049 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [104a 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [104b 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [104c 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [104d 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [104e 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [104f 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1050 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1051 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [f75 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1052 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1053 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1054 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1055 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1026 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1056 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [11c1 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1027 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1028 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1029 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1057 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [f76 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1059 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [f77 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [102a 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [c78 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [11c2 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [105a 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1058 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020?" signature:"0D\002 \"\003\036V\n\373\252\246\267X\205E_\217\254\003\360\351\006\036N\260\007\201\215\202L\261\235\346j\201\002 \013)\351\034\372\014\t?\357\313\355\336\246\255\336\235!\031\315\2744\3138\316\314K\325Le\022\002\317" secret_envelope: > +peer1.org2.example.com | [102b 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [c79 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [105b 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [105c 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [102c 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [c7a 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [11c3 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [105d 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [f78 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [102d 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [c7b 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [11c4 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [105e 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11c5 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [11c6 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [11c7 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [105f 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11c8 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f79 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [c7c 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [1060 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1061 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1062 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1063 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1064 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [11c9 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1065 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [c7d 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [102e 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f7a 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [11cb 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [c7e 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [102f 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [f7b 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [11ca 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org1.example.com | [1066 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [c7f 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [1030 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f7d 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11cc 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1067 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [c80 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [1031 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f7c 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [11cd 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1068 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [c81 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org2.example.com | [1032 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [f7e 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11ce 06-12 02:15:05.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1069 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [c82 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [1033 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f7f 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [11cf 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [106a 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [c83 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [1034 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [f80 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11d0 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [106c 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [c84 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [1036 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f81 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [106b 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11d1 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [c85 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [1035 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f82 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [106d 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [11d2 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +orderer.example.com | [c86 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [1037 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [f83 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [106e 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11d3 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [c87 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [1038 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f84 06-12 02:14:56.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [106f 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11d4 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [c88 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [1039 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [f85 06-12 02:14:56.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1070 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [11d5 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [c89 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [103a 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f86 06-12 02:14:56.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1071 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11d6 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [c8a 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [103b 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f87 06-12 02:14:56.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1072 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11d7 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [c8b 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [103c 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [f88 06-12 02:14:56.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1073 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [11d8 06-12 02:15:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [c8c 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [103d 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [f89 06-12 02:14:56.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1074 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [11d9 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [c8d 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [103e 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [f8a 06-12 02:14:56.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1075 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [11da 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [c8e 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org2.example.com | [103f 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [f8b 06-12 02:14:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1077 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11db 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [c8f 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [1040 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [f8c 06-12 02:14:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1078 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [11dc 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [c90 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [1041 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [f8d 06-12 02:14:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1076 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11dd 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [c91 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [1042 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [f8e 06-12 02:14:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1079 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [11de 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [c92 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [1043 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [f91 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [107a 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [11df 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [c93 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [1044 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [f8f 06-12 02:14:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [107b 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [11e0 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1045 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [c94 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [f92 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [107c 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [11e1 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1046 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [c95 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [f90 06-12 02:14:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [107d 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11e2 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1048 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [c96 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [f93 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [107e 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [11e3 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1047 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [c97 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org2.example.com | [f94 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [107f 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [11e4 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1049 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [c98 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +peer0.org2.example.com | [f95 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [1080 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [11e5 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [104a 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [c99 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [f96 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1081 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [11e6 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [104b 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [f97 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [1082 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [11e7 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [104c 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [f98 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1083 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [11e8 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [104d 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [104e 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [f99 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1084 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [11e9 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [104f 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [f9a 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1085 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [11ea 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1050 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer0.org2.example.com | [f9b 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1086 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [11eb 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1051 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [f9c 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1087 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [11ec 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1052 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | [f9d 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org1.example.com | [1088 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [11ed 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1053 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [f9e 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org1.example.com | [1089 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [11ee 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1054 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +peer0.org1.example.com | [108a 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11ef 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1055 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org1.example.com | [108b 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [f9f 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org2.example.com | [fa0 06-12 02:14:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1056 06-12 02:15:02.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +peer0.org1.example.com | [108c 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [fa1 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [11f0 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1057 06-12 02:15:02.59 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +orderer.example.com | FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +peer0.org1.example.com | [108d 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [fa2 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [11f1 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1058 06-12 02:15:02.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +orderer.example.com | kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +peer0.org1.example.com | [108e 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [fa3 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11f2 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1059 06-12 02:15:02.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +orderer.example.com | CSJWn+U1 +peer0.org1.example.com | [1090 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [fa4 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [11f3 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [105a 06-12 02:15:02.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | -----END CERTIFICATE----- +peer0.org1.example.com | [108f 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [fa5 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [11f4 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [105b 06-12 02:15:02.60 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +orderer.example.com | [c9a 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1091 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [fa6 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [11f5 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +peer1.org2.example.com | [105c 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1092 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [fa7 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [11f7 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer1.org2.example.com | [105d 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1093 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [fa8 06-12 02:14:56.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11f6 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +peer1.org2.example.com | [105e 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1094 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [fa9 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1095 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +peer0.org1.example.com | [1096 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11f8 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11f9 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +orderer.example.com | U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +peer0.org1.example.com | [1097 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [11fa 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +peer1.org2.example.com | [105f 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1098 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [faa 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [11fb 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1099 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [fab 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [11fc 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +peer1.org2.example.com | [1060 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [109a 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [fac 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11fd 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +peer1.org2.example.com | [1061 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [109b 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [fad 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [fae 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +peer1.org2.example.com | [1062 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [109c 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [109d 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [11fe 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [11ff 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +peer0.org1.example.com | [109e 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [faf 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1200 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | 5Y80QLeEvYkoMMMbcA== +peer1.org2.example.com | [1063 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [109f 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [fb0 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1201 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [1064 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [10a0 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [10a1 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1202 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +orderer.example.com | [c9b 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +peer1.org2.example.com | [1065 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [10a2 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1203 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [fb1 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1066 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [10a3 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1204 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [10a4 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1205 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1067 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1068 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1069 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [10a5 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1206 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [10a6 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [c9c 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +orderer.example.com | [c9d 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +orderer.example.com | [c9e 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [10a7 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [106a 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [106b 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [10a8 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [106c 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1207 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [10a9 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [c9f 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [fb2 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [106d 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1208 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10aa 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [ca0 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer0.org2.example.com | [fb3 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [106e 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1209 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [10ab 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | [ca1 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer0.org1.example.com | [10ac 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [ca2 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org2.example.com | [fb4 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [106f 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [120a 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10ae 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [ca3 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +orderer.example.com | [ca4 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP +peer0.org2.example.com | [fb5 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [120b 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [10af 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [ca5 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [fb6 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1070 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [120c 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10ad 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:" signature:"0E\002!\000\301o\352\300'\002\356\357\266\352 \264z35?1H\026\205s\014T*,\341ky\346a\001\\\002 +\335\333\204>\003\233-\314\354\276\317\307{\247R`\313\336\225\251\344L=\"\315\3657-c\322\005" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020@" signature:"0E\002!\000\275\344\364!d+Y\311\360\314\213\223\234\344\204\022\260\215\336\243\024\236\314\347#\356\361\274\001\33621\002 \026\032\260\355\227\263\375T\023\212\236R\250P\275\036\204\241d\360Z\220ye\203\032\001\300Y\037\n\016" > +orderer.example.com | MIICQzCCAemgAwIBAgIQGCm4/p9EqkmwbVtW/XJGKTAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [fb7 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1071 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [120d 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [10b0 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [fb8 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1072 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [120e 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [10b1 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [fb9 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1073 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [120f 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10b2 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzFaFw0yODAxMjgwNzQwMzFa +peer0.org2.example.com | [fba 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1074 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1210 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [10b4 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [fbb 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1211 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1075 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [10b5 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD +peer0.org2.example.com | [fbc 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1212 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1076 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [10b6 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org2.example.com | [fbd 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1213 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1078 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [10b7 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | 3PqQMEKlMela9BLoXcDOFEqvw7LGhC/imYoK8TmTuD3fc8zCMco+Vro5wdAySGBf +orderer.example.com | jJKIKGongOakmWvtfW0loqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer0.org2.example.com | [fbe 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1079 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [10b8 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQghdRukz+tFBdsZD0Hxhyl +peer0.org2.example.com | [fbf 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1214 06-12 02:15:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1215 06-12 02:15:07.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10b3 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | oY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDSAAwRQIhAJFgIoUVJe/5IPVG +peer0.org2.example.com | [fc0 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1216 06-12 02:15:07.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1077 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [10b9 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | f7pEMNyhmJ9OTJ5Pmg/dnjt47BGBAiBdmt6ea8+qgSxgqleGtyaDzQhr6TxyJs2H +peer0.org2.example.com | [fc1 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1217 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [107a 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [10ba 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | 73TfAIFqpw== +peer0.org2.example.com | [fc2 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1218 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [107b 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [10bb 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [fc3 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1219 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [107c 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org1.example.com | [10bc 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [ca6 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org2.example.com | [fc4 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [fc5 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [107d 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [10bd 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | MIICGDCCAb+gAwIBAgIQUxJMA+tdH0siY+rN7IewmTAKBggqhkjOPQQDAjBzMQsw +peer0.org2.example.com | [fc6 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [107f 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [121a 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer0.org1.example.com | [10be 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org2.example.com | [fc7 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1080 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [121b 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [10bf 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org2.example.com | [fc8 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [107e 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [121c 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [10c0 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzJaFw0yODAxMjgwNzQwMzJa +peer0.org2.example.com | [fc9 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1081 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [121d 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [10c1 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer0.org2.example.com | [fca 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1082 06-12 02:15:03.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [121e 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [10c2 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmczLmV4YW1wbGUuY29tMFkw +peer0.org2.example.com | [fcb 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1083 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [121f 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [10c3 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAELmPLYv1h6V32TMihBEBz/dGocBrXc+OK +peer0.org2.example.com | [fcc 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1084 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1220 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [10c4 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | AoZS+bAEFBgwQOU5/JwVt4QH3TNzn1GuHSIVtWjw1ChZCv5NHYg9ZaNNMEswDgYD +peer0.org2.example.com | [fcd 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1085 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1221 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [10c5 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAghdRukz+tFBds +peer0.org2.example.com | [fce 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1086 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1222 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [10c6 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | ZD0HxhyloY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDRwAwRAIgJnAoONQf +peer0.org2.example.com | [fcf 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1087 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1223 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [10c7 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | 57KM4I9TaFQTI/EG7TjdwLP5Pe1Qgj5MmGMCIEPVLGqnvMyVbdTuJvPYXJlIVthz +peer0.org2.example.com | [fd0 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1088 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1224 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [10c8 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | 6bM3NghPvYPoknIC +peer0.org2.example.com | [fd1 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1089 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1225 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [10ca 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [fd2 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [108a 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1226 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [10cb 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [ca7 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity +peer0.org2.example.com | [fd3 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [108b 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1227 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [10c9 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 271 bytes, Signature: 0 bytes +orderer.example.com | [ca8 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [108c 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1228 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [fd4 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10cc 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [ca9 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [1229 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [108d 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [fd5 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [10cd 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [caa 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [122a 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [108e 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [108f 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [10ce 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [cab 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [122b 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [10cf 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [fd6 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [fd7 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [fd8 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [10d0 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [10d1 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1090 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [fd9 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [10d2 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [cac 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [122c 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1091 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [fda 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [10d3 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +orderer.example.com | [cad 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [122d 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1093 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [fdb 06-12 02:14:57.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10d4 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [cae 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer1.org1.example.com | [122e 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1092 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [fdc 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [10d5 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [caf 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer1.org1.example.com | [122f 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1094 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [fdd 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10d6 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [cb0 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +peer1.org1.example.com | [1230 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1095 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [fde 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [cb1 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [10d7 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1231 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1096 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [fdf 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [10d8 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1232 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1097 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [fe0 06-12 02:14:57.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [10d9 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1233 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1098 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1099 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [10da 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [10db 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10dc 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1234 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [109a 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org2.example.com | [109b 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [10dd 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1235 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [109c 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [10de 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [fe1 06-12 02:14:57.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1236 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer1.org2.example.com | [109d 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10df 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [fe2 06-12 02:14:57.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1237 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [109e 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [10e0 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [fe3 06-12 02:14:57.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1238 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +orderer.example.com | ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +peer0.org1.example.com | [10e1 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [fe4 06-12 02:14:57.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1239 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [123a 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [10e2 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [123b 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [fe5 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [10e3 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +peer1.org1.example.com | [123c 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [109f 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [fe6 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [10e4 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +peer1.org1.example.com | [123d 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [10a0 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [fe7 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [10e5 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +peer1.org1.example.com | [123e 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [10a1 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [10a2 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [10e7 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [10a3 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [10e8 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [10a4 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [fe8 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +peer0.org1.example.com | [10e6 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [123f 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [10a5 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [fe9 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [fea 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [10e9 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1240 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [10a6 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [10ea 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +peer0.org2.example.com | [feb 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1241 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [10a7 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [10eb 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | QKuzs3j8kg== +peer0.org2.example.com | [fec 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1242 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [10a8 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [10ec 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [10a9 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | -----END CERTIFICATE----- +orderer.example.com | [cb2 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [10ed 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [10aa 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [10ee 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1243 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [10ab 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +orderer.example.com | MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +peer0.org1.example.com | [10ef 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 66 but got ts: inc_num:1528769652429776900 seq_num:65 +peer0.org2.example.com | [fed 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1244 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [10ac 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [10f0 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [fee 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [fef 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1245 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer0.org1.example.com | [10f1 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [ff0 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [ff1 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1246 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer0.org1.example.com | [10f2 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [ff2 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1247 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [10ad 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [10ae 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [10f3 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [ff3 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1248 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020I" signature:"0D\002 a\344\037p\215\211\224\343\227\232\327C\022\377|-\r2A\262D\315VO\330\264N\352B\037T\326\002 j\344\270[\035\331Z\324\311\001lQ\022\2232*\026\207\320Ka\370\230\332J\177MP\242:\232." > alive:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > alive:\275\302\320\\\265\352\014\203\002 Te?\260\347\0213vXjx\033\330\303\203\214q\247\361\"\024\374|=\034`V\234*\331\2546" > +peer1.org2.example.com | [10af 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [10f4 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [10f5 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | [1249 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [10f6 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [ff4 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [124a 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [10f7 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [ff5 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [10b0 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +orderer.example.com | r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +peer0.org1.example.com | [10f8 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [ff6 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [ff8 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [10b1 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [124b 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [10f9 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [ff9 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [10b2 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer1.org1.example.com | [124c 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [10fa 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [ff7 06-12 02:14:57.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020>" signature:"0D\002 Gw\200\324\"\277\334\247h\210[\3660\225\225\021\024\307\360\037\255&'\321da\270J\351\364\325\023\002 #\366>\360\337\304\321\360%v\r\307\r+i\004\006\264I\364pd\232\313\244\\\221\232\221+\305\372" > alive: alive:" signature:"0D\002!\000\377\253x\\\346\207\240\022F\376\235pl\r\365\371\344>\265\301&X\005\220!7IDjej\356\002\037~\327\026\233)'\225$O\0237\004\001%\260P\361q)\347\375\002\321\313e\274\006\244T\246\306" > alive: +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +peer1.org1.example.com | [124d 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [10fb 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [ffa 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +peer1.org2.example.com | [10b4 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [124e 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [10fc 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [ffb 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | 3BDFnYuSFYhOCexVkA== +peer1.org2.example.com | [10b5 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [124f 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [10fd 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [ffc 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [10b6 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1250 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [10fe 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [ffd 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [cb3 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +peer1.org2.example.com | [10b7 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1251 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [10ff 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [ffe 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [cb4 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [10b8 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1252 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1100 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [fff 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [cb5 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [10b9 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1253 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1101 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1000 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [cb6 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [10ba 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1254 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1102 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1001 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [cb7 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [10b3 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer1.org1.example.com | [1255 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1103 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1002 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [10bb 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [cb8 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [1256 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1104 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1003 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [10bc 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +orderer.example.com | [cb9 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [1257 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1105 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1004 06-12 02:14:57.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer1.org2.example.com | [10bd 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [cba 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [1258 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1106 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1005 06-12 02:14:57.58 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer1.org2.example.com | [10be 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [cbb 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [1259 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [1107 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1006 06-12 02:14:57.58 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer1.org2.example.com | [10bf 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [cbc 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [125a 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1108 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1007 06-12 02:14:57.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [10c0 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [cbd 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [1109 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1008 06-12 02:14:57.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [125b 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [10c1 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [cbe 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +peer0.org1.example.com | [110a 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1009 06-12 02:14:57.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [125c 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [10c2 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [cbf 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +peer0.org1.example.com | [110b 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [100a 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [125d 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [10c3 06-12 02:15:03.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +orderer.example.com | [cc0 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +peer0.org1.example.com | [110c 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [100b 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [125e 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [10c4 06-12 02:15:03.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [cc1 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [110d 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [100c 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [125f 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [10c5 06-12 02:15:03.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +peer0.org1.example.com | [110e 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [100d 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1260 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [10c6 06-12 02:15:03.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +peer0.org1.example.com | [110f 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [100e 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1261 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [10c7 06-12 02:15:03.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +peer0.org1.example.com | [1110 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [100f 06-12 02:14:58.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1010 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [10c8 06-12 02:15:03.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +peer0.org1.example.com | [1111 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1262 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1011 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [10c9 06-12 02:15:03.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +peer0.org1.example.com | [1112 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1263 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1012 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [10ca 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +peer0.org1.example.com | [1113 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1264 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1013 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [10cb 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +peer0.org1.example.com | [1114 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1265 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [1014 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [10cc 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +orderer.example.com | RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +peer0.org1.example.com | [1115 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1266 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1015 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [10cd 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +peer0.org1.example.com | [1116 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1267 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" secret_envelope: > alive: > +peer0.org2.example.com | [1016 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [10ce 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +peer0.org1.example.com | [1117 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1268 06-12 02:15:08.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [1017 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [10cf 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +peer0.org1.example.com | [1118 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1269 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [1018 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +peer1.org2.example.com | [10d0 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1119 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [126a 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1019 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [10d1 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [111a 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [126b 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [101a 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [cc2 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [10d2 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [111b 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [126c 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [101b 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +peer1.org2.example.com | [10d3 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [111c 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [126d 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [101c 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [10d4 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [111e 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [126e 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [101d 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer1.org2.example.com | [10d5 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [111d 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [126f 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [101e 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +peer1.org2.example.com | [10d6 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [111f 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1270 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [101f 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer1.org2.example.com | [10d7 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1120 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [1271 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1020 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer1.org2.example.com | [10d8 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1121 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1272 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1021 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +peer1.org2.example.com | [10d9 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1122 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1273 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1022 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [10da 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org1.example.com | [1123 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1274 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1023 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +peer1.org2.example.com | [10db 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1124 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [1275 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1024 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +peer1.org2.example.com | [10dc 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > alive:\021\362`\377d\306\206j\235\324\002s\236\330;5l\002 /\001K\376\253\345\332@\321\024\374\017\277\242\373Q\203\242h\025\252_ \034\363\020\335\334\342,\216?" > alive: alive: +peer0.org1.example.com | [1125 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [1276 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1025 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +peer1.org2.example.com | [10dd 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [1126 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1277 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1026 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [10de 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1278 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1127 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1027 06-12 02:14:58.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [cc3 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +peer1.org2.example.com | [10df 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1279 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1128 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1028 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [cc4 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) +peer1.org2.example.com | [10e0 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [127a 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1129 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1029 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [cc5 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps +peer1.org2.example.com | [10e1 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [127b 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [112a 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [102a 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [cc6 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP +peer1.org2.example.com | [10e2 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [127c 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [112b 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [102b 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +orderer.example.com | [cc7 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP +peer1.org2.example.com | [10e3 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [127d 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [112c 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [102c 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [cc8 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP +peer1.org2.example.com | [10e4 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes +peer1.org1.example.com | [127e 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [112d 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [102d 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [cc9 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +peer1.org2.example.com | [10e5 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes +peer1.org1.example.com | [127f 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [112e 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [102e 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [cca 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +peer1.org2.example.com | [10e6 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1280 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [112f 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [102f 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ccb 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +peer1.org2.example.com | [10e7 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1281 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1130 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +orderer.example.com | [ccc 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +peer0.org2.example.com | [1030 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [10e8 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1282 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [1131 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ccd 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +peer0.org2.example.com | [1031 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [10e9 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1283 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [1132 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [cce 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +peer0.org2.example.com | [1032 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [10ea 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1284 06-12 02:15:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1133 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [ccf 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +peer0.org2.example.com | [1033 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [10eb 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [1285 06-12 02:15:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [1134 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [cd0 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +peer0.org2.example.com | [1034 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [10ec 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1286 06-12 02:15:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1135 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1035 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [cd1 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +peer1.org2.example.com | [10ed 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [1287 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer0.org1.example.com | [1136 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1036 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [cd2 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [10ee 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1288 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1137 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1037 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [cd3 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [10ef 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1289 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1138 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1038 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [cd4 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +peer1.org2.example.com | [10f0 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [128a 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1139 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1039 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [cd5 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +peer1.org2.example.com | [10f1 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [128b 06-12 02:15:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer0.org1.example.com | [113a 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [103a 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | [cd6 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +peer1.org2.example.com | [10f2 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [128c 06-12 02:15:08.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer0.org1.example.com | [113b 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [103b 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [cd7 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +peer1.org2.example.com | [10f3 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [128d 06-12 02:15:08.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer0.org1.example.com | [113c 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [103d 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +orderer.example.com | [cd8 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +peer1.org2.example.com | [10f4 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [128e 06-12 02:15:08.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [113d 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [103e 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [cd9 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +peer1.org2.example.com | [10f5 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [128f 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [113e 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [103c 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +orderer.example.com | [cda 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +peer1.org2.example.com | [10f6 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer1.org1.example.com | [1290 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [113f 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org2.example.com | [103f 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [cdb 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +peer1.org2.example.com | [10f7 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org1.example.com | [1291 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1140 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1040 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [cdc 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [10f8 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1292 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [1141 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020B" signature:"0E\002!\000\252\375\356\216\271\355\347\000\217\266\027\215_\247)s\314q\036\201to\233\032\333\314u\325\314\n\200N\002 o\345\232k\360\321%\324\201\372\\\205\325>\260d\275\005\336\236Y\027\016p(\301<\313\225\241\245\366" > +peer0.org2.example.com | [1041 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +orderer.example.com | [cdd 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [10f9 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1293 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1142 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1042 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [cde 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [10fa 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1294 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1143 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1043 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [cdf 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [10fb 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1295 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1144 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1044 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ce0 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [10fc 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1296 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1145 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [ce1 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [1045 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [10fd 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1297 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1146 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ce2 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1046 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [10fe 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1298 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1147 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [ce3 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [1047 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [10ff 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1299 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1148 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [ce4 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [1048 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1100 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [129a 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1149 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ce5 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [1049 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1101 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [129b 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [114a 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [ce6 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [104a 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1102 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [129c 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [114b 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [ce7 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [104b 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1103 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [129d 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [114c 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [ce8 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [104c 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1104 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [129e 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [114d 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ce9 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [104d 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1105 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [129f 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [114e 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [cea 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [104e 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1106 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [12a0 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [114f 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ceb 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [104f 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [1107 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [12a1 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [1150 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [cec 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [1050 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1108 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12a2 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [ced 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [1151 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1051 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > alive:" signature:"0E\002!\000\301o\352\300'\002\356\357\266\352 \264z35?1H\026\205s\014T*,\341ky\346a\001\\\002 +\335\333\204>\003\233-\314\354\276\317\307{\247R`\313\336\225\251\344L=\"\315\3657-c\322\005" > alive: +peer1.org2.example.com | [1109 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | [cee 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [12a3 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > alive:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > alive: alive: +peer0.org1.example.com | [1152 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1052 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [110a 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [cef 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [12a4 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1153 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1053 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [110b 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | [cf0 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [12a5 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1154 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1054 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [110c 06-12 02:15:04.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12a6 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [cf1 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [1155 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1055 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [110d 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [12a7 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [cf2 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [1156 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1056 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [110e 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [12a8 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [cf3 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer0.org1.example.com | [1157 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1057 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [110f 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [12a9 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [cf4 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer0.org1.example.com | [1158 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1058 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org2.example.com | [1110 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [12aa 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [cf5 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [115a 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1059 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1111 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [12ab 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +orderer.example.com | [cf6 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org1.example.com | [1159 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [105a 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1112 06-12 02:15:04.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer1.org1.example.com | [12ac 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [cf7 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org1.example.com | [115b 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [105c 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1113 06-12 02:15:04.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12ad 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +orderer.example.com | [cf8 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [115c 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020C" signature:"0D\002 +p],]\223\351K[L\034\233t\231\365N\325[+Z\344\031\346z\315'\202\251\342%4\010\002 $\324\356\333\312\002z\304\213\177u\236\211O\324\013\217Q\365G\341ht;e\201\263|C^\367$" secret_envelope: > +peer0.org2.example.com | [105d 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1114 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [12ae 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [cf9 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [115d 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org2.example.com | [105e 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1115 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [12af 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +orderer.example.com | [cfa 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [115e 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [105b 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1116 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [12b1 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [cfb 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [115f 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [105f 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1117 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [12b0 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [cfc 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [1160 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1060 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1118 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12b2 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [cfd 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [1161 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1061 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1119 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [12b3 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [cfe 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [1162 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1062 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [111a 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [12b4 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [cff 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [1163 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1063 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [111b 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12b5 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d00 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [1164 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1064 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [111c 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [12b6 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d01 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [1165 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1065 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [111d 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [12b7 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [d02 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [1166 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1066 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [111e 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [12b8 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [d03 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [1067 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1167 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [111f 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [12b9 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [d04 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [1068 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1168 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1120 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [12ba 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d05 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [1069 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1169 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1121 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [d06 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org1.example.com | [12bb 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [106a 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [116a 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1122 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [d07 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [12bc 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [106b 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [116b 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1123 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [d08 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [12bd 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [106c 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [116c 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1124 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [d09 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [12be 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [106d 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [116d 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1125 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1126 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +orderer.example.com | [d0a 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [106e 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [116e 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1127 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [d0b 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [12bf 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [106f 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [116f 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d0c 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +peer1.org2.example.com | [1128 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > alive: +peer1.org1.example.com | [12c0 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1070 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1171 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d0d 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer1.org2.example.com | [1129 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [12c1 06-12 02:15:09.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1071 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1170 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d0e 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer1.org2.example.com | [112a 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [12c2 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1072 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1172 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d0f 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +peer1.org2.example.com | [112b 06-12 02:15:06.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [12c3 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1073 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1173 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d10 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP +peer1.org2.example.com | [112c 06-12 02:15:06.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [12c4 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1074 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1174 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [112d 06-12 02:15:06.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [d11 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +peer1.org1.example.com | [12c5 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1076 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1175 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [112e 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [d12 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +peer1.org1.example.com | [12c6 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1075 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1176 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [112f 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d13 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [12c7 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1077 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [1178 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1130 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d14 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [12c8 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1078 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [1177 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1132 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d15 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org2.example.com | [1079 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12c9 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [117a 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1131 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d16 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +peer0.org2.example.com | [107a 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [12ca 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1179 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1133 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d17 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +peer0.org2.example.com | [107b 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [12cb 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [117b 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1134 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d18 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +peer0.org2.example.com | [107c 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [12cc 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [117c 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1135 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d19 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +peer0.org2.example.com | [107d 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [12cd 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [117d 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1136 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [d1a 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +peer0.org2.example.com | [107e 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [12ce 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [117e 06-12 02:15:02.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [1137 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d1b 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org2.example.com | [107f 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [12cf 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [117f 06-12 02:15:02.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1138 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d1c 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +peer0.org2.example.com | [1081 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [12d0 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1180 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1139 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d1d 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer0.org2.example.com | [1080 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [12d1 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [113a 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1181 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [d1e 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [12d2 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1082 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [113b 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1182 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d1f 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [12d3 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [1083 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [113c 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1184 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d20 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...3EAE0683E6C4F42A8DC94A0510785455 +peer1.org1.example.com | [12d4 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1084 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [113d 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1185 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d21 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6C752E10E8EA2BB938136FCA88E6B24CE0C1FCBDE68080527481B862EC90F68B +peer1.org1.example.com | [12d5 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1085 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [113e 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1186 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d22 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 3 to 4, setting lastConfigBlockNum from 2 to 7 +peer1.org1.example.com | [12d6 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1086 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1183 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [113f 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [d23 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [12d7 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [1087 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1187 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1140 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [d24 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 7 +peer1.org1.example.com | [12d8 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1088 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1188 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1141 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [d25 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +peer1.org1.example.com | [12d9 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1089 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1189 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer1.org2.example.com | [1142 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [d26 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...3EAE0683E6C4F42A8DC94A0510785455 +peer1.org1.example.com | [12da 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [108a 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [118a 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer1.org2.example.com | [1143 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [d27 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E132C949CAAE7CBAFFE5891731010BE1585DC73C7D8FFC7079F363D8EC1A4DC3 +peer1.org1.example.com | [12db 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [108c 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [118b 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer1.org2.example.com | [1144 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d28 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x4d, 0xcf, 0x4e, 0x7c, 0xc2, 0x5f, 0x80, 0xf, 0x3f, 0x60, 0x2d, 0x1b, 0xe9, 0x83, 0x9f, 0x18, 0x1d, 0x9a, 0x52, 0xc8, 0x19, 0x75, 0x20, 0xdf, 0xd0, 0xfb, 0xd, 0xd6, 0xf3, 0x8d, 0xc6, 0x3b} txOffsets= +peer1.org1.example.com | [12dc 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [108b 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [118c 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1145 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | txId= locPointer=offset=71, bytesLength=19393 +peer1.org1.example.com | [12dd 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [108d 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [118d 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [1146 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | ] +peer1.org1.example.com | [12de 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [108e 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [118e 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1148 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d29 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81564], isChainEmpty=[false], lastBlockNumber=[7] +peer1.org1.example.com | [12e0 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [108f 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [118f 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1149 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d2b 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org1.example.com | [12df 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1090 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1190 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1147 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d2c 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +peer1.org1.example.com | [12e1 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1091 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1191 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [114a 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [d2d 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +peer1.org1.example.com | [12e2 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1092 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1192 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [114b 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d2e 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +peer1.org1.example.com | [12e3 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 77 but got ts: inc_num:1528769652088169500 seq_num:75 +peer0.org2.example.com | [1093 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1193 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [114c 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d2f 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org1.example.com | [12e4 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1094 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1194 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [114d 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [d30 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [12e5 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1095 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1195 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [114e 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d31 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org1.example.com | [12e6 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1096 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1196 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [114f 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [12e7 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [d32 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [1097 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1197 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1150 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12e8 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d33 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org2.example.com | [1098 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1151 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1198 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [12e9 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [d34 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer0.org2.example.com | [1099 06-12 02:15:00.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1152 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1199 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [12ea 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d35 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org2.example.com | [109a 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 66 but got ts: inc_num:1528769651824440500 seq_num:65 +peer1.org2.example.com | [1153 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [119a 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [12eb 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [d36 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +peer0.org2.example.com | [109b 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1154 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [119b 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [12ec 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d37 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +peer1.org2.example.com | [1155 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [109c 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [119c 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [12ed 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [d38 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +peer1.org2.example.com | [1156 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [109d 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [119d 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [12ee 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [d39 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org2.example.com | [1157 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [109e 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [119f 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [12ef 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw +peer1.org2.example.com | [1158 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [109f 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [119e 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [12f0 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org2.example.com | [1159 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [10a0 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [11a0 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12f1 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org2.example.com | [115a 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10a1 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [11a2 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [12f2 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +peer1.org2.example.com | [115b 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [10a2 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [11a1 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [12f3 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org2.example.com | [115c 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [10a3 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [11a4 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [12f4 06-12 02:15:09.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw +peer1.org2.example.com | [115d 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [10a4 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [11a3 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [12f5 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj +peer1.org2.example.com | [115e 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [10a6 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [11a5 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [12f6 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | SPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD +peer1.org2.example.com | [115f 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [10a5 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [11a6 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [12f7 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue +peer1.org2.example.com | [1161 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [10a7 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [11a7 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [12f8 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | 9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l +peer1.org2.example.com | [1162 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [10a8 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [11a8 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [12f9 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 77 but got ts: inc_num:1528769651824440500 seq_num:76 +orderer.example.com | XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S +peer1.org2.example.com | [1163 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [10a9 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 66 but got ts: inc_num:1528769652088169500 seq_num:65 +peer0.org1.example.com | [11a9 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [12fa 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | Qh80aTnAegSTSqmA1w== +peer1.org2.example.com | [1160 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [10aa 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [11aa 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [12fb 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [1164 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [10ab 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [11ab 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d3a 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1528769769945654600 evaluation starts +peer1.org1.example.com | [12fc 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1165 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [10ac 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [11ac 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d3b 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [12fd 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 77 but got ts: inc_num:1528769652088169500 seq_num:76 +peer1.org2.example.com | [1166 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [10ad 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 66 but got ts: inc_num:1528769651824440500 seq_num:64 +peer0.org1.example.com | [11ad 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d3c 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [12fe 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1167 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [10ae 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [11ae 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d3d 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org2MSP) +peer1.org1.example.com | [12ff 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1168 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10af 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [11af 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [d3e 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal evaluation fails +peer1.org1.example.com | [1300 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1169 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [10b0 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [11b0 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d40 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org1.example.com | [1301 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [116a 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [10b1 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [11b1 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d41 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1302 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [116b 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [10b2 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [d42 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer0.org1.example.com | [11b2 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1303 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [116c 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [10b3 06-12 02:15:00.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d43 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [11b3 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1304 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [116d 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [10b4 06-12 02:15:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [11b4 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [d44 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer1.org1.example.com | [1305 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [116e 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [10b5 06-12 02:15:00.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [11b5 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [d45 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org1.example.com | [1306 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [116f 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [10b6 06-12 02:15:00.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [11b6 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [d46 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer1.org1.example.com | [1307 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1170 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10b7 06-12 02:15:00.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [11b8 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw +peer1.org1.example.com | [1308 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1171 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [10b8 06-12 02:15:00.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [11b9 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer1.org1.example.com | [1309 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [10b9 06-12 02:15:00.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1172 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [11b7 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +peer1.org1.example.com | [130a 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [10ba 06-12 02:15:00.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1173 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [11bb 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +peer1.org1.example.com | [130b 06-12 02:15:09.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [10bb 06-12 02:15:00.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1174 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [11bc 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +peer1.org1.example.com | [130c 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [10bc 06-12 02:15:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1175 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [11ba 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +peer1.org1.example.com | [130d 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [10bd 06-12 02:15:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1176 06-12 02:15:07.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [11bd 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ +peer1.org1.example.com | [130e 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10be 06-12 02:15:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1177 06-12 02:15:07.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [11be 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | J62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD +peer1.org1.example.com | [130f 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [10bf 06-12 02:15:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1178 06-12 02:15:07.60 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer0.org1.example.com | [11bf 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +peer1.org1.example.com | [1310 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [10c0 06-12 02:15:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1179 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [11c0 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy +peer1.org1.example.com | [1311 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [10c1 06-12 02:15:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [117a 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [11c1 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX +peer1.org1.example.com | [1312 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [10c2 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [117b 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [11c2 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | fv5YS9/ysd8jy4a+pg== +peer1.org1.example.com | [1313 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [10c3 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [117c 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [11c3 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | -----END CERTIFICATE----- +peer0.org2.example.com | [10c4 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [117d 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [11c4 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d47 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420151698 gate 1528769769950127700 evaluation starts +peer0.org2.example.com | [10c5 06-12 02:15:00.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1314 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [117e 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [11c5 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d48 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151698 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [10c6 06-12 02:15:00.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1315 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [117f 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [11c6 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d49 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151698 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [10c7 06-12 02:15:00.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1316 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1180 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [11c7 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d3f 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1528769769945654600 evaluation fails +peer0.org2.example.com | [10c8 06-12 02:15:00.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [1317 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1181 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [11c8 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d4b 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151698 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) +peer0.org2.example.com | [10c9 06-12 02:15:00.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1318 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1182 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +orderer.example.com | [d4a 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [11c9 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [10ca 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [1319 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1183 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [d4c 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151698 principal evaluation fails +peer0.org1.example.com | [11ca 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10cb 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [131a 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1184 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +orderer.example.com | [d4e 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420151698 gate 1528769769950127700 evaluation fails +peer0.org1.example.com | [11cb 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [10cc 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [131b 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1185 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [d4d 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [11cc 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [10cd 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [131c 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1186 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +orderer.example.com | [d50 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org1.example.com | [11cd 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [10ce 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [131d 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d4f 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [1187 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [11ce 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [10cf 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [131e 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d51 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [1188 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [11cf 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [10d0 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [131f 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d52 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org2.example.com | [1189 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [11d0 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [10d1 06-12 02:15:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1320 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [118a 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [d54 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1528769769952427200 evaluation starts +peer0.org1.example.com | [11d1 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10d2 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1321 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [118b 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d55 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [11d2 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [10d3 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1322 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [118c 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [d2a 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 +peer0.org1.example.com | [11d3 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [10d4 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1323 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [118d 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [d56 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [11d4 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10d5 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1324 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [118e 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [d57 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +peer0.org1.example.com | [11d5 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [10d6 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1325 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [118f 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d53 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201516b0 gate 1528769769952368700 evaluation starts +peer0.org1.example.com | [11d6 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [10d7 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1326 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1190 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [d59 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516b0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [11d7 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [10d8 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [1327 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1191 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [d58 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal evaluation fails +peer0.org1.example.com | [11d8 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [10d9 06-12 02:15:00.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1328 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1192 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d5a 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516b0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [11d9 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [10da 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1329 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1193 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [d5b 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1528769769952427200 evaluation fails +peer0.org1.example.com | [11da 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [10db 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [132a 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1194 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [d5d 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [11db 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [10dc 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [132b 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1195 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [d5c 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +peer0.org1.example.com | [11dc 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [10dd 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [132c 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1196 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d5f 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org1MSP validating identity +peer0.org1.example.com | [11dd 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [10de 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [132e 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1197 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [d5e 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [11de 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [10df 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [132f 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1198 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [11df 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | [d60 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer0.org2.example.com | [10e0 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1330 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1199 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [11e0 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [d61 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201516c0 gate 1528769769956402400 evaluation starts +peer0.org2.example.com | [10e1 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [132d 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [119a 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [d62 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516c0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [11e1 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:S\205\025Z0\227<\356u\020I\315" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020E" signature:"0E\002!\000\311\244&\252Q\364\364d\003G\260\005;j\036\300\377C)\034\244\2637\301\223\331k&\343Rq'\002 I\252nd\356\277~Ua>C\177\266>6~\221\254+yr\266\021\345''\326\355Wp\027\234" > +peer0.org2.example.com | [10e2 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1331 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [119b 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [d63 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516c0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [11e2 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [10e3 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1332 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [119c 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [d64 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +peer0.org1.example.com | [11e3 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [10e4 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1333 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [119d 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [d65 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org2MSP validating identity +peer0.org1.example.com | [11e4 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [10e5 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1334 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [119e 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [d66 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516b0 principal matched by identity 0 +peer0.org1.example.com | [11e5 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [10e6 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1335 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [119f 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [d67 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 80 57 26 08 17 03 a9 f5 21 75 e8 43 d6 a1 22 73 |.W&.....!u.C.."s| +peer0.org1.example.com | [11e6 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org2.example.com | [10e7 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1336 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [11a0 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000010 28 9a fd 30 3d c1 a2 a3 88 c2 94 62 7e fb 7f a4 |(..0=......b~...| +peer0.org1.example.com | [11e7 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [10e8 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1337 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [11a1 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [d68 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f2 08 58 5b 35 1c d2 cd 6f af af |0E.!...X[5...o..| +peer0.org1.example.com | [11e8 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [10e9 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1338 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000010 5a fc 3b fa a1 7b 86 db 71 45 7c 46 a1 05 c1 51 |Z.;..{..qE|F...Q| +peer1.org2.example.com | [11a2 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [11e9 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [10ea 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [1339 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000020 8b f3 4c e7 46 02 20 0f 9e 5a 69 0f 1f cb 7f 36 |..L.F. ..Zi....6| +peer1.org2.example.com | [11a3 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [11ea 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [10eb 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [133a 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | 00000030 2f fa d2 b2 52 1f e0 af d4 45 93 1f 08 6c e8 c3 |/...R....E...l..| +peer1.org2.example.com | [11a4 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [11eb 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [10ec 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\263\275uUL24*\031\361u\024/\340^\230\236\305\215\222\002 2\334m\261\211\006\377\345N\344\226\0101oc\033\177\333\373o\336\245\177j\226\201\024\306\352\377\260\245" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020B" signature:"0E\002!\000\252\375\356\216\271\355\347\000\217\266\027\215_\247)s\314q\036\201to\233\032\333\314u\325\314\n\200N\002 o\345\232k\360\321%\324\201\372\\\205\325>\260d\275\005\336\236Y\027\016p(\301<\313\225\241\245\366" > alive: alive: +peer1.org1.example.com | [133b 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000040 ba be d2 f5 4d 4e 23 |....MN#| +peer1.org2.example.com | [11a5 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [11ec 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [10ed 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [133c 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d69 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516c0 principal matched by identity 0 +peer1.org2.example.com | [11a6 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [11ed 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [10ee 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [133d 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [d6a 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 b2 ff e0 92 a3 56 1b 7e fe 19 1c 4a 85 be 73 20 |.....V.~...J..s | +peer1.org2.example.com | [11a7 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [11ee 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [10ef 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [133e 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | 00000010 3e 07 d0 a5 9f e4 8d ed 6c 76 35 82 a4 59 62 53 |>.......lv5..YbS| +peer1.org2.example.com | [11a8 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [11ef 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [10f0 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [133f 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [d6c 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b ef 70 d9 ec a2 ef 4f df 9b 81 35 |0D. ..p....O...5| +peer1.org2.example.com | [11a9 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [11f0 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [10f1 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1340 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000010 3f fe 61 d6 b1 ab 78 63 df 05 e5 3e 3a 62 76 31 |?.a...xc...>:bv1| +peer1.org2.example.com | [11aa 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [11f1 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [10f2 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1341 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | 00000020 36 d4 62 ef 02 20 5d 21 a0 73 43 00 3a cc 87 e8 |6.b.. ]!.sC.:...| +peer1.org2.example.com | [11ab 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [11f2 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [10f3 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1342 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000030 1d 4c fb 52 53 ad 62 43 f1 24 2d 32 5c 3c b9 be |.L.RS.bC.$-2\<..| +peer1.org2.example.com | [11ac 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org1.example.com | [11f3 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10f4 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1343 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | 00000040 d0 60 fa 35 3a 8e |.`.5:.| +peer1.org2.example.com | [11ad 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [11f4 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [10f5 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1345 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +orderer.example.com | [d6b 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516b0 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [11af 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10f6 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [11f5 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1346 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +orderer.example.com | [d6d 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201516b0 gate 1528769769952368700 evaluation succeeds +peer1.org2.example.com | [11b0 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [10f7 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [11f6 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [d6e 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [1347 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org2.example.com | [11b1 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [10f8 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [11f7 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1348 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [d70 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516c0 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [11b2 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [10f9 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [11f8 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1349 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [d6f 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [11b3 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10fa 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [11f9 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [134a 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d72 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +peer1.org2.example.com | [11b4 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [10fb 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [11fa 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1344 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d71 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201516c0 gate 1528769769956402400 evaluation succeeds +peer1.org2.example.com | [11b5 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [10fc 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [11fb 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [134b 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d74 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [11b6 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [10fd 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [11fc 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [134c 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [d73 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org2.example.com | [11b7 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [11fd 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [10fe 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [134e 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d76 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [11b8 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [11ff 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [1100 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [134f 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [d75 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [11b9 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [11fe 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [10ff 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [134d 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d77 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org2.example.com | [11ba 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1200 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1101 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1350 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +orderer.example.com | [d78 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +peer1.org2.example.com | [11bb 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [1201 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1102 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1351 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +orderer.example.com | [d7a 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org2.example.com | [11bc 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1202 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1103 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1352 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d79 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +peer1.org2.example.com | [11bd 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1203 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1104 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1353 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +orderer.example.com | [d7b 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [11be 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1204 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [1105 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1354 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d7c 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org2.example.com | [11bf 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1205 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [1106 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1355 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d7d 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +peer1.org2.example.com | [11c0 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1206 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1107 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1356 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [d7e 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [11c1 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1207 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [1108 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1357 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d7f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [11c2 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [1208 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1109 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1358 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d80 06-12 02:16:12.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org2.example.com | [11c3 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1209 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [110a 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1359 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [d81 06-12 02:16:12.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35908 +peer1.org2.example.com | [11c4 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [120a 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [110b 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [135a 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [d82 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35908 +peer1.org2.example.com | [11c5 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [120b 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [110c 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [135b 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d83 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org2.example.com | [11c6 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [120c 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [110d 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [135c 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [d84 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [11c7 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [120d 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [110e 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [135d 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d85 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org2.example.com | [11c8 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [120e 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [110f 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [135e 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [d86 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [11c9 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [120f 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1110 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [135f 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [d87 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer1.org2.example.com | [11ca 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1210 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1111 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1360 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [d88 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +peer1.org2.example.com | [11cb 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1211 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1112 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1361 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [11cc 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [d89 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +peer0.org1.example.com | [1212 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1113 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1362 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [11cd 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +peer0.org1.example.com | [1213 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1114 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1363 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [11ce 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +peer0.org1.example.com | [1214 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1115 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1364 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [11cf 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +peer0.org1.example.com | [1215 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1366 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [1116 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [11d0 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +peer0.org1.example.com | [1216 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org1.example.com | [1367 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1117 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [11d1 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +peer0.org1.example.com | [1217 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1368 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020N" signature:"0D\002 M\347\232O\025\316z\300]\202&w/\314,Ld\032\310\214\217m\014\267\226\355\3571\250lpe\002 \345\230,\243\253\350\002\007V\372\376\336\313\375=\322\226Q\224O\221\211\354\270\311r\nP\212v\202" > alive: alive: +peer0.org2.example.com | [1118 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [11d2 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +peer0.org1.example.com | [1218 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1369 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1119 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [11d3 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +peer0.org1.example.com | [1219 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [136a 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [111a 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +peer1.org2.example.com | [11d4 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [121a 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1365 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [111b 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +peer1.org2.example.com | [11d5 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [121b 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [136b 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [111c 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +peer1.org2.example.com | [11d6 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [121c 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [136c 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [111d 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +peer1.org2.example.com | [11d7 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [121d 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [136d 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [111e 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | -----END CERTIFICATE----- +peer1.org2.example.com | [11d8 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [121e 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [136e 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [111f 06-12 02:15:02.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [d8a 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150100 gate 1528769772062494100 evaluation starts +peer1.org2.example.com | [11d9 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [121f 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [136f 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1121 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [d8b 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150100 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [11da 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1220 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1370 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1122 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [d8c 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150100 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [11db 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1221 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1371 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1123 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d8d 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150100 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer1.org2.example.com | [11ae 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > alive: +peer0.org1.example.com | [1222 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1120 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1372 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +orderer.example.com | [d8e 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150100 principal evaluation fails +peer1.org2.example.com | [11dc 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1223 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1124 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1373 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d8f 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150100 gate 1528769772062494100 evaluation fails +peer1.org2.example.com | [11dd 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1224 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1126 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1374 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +orderer.example.com | [d90 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [1225 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [11de 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1125 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1375 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +orderer.example.com | [d91 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [1226 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [11df 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1129 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1376 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [d92 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org1.example.com | [1228 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [11e0 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [112a 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1377 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +orderer.example.com | [d93 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150158 gate 1528769772063733000 evaluation starts +peer0.org1.example.com | [1227 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [11e1 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1128 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1378 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | [d94 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1229 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [11e2 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1127 06-12 02:15:02.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1379 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [122a 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [d95 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [11e3 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [112b 06-12 02:15:02.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [137a 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [122b 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [d96 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer1.org2.example.com | [11e4 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [112c 06-12 02:15:02.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [137b 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [122c 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | [d97 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 principal evaluation fails +peer1.org2.example.com | [11e5 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [112d 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [137c 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [122d 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [d98 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150158 gate 1528769772063733000 evaluation fails +peer1.org2.example.com | [11e6 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [112e 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [137d 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [122e 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | [d99 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [11e7 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1130 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [137e 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [122f 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [d9a 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [11e8 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1132 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [137f 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1230 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [d9b 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer1.org2.example.com | [11e9 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [112f 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1380 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1231 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [d9c 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769772065529100 evaluation starts +peer1.org2.example.com | [11ea 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1133 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1381 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org1.example.com | [1232 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [d9d 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [11eb 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1131 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1382 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1233 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [d9e 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [11ec 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1134 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1234 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1383 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" secret_envelope: > alive:\177Ng\325y 6~\241D\236\373\242\257\224\316\251\215" secret_envelope: > +orderer.example.com | [d9f 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer1.org2.example.com | [11ed 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1135 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1235 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1384 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +orderer.example.com | [da0 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 principal evaluation fails +peer1.org2.example.com | [11ee 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1136 06-12 02:15:02.59 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer1.org1.example.com | [1385 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1236 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [da1 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769772065529100 evaluation fails +peer1.org2.example.com | [11ef 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1137 06-12 02:15:02.59 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer1.org1.example.com | [1386 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1237 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [da2 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [11f0 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1138 06-12 02:15:02.59 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer1.org1.example.com | [1387 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1238 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [da3 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [11f1 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1139 06-12 02:15:02.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [113a 06-12 02:15:02.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [1388 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [da4 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer1.org2.example.com | [11f2 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [113b 06-12 02:15:02.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1389 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [1239 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [da5 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer1.org2.example.com | [11f3 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [113c 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [138a 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [123a 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [da6 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org2.example.com | [11f4 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [113d 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [138b 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes +peer0.org1.example.com | [123b 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [da7 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org2.example.com | [113e 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [11f5 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [138c 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes +peer0.org1.example.com | [123c 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [da8 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [113f 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [11f6 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [138d 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [123d 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [da9 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org2.example.com | [1140 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [11f7 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [138e 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [123e 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [daa 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150358 gate 1528769772067584000 evaluation starts +peer0.org2.example.com | [1141 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [11f8 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [138f 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [123f 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [dab 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [1142 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [11f9 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1390 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4241ad5e0 env 0xc423c08000 txn 0 +peer0.org1.example.com | [1240 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [dac 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [1143 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [11fa 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1391 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423c08000 +peer0.org1.example.com | [1241 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [dad 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +peer0.org2.example.com | [1144 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [11fb 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1392 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +peer0.org1.example.com | [1242 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 70 but got ts: inc_num:1528769651824440500 seq_num:69 +orderer.example.com | [dae 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +peer0.org2.example.com | [1145 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [11fc 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1393 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1243 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [daf 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 principal matched by identity 0 +peer0.org2.example.com | [1147 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [11fd 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1394 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [1244 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [db0 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 77 31 f8 28 ed 61 80 0d fc af e4 29 40 b9 ba 1c |w1.(.a.....)@...| +peer1.org2.example.com | [11fe 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1146 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1395 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org1.example.com | [1245 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | 00000010 b4 12 80 ed 1e ba 42 58 a7 2e 79 9e 82 10 11 3a |......BX..y....:| +peer1.org2.example.com | [11ff 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1148 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1396 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [1246 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [db1 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d1 50 c2 22 b7 56 0c b5 95 86 e4 |0E.!..P.".V.....| +peer1.org2.example.com | [1200 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1149 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1397 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [1247 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000010 ad 41 85 a6 b7 b3 2b 6e f1 df d4 f9 d4 ee 0d 4a |.A....+n.......J| +peer1.org2.example.com | [1201 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [114a 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1398 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4228e6000, header channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +peer0.org1.example.com | [1248 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000020 9e 91 e5 dd 41 02 20 2b 20 25 fe 7d c1 70 aa c9 |....A. + %.}.p..| +peer1.org2.example.com | [1202 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [114b 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1399 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [1249 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | 00000030 dc 26 9e 35 2d 06 63 21 41 8b 4d db 23 b8 08 96 |.&.5-.c!A.M.#...| +peer1.org2.example.com | [1203 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [114c 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [139a 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [124a 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | 00000040 b9 4e 5e 19 81 d4 8b |.N^....| +peer1.org2.example.com | [1204 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [114d 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [139b 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [124b 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [db2 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [1205 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [114e 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [124c 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [db3 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150358 gate 1528769772067584000 evaluation succeeds +peer1.org1.example.com | [139c 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org2.example.com | [1206 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org2.example.com | [114f 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [124d 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [db4 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [139d 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +peer1.org2.example.com | [1207 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1150 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [124e 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [db5 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [139e 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [1208 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [1151 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [124f 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [db6 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org1.example.com | [139f 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc422184000 +peer1.org2.example.com | [1209 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1153 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1250 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [db7 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [13a0 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [120a 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [1152 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1251 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | [db8 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org1.example.com | [13a1 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1154 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [120b 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1252 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [13a2 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [db9 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org2.example.com | [1155 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [120c 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1253 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [13a3 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [dba 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c7f760) start: > stop: > from 172.18.0.7:35908 +peer0.org2.example.com | [1156 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [120d 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [1254 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [13a4 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin +orderer.example.com | [dbb 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org2.example.com | [1158 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [120e 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1255 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [13a5 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [dbc 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +peer0.org2.example.com | [1157 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [120f 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1256 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [13a6 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [dbd 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +peer0.org2.example.com | [1159 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1210 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1257 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [13a8 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [dbe 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +peer0.org2.example.com | [115a 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1211 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1258 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [13a7 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [dbf 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +peer0.org2.example.com | [115b 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1212 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1259 06-12 02:15:04.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [13aa 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [dc0 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c7f760) for 172.18.0.7:35908 +peer0.org2.example.com | [115c 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1213 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [125a 06-12 02:15:04.21 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [13ab 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [dc1 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35908 for (0xc420c7f760) +peer0.org2.example.com | [115d 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [1214 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [125b 06-12 02:15:04.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [13ac 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [dc2 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35908 +peer0.org2.example.com | [115e 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1215 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [125c 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [13a9 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [dc3 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35908 +peer0.org2.example.com | [115f 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1216 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\241\324A[\002 23\005\t\321\376\322V\366\326\026\333\022\031\032g\357\034\366a!\336\3676t\325\017\"\317^L\323" secret_envelope: > +peer0.org1.example.com | [125d 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [13ad 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [dc4 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org2.example.com | [1160 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1217 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org1.example.com | [125e 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org1.example.com | [13ae 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [dc5 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org2.example.com | [1161 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1218 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [125f 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [13af 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +orderer.example.com | [dc6 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org2.example.com | [1162 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1219 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1260 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [13b0 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [dc7 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org2.example.com | [1163 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [121a 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1261 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [13b1 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [a50d6e1f-1358-4c9f-a80c-ecda7696f4ae] +orderer.example.com | [dc8 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35908: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [1164 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [121b 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1262 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [13b2 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [dc9 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org2.example.com | [1165 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [121c 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1263 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [13b3 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [a50d6e1f-1358-4c9f-a80c-ecda7696f4ae] +orderer.example.com | [dca 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org2.example.com | [1166 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [121d 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [1264 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [13b4 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +orderer.example.com | [dcb 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35910 +peer0.org2.example.com | [1167 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [121e 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1265 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [dcc 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35910 +peer1.org1.example.com | [13b6 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer0.org2.example.com | [1168 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [121f 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1266 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [dcd 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org1.example.com | [13b7 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated +peer0.org2.example.com | [1169 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1220 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1267 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [dce 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [13b8 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 appears to be invalid: Chaincode exp02 is already instantiated +peer0.org2.example.com | [116a 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1268 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1221 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [dcf 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org1.example.com | [13b9 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc422184000 +peer0.org2.example.com | [116b 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1269 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1222 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [dd0 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [13b5 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org2.example.com | [116c 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [126a 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1223 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [dd1 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer1.org1.example.com | [13bb 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [116d 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [126b 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1224 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [dd2 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1528769772208211500 evaluation starts +peer1.org1.example.com | [13bc 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [116e 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\021\362`\377d\306\206j\235\324\002s\236\330;5l\002 /\001K\376\253\345\332@\321\024\374\017\277\242\373Q\203\242h\025\252_ \034\363\020\335\334\342,\216?" secret_envelope: > +peer1.org2.example.com | [1225 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [126c 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [dd3 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [13bd 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [116f 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer1.org2.example.com | [1226 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [126d 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [dd4 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [13be 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1170 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1227 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [126e 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [dd5 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer1.org1.example.com | [13ba 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 returned error: Chaincode exp02 is already instantiated +peer0.org2.example.com | [1171 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1228 06-12 02:15:08.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [126f 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [dd6 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 principal evaluation fails +peer1.org1.example.com | [13c0 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1172 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1229 06-12 02:15:08.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [1270 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [dd7 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1528769772208211500 evaluation fails +peer1.org1.example.com | [13c1 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +peer1.org2.example.com | [122a 06-12 02:15:08.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1173 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [1271 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [dd8 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer1.org1.example.com | [13c2 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [122b 06-12 02:15:08.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org2.example.com | [1174 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1272 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [dd9 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer1.org1.example.com | [13c3 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +peer1.org2.example.com | [122c 06-12 02:15:08.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1175 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1273 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [dda 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org1.example.com | [13c4 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [122d 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer0.org2.example.com | [1176 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1274 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [ddb 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1528769772209854600 evaluation starts +peer1.org1.example.com | [13c5 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +peer1.org2.example.com | [122e 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1177 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1275 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [ddc 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [13c6 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [122f 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1178 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1276 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [ddd 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [13c7 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer1.org2.example.com | [1230 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1179 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1277 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [dde 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer1.org1.example.com | [13c8 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [1231 06-12 02:15:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org2.example.com | [117a 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1278 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +orderer.example.com | [ddf 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails +peer1.org1.example.com | [13c9 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [1232 06-12 02:15:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org2.example.com | [117b 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1279 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [de0 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1528769772209854600 evaluation fails +peer1.org1.example.com | [13ca 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [1233 06-12 02:15:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [117c 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [127a 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020G" signature:"0E\002!\000\272\362?\316\274\266\326\2551,<1)\311-\033h\265\275\235%\320\202\207\241q\245\025\0161]\337\002 +\351,\304\356\274\234\213\253\354s4f\304\341zG\000\2607\303f\244\312\177`\010\216|q\365\206" > +orderer.example.com | [de1 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [13cb 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +peer1.org2.example.com | [1234 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [117d 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [127b 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +orderer.example.com | [de2 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [13bf 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4241ad5e0 env 0xc423c08000 txn 0 +peer1.org2.example.com | [1235 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [117e 06-12 02:15:04.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [127c 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [de3 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer1.org1.example.com | [13cc 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] +peer1.org2.example.com | [1236 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [117f 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [127d 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [de4 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1528769772211422700 evaluation starts +peer1.org1.example.com | [13cd 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xb2, 0x2, 0x73, 0xc0, 0x68, 0xb4, 0x1b, 0x5, 0x97, 0xfa, 0x28, 0x78, 0xb9, 0x53, 0x7d, 0x1c, 0xa4, 0x85, 0x7c, 0xde, 0xf6, 0x7e, 0x5d, 0x4d, 0x44, 0xc8, 0x94, 0x3b, 0x89, 0xd3, 0x6c, 0x25} txOffsets= +peer1.org2.example.com | [1237 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [1180 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [127e 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [de5 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | txId=1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 locPointer=offset=70, bytesLength=3460 +peer1.org2.example.com | [1238 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1181 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org1.example.com | [127f 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [de6 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | ] +peer1.org2.example.com | [1239 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1182 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1280 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [de7 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer1.org1.example.com | [13ce 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to index +peer1.org2.example.com | [123a 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1183 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > alive:S\205\025Z0\227<\356u\020I\315" > alive: +peer0.org1.example.com | [1281 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [de8 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 principal evaluation fails +peer1.org1.example.com | [13cf 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx number:[0] ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to blockNumTranNum index +peer1.org2.example.com | [123b 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1184 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1282 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [de9 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1528769772211422700 evaluation fails +peer1.org1.example.com | [13d0 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org2.example.com | [1185 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [123c 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1283 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [dea 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [13d1 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] +peer0.org2.example.com | [1186 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [123d 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1284 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [deb 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [13d2 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] +peer1.org2.example.com | [123e 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1187 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1285 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [dec 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer1.org1.example.com | [13d3 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +peer1.org2.example.com | [123f 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1188 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1286 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ded 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer1.org1.example.com | [13d4 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +peer1.org2.example.com | [1240 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1189 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1287 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [dee 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org1.example.com | [13d5 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [1241 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [118a 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1288 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [def 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer1.org1.example.com | [13d6 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org2.example.com | [1242 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [118b 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1289 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [df0 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [13d7 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [1243 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [118c 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org1.example.com | [128a 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [df1 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org1.example.com | [13d8 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [1244 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [118d 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [128b 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [df2 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e088 gate 1528769772213624900 evaluation starts +peer1.org1.example.com | [13d9 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [5] +peer1.org2.example.com | [1245 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [118e 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [128c 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [df3 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e088 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [13da 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] +peer1.org2.example.com | [1246 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [118f 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [128d 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [13db 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [5] +orderer.example.com | [df4 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e088 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [1247 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1190 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [128e 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [13dc 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +orderer.example.com | [df5 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e088 principal matched by identity 0 +peer1.org2.example.com | [1248 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > alive: alive: alive:\314\351_\235\322\231\332\201\034\335\002 0\216\267H\0145\302\341\314Z\366\367\341_\205mC\2032\2715a\255-$\202\034\263\370\371\216u" > +peer0.org2.example.com | [1191 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [128f 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [13dd 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +orderer.example.com | [df6 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ab 9b 06 1f 86 71 19 2a d9 e4 61 12 9d a1 a9 41 |.....q.*..a....A| +peer1.org2.example.com | [1249 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1192 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes +peer0.org1.example.com | [1290 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [13de 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +orderer.example.com | 00000010 b1 9c e4 11 9c 98 f3 50 52 48 ce 56 70 5e 89 8d |.......PRH.Vp^..| +peer1.org2.example.com | [124a 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1193 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1291 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [13df 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +orderer.example.com | [df7 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5f bf 65 91 e2 2c 09 4f 3a 78 d2 7f |0D. _.e..,.O:x..| +peer1.org2.example.com | [124b 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49392 +peer0.org2.example.com | [1194 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1292 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [13e0 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | 00000010 45 d9 a7 5d 8c f9 18 e5 e8 05 dc 60 fa 41 ff 90 |E..].......`.A..| +peer1.org2.example.com | [124c 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423ea68a0 +peer0.org2.example.com | [1195 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1293 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [13e1 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 +orderer.example.com | 00000020 c6 56 41 98 02 20 5f 9e 44 99 05 d8 14 64 de f3 |.VA.. _.D....d..| +peer1.org2.example.com | [124d 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [1196 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1294 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [13e2 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | 00000030 f2 97 0d 42 fd 61 71 e3 83 af 82 54 16 26 81 06 |...B.aq....T.&..| +peer1.org2.example.com | [124e 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [1197 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1296 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [13e3 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | 00000040 7e ef cb e6 ac 39 |~....9| +peer1.org2.example.com | [124f 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org2.example.com | [1198 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1297 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [13e4 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [df8 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e088 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [1250 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [1199 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes +peer1.org1.example.com | [13e5 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [1295 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020H" signature:"0D\002 P\245F\314\362<\262\234\350\327\010\346\213\220\0279N\271\032\326\313\202\271\262{{\253(\274\333\243\215\002 rn#\217\246\3004\010;t\017\244\217,\037>\233\271\225A\342\357\013\215\305\002P\262\242\272\013!" secret_envelope: > +orderer.example.com | [df9 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e088 gate 1528769772213624900 evaluation succeeds +peer0.org2.example.com | [119a 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes +peer1.org2.example.com | [1251 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [13e6 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [1298 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [dfa 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [119b 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes +peer1.org2.example.com | [1252 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422268c80, header 0xc423ea6c00 +peer1.org1.example.com | [13e7 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [1299 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [dfb 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [119c 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1253 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org1.example.com | [13e8 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [129a 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [dfc 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org2.example.com | [119d 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1254 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][e28e27b8] processing txid: e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247 +peer1.org1.example.com | [13e9 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [129b 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [dfd 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org2.example.com | [1255 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247] +peer0.org2.example.com | [119e 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [13ea 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [129c 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [dfe 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [1256 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer0.org2.example.com | [119f 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [13eb 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [129d 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [dff 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org2.example.com | [1257 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [11a0 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [13ec 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [129e 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [e00 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420347ee0) start: > stop: > from 172.18.0.7:35910 +peer1.org2.example.com | [1258 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247] +peer0.org2.example.com | [11a1 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [13ed 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [129f 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [e01 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer1.org2.example.com | [1259 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][e28e27b8] Entry chaincode: name:"exp02" +peer0.org2.example.com | [11a2 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [13ee 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [12a0 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [e02 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +peer1.org2.example.com | [125a 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247,syscc=true,proposal=0xc422268c80,canname=lscc:1.2.0) +peer0.org2.example.com | [11a3 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [13f0 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [12a1 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [e03 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +peer1.org2.example.com | [125b 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org2.example.com | [11a4 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [13ef 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [12a2 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [e04 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +peer1.org2.example.com | [125c 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [11a5 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [12a3 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [13f1 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +orderer.example.com | [e05 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +peer1.org2.example.com | [125d 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e28e27b8]Received message TRANSACTION from peer +peer0.org2.example.com | [11a6 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [12a4 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [13f2 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e06 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420347ee0) for 172.18.0.7:35910 +peer1.org2.example.com | [125e 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e28e27b8] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [11a7 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [12a5 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [13f3 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [e07 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35910 for (0xc420347ee0) +peer1.org2.example.com | [125f 06-12 02:15:10.69 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [e28e27b8] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org2.example.com | [11a8 06-12 02:15:04.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [12a6 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [13f4 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [e08 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35910 +peer1.org2.example.com | [1260 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer0.org2.example.com | [11a9 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [12a7 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [13f5 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [e0a 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35910 +peer1.org2.example.com | [1261 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e28e27b8] Sending GET_STATE +peer0.org2.example.com | [11aa 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [12a8 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [13f6 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e09 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org2.example.com | [1262 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e28e27b8] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [11ab 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [12a9 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [13f8 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [e0c 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [1263 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e28e27b8] handling GET_STATE from chaincode +peer0.org2.example.com | [11ac 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [12aa 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [13f9 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [e0d 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org2.example.com | [1264 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [e28e27b8] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org2.example.com | [11ad 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [12ab 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [13f7 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1265 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [e0e 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org2.example.com | [11ae 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [12ac 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [13fa 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1266 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e28e27b8] Completed GET_STATE. Sending RESPONSE +orderer.example.com | [e0b 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35910: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [11af 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [12ad 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [13fb 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1267 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e28e27b8]Received message RESPONSE from peer +orderer.example.com | [e0f 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org2.example.com | [11b0 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [13fc 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [12ae 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1268 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e28e27b8] Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [e10 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org1.example.com | [13fd 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [11b1 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [12af 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1269 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [e28e27b8] before send +orderer.example.com | [e11 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35912 +peer1.org1.example.com | [13fe 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [11b2 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [12b0 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [126a 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [e28e27b8] after send +orderer.example.com | [e12 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35912 +peer1.org1.example.com | [13ff 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [11b3 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [12b1 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [126b 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [e28e27b8] Received RESPONSE, communicated (state:ready) +orderer.example.com | [e13 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org1.example.com | [1400 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [11b4 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [12b2 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [126c 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e28e27b8] GetState received payload RESPONSE +orderer.example.com | [e14 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1401 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [11b5 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [12b3 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [126d 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e28e27b8] Transaction completed. Sending COMPLETED +orderer.example.com | [e15 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org1.example.com | [1402 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [11b6 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [12b4 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [126e 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [e28e27b8] send state message COMPLETED +orderer.example.com | [e16 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1404 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [11b7 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [12b5 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [126f 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e28e27b8] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [e17 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer1.org1.example.com | [1403 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [11b8 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [12b6 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1270 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [e28e27b8] notifying Txid:e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247, channelID:businesschannel +orderer.example.com | [e18 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503e8 gate 1528769772737807100 evaluation starts +peer1.org1.example.com | [1407 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [11b9 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [12b7 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1271 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | [e19 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [1406 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [11ba 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [12b8 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [e1a 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [1272 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [1408 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11bb 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [12b9 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [e1b 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer1.org2.example.com | [1273 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247] Entry chaincode: name:"exp02" version: 1.0 +peer1.org2.example.com | [1274 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247,syscc=false,proposal=0xc422268c80,canname=exp02:1.0) +peer1.org1.example.com | [1405 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [12ba 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [e1c 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 principal evaluation fails +peer1.org2.example.com | [1275 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247,syscc=true,proposal=0xc422268c80,canname=lscc:1.2.0) +peer0.org2.example.com | [11bc 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [12bb 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [140c 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [e1d 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503e8 gate 1528769772737807100 evaluation fails +peer1.org2.example.com | [1276 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org2.example.com | [11bd 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [12bc 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [140d 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e1e 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [1277 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [11be 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [12bd 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1409 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e1f 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [1278 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e28e27b8]Received message TRANSACTION from peer +peer0.org2.example.com | [11bf 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [12be 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [140a 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [e20 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org2.example.com | [1279 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e28e27b8] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [11c0 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [12bf 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [140b 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [e21 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503f0 gate 1528769772739425700 evaluation starts +peer1.org2.example.com | [127a 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [e28e27b8] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org2.example.com | [11c1 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [12c0 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [140e 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [127b 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetDeploymentSpec +orderer.example.com | [e22 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [11c2 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [12c1 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [140f 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [127c 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e28e27b8] Sending GET_STATE +orderer.example.com | [e23 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [11c3 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 70 but got ts: inc_num:1528769653227426900 seq_num:69 +peer0.org1.example.com | [12c2 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1410 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [127d 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e28e27b8] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +orderer.example.com | [e24 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org2.example.com | [11c4 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [12c3 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1411 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [127e 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e28e27b8] handling GET_STATE from chaincode +orderer.example.com | [e25 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 principal evaluation fails +peer0.org2.example.com | [11c5 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [12c4 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1413 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [127f 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [e28e27b8] getting state for chaincode lscc, key exp02, channel businesschannel +orderer.example.com | [e26 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503f0 gate 1528769772739425700 evaluation fails +peer0.org2.example.com | [11c6 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [12c5 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1414 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1280 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [e27 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [11c7 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1415 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [12c6 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1281 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e28e27b8] Completed GET_STATE. Sending RESPONSE +orderer.example.com | [e28 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [11c8 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1416 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [12c7 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1282 06-12 02:15:10.70 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e28e27b8]Received message RESPONSE from peer +orderer.example.com | [e29 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer0.org2.example.com | [11c9 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1417 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [12c8 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1283 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e28e27b8] Handling ChaincodeMessage of type: RESPONSE(state:ready) +orderer.example.com | [e2a 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150400 gate 1528769772741381400 evaluation starts +peer1.org1.example.com | [1418 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [11ca 06-12 02:15:04.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [12c9 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1284 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [e28e27b8] before send +orderer.example.com | [e2b 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150400 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [1419 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [11cb 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [12ca 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1285 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [e28e27b8] after send +orderer.example.com | [e2c 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150400 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [141a 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [11cc 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [12cb 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1286 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [e28e27b8] Received RESPONSE, communicated (state:ready) +orderer.example.com | [e2d 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150400 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer1.org1.example.com | [141b 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [11cd 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [12cc 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1287 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [e28e27b8] GetState received payload RESPONSE +orderer.example.com | [e2e 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150400 principal evaluation fails +peer1.org1.example.com | [141c 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [11ce 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [12cd 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1288 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e28e27b8] Transaction completed. Sending COMPLETED +orderer.example.com | [e2f 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150400 gate 1528769772741381400 evaluation fails +peer1.org1.example.com | [141d 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org2.example.com | [11cf 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [12ce 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1289 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [e28e27b8] send state message COMPLETED +peer1.org1.example.com | [141e 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [e30 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [11d0 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [12cf 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [128a 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e28e27b8] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +orderer.example.com | [e31 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [141f 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > alive: alive: +peer0.org2.example.com | [11d1 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [12d0 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [128b 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [e28e27b8] notifying Txid:e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247, channelID:businesschannel +orderer.example.com | [e32 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] +peer1.org1.example.com | [1420 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [11d2 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [12d1 06-12 02:15:07.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer1.org2.example.com | [128c 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute.Execute -> DEBU Exit +orderer.example.com | [e33 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer1.org1.example.com | [1421 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [11d3 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [12d2 06-12 02:15:07.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer1.org2.example.com | [128d 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched +orderer.example.com | [e34 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org1.example.com | [1422 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [11d4 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [12d3 06-12 02:15:07.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer1.org2.example.com | [128e 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org2.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +orderer.example.com | [e35 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer1.org1.example.com | [1412 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11d5 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [12d4 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [128f 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 +orderer.example.com | [e36 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1423 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [11d6 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [12d5 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [1290 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org2.example.com:7052 +orderer.example.com | [e37 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org1.example.com | [1424 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [11d7 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [12d6 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1291 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +orderer.example.com | [e38 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150408 gate 1528769772744659000 evaluation starts +peer1.org1.example.com | [1426 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [11d8 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [12d7 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_LEVEL=info +orderer.example.com | [e39 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [1427 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [11d9 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [12d8 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | CORE_CHAINCODE_LOGGING_SHIM=warning +orderer.example.com | [e3a 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [1425 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11da 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [12d9 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [e3b 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 principal matched by identity 0 +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 | [1428 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [11db 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [12da 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e3c 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 91 d4 1e 88 40 08 aa c6 7a 40 5a 6f 94 50 cc d2 |....@...z@Zo.P..| +peer1.org2.example.com | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer1.org1.example.com | [1429 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [11dc 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [12db 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | 00000010 76 3f 7f 2c 76 64 f4 57 53 09 f1 f4 7b 42 7e e5 |v?.,vd.WS...{B~.| +peer1.org2.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | [142a 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11dd 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [12dc 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [e3d 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e7 ee ab a0 1e fa 97 86 e2 ee 81 |0E.!............| +peer1.org2.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | [142b 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [11de 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [12dd 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | 00000010 e9 49 0c dc 5b a6 58 0f 1c e6 7a 28 33 56 4e c1 |.I..[.X...z(3VN.| +peer1.org2.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | [142c 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11df 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [12de 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | 00000020 29 d1 47 7f 86 02 20 19 2d 26 e3 02 2b 30 4b b5 |).G... .-&..+0K.| +peer1.org2.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [142d 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [11e0 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | 00000030 80 e5 b2 74 be 2c b0 30 c3 d6 8f 21 e5 4c b9 d7 |...t.,.0...!.L..| +peer0.org1.example.com | [12df 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1292 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock +peer1.org1.example.com | [142e 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [11e1 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | 00000040 2d 84 2d b2 5c 00 5e |-.-.\.^| +peer0.org1.example.com | [12e0 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1293 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock +peer1.org1.example.com | [142f 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11e2 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [e3e 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [12e1 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1294 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Cleanup container dev-peer1.org2.example.com-exp02-1.0 +peer1.org1.example.com | [1430 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +orderer.example.com | [e3f 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150408 gate 1528769772744659000 evaluation succeeds +peer0.org2.example.com | [11e3 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [12e2 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1295 06-12 02:15:10.71 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Stop container dev-peer1.org2.example.com-exp02-1.0(No such container: dev-peer1.org2.example.com-exp02-1.0) +peer1.org1.example.com | [1431 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +orderer.example.com | [e40 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [11e4 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [12e3 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1296 06-12 02:15:10.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) +peer1.org1.example.com | [1432 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [11e5 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +orderer.example.com | [e41 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [12e4 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1297 06-12 02:15:10.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) +peer1.org1.example.com | [1433 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [11e6 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [e42 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [12e5 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1298 06-12 02:15:10.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 | [1434 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [11e7 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [e43 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [12e6 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1299 06-12 02:15:10.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +peer1.org1.example.com | [1435 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [11e8 06-12 02:15:04.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [e44 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [12e7 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [129a 06-12 02:15:10.72 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 | [129b 06-12 02:15:10.72 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-could not find image (container id ), because of ...attempt to recreate image +peer0.org2.example.com | [11e9 06-12 02:15:04.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [e45 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [12e8 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [129c 06-12 02:15:10.72 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org1.example.com | [1436 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [11ea 06-12 02:15:04.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [e46 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420bd1700) start: > stop: > from 172.18.0.7:35912 +peer0.org1.example.com | [12e9 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | FROM hyperledger/fabric-baseos:amd64-0.4.8 +peer1.org1.example.com | [1437 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11eb 06-12 02:15:04.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [e47 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org1.example.com | [12ea 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | ADD binpackage.tar /usr/local/bin +peer1.org1.example.com | [1438 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [11ec 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +orderer.example.com | [e48 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +peer0.org1.example.com | [12eb 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer1.org1.example.com | [1439 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11ed 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [e49 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +peer0.org1.example.com | [12ec 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer1.org1.example.com | [143a 06-12 02:15:13.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org2.example.com | [11ee 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e4a 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +peer0.org1.example.com | [12ed 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org1.example.com | [143b 06-12 02:15:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [11ef 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [e4b 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +peer0.org1.example.com | [12ee 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | org.hyperledger.fabric.version="1.2.0" \ +peer1.org1.example.com | [143c 06-12 02:15:13.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [11f0 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e4c 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420bd1700) for 172.18.0.7:35912 +peer0.org1.example.com | [12ef 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | org.hyperledger.fabric.base.version="0.4.8" +peer1.org1.example.com | [143d 06-12 02:15:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [11f1 06-12 02:15:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [e4d 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35912 for (0xc420bd1700) +peer0.org1.example.com | [12f0 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.2.0 +peer1.org1.example.com | [143e 06-12 02:15:13.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [11f2 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e4e 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35912 +peer0.org1.example.com | [12f1 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [129d 06-12 02:15:10.72 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer1.org1.example.com | [143f 06-12 02:15:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [11f3 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | [e4f 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35912 +peer0.org1.example.com | [12f2 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [129e 06-12 02:15:10.72 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental +peer1.org1.example.com | [1440 06-12 02:15:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [11f4 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e50 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [12f3 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [129f 06-12 02:15:10.72 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 +peer1.org1.example.com | [1441 06-12 02:15:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [11f5 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | [e51 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [12f4 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [12a0 06-12 02:15:11.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [1442 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [11f6 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | [e52 06-12 02:16:12.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [12f5 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [12a1 06-12 02:15:11.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1443 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [11f7 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e53 06-12 02:16:12.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [12f6 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [12a2 06-12 02:15:11.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1444 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [11f8 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | [e54 06-12 02:16:12.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35912: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [12a3 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [12f7 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1445 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [11f9 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e55 06-12 02:16:12.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org2.example.com | [12a4 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [12f8 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1446 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [11fa 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +orderer.example.com | [e56 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org2.example.com | [12a5 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [12f9 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1447 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [11fb 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [e57 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35914 +peer1.org2.example.com | [12a6 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [12fa 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1448 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [11fc 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [e58 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35914 +peer1.org2.example.com | [12a7 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [12fb 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1449 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [11fd 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e59 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org2.example.com | [12a8 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [12fc 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [144a 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [11fe 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +orderer.example.com | [e5a 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [12a9 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [12fd 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [144b 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [11ff 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +orderer.example.com | [e5b 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org2.example.com | [12aa 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [12fe 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [144c 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e5c 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [1200 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org2.example.com | [12ab 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [12ff 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [144d 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [e5d 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org2.example.com | [1201 06-12 02:15:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [12ac 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1300 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [144e 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [e5e 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150480 gate 1528769772957020300 evaluation starts +peer0.org2.example.com | [1202 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [12ad 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1301 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [144f 06-12 02:15:13.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1203 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [e5f 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150480 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [12ae 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1302 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1450 06-12 02:15:13.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1204 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e60 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150480 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [12af 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1303 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [1451 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1205 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [e61 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150480 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer1.org2.example.com | [12b0 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1304 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1452 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1206 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [e62 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150480 principal evaluation fails +peer1.org2.example.com | [12b1 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1305 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020J" signature:"0E\002!\000\353@:\320y\342\345G@g\211\376W\263\340\000-\307l7\225\245\017Q\200c\346\215\234\342\227\326\002 [\022\315\322\235)t^e\r=\242\321\355\263\177\033)rK\341<\262ZE\262c,D\234yB" > +peer1.org1.example.com | [1453 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1207 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [e63 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150480 gate 1528769772957020300 evaluation fails +peer1.org2.example.com | [12b2 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1306 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1454 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1208 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +orderer.example.com | [e64 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [12b3 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1307 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1455 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1209 06-12 02:15:04.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e65 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [12b4 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1308 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [1456 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [120a 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [e66 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org2.example.com | [12b5 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1309 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1457 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [120b 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [e67 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150488 gate 1528769772960136200 evaluation starts +peer1.org2.example.com | [12b6 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1458 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [130a 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [120c 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [e68 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150488 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [12b7 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1459 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [130b 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [120d 06-12 02:15:05.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e69 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150488 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [12b8 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [145a 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [130c 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [120e 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [e6a 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150488 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer1.org2.example.com | [12ba 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [145b 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [130e 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [120f 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e6b 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150488 principal evaluation fails +peer1.org2.example.com | [12bb 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [130d 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [145c 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1210 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [e6c 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150488 gate 1528769772960136200 evaluation fails +peer1.org2.example.com | [12b9 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1310 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [145d 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1211 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [e6d 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [12bc 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [130f 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [145e 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1212 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [e6e 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [12bd 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1312 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [145f 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1213 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [e6f 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer1.org2.example.com | [12be 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1311 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1460 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1214 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [e70 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150490 gate 1528769772962678400 evaluation starts +peer1.org2.example.com | [12bf 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1313 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1461 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1215 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [e71 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150490 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [12c0 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1314 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [1462 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1216 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [e72 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150490 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [12c1 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1315 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1463 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1217 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [e73 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150490 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer1.org2.example.com | [12c2 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1316 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [1464 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1218 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [e74 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150490 principal evaluation fails +peer1.org2.example.com | [12c4 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1317 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1465 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1219 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [e75 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150490 gate 1528769772962678400 evaluation fails +peer0.org1.example.com | [1318 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [12c3 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1466 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [121a 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +orderer.example.com | [e76 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [1319 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [12c5 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1467 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [121b 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [e77 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [131a 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [12c6 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [1468 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [121c 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020G" signature:"0E\002!\000\272\362?\316\274\266\326\2551,<1)\311-\033h\265\275\235%\320\202\207\241q\245\025\0161]\337\002 +\351,\304\356\274\234\213\253\354s4f\304\341zG\000\2607\303f\244\312\177`\010\216|q\365\206" > alive: alive: +orderer.example.com | [e78 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] +peer0.org1.example.com | [131b 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [12c7 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1469 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [121d 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [e79 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer0.org1.example.com | [131c 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [12c8 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [146a 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [121e 06-12 02:15:05.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e7a 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer0.org1.example.com | [131d 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [12c9 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [146b 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [121f 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [e7b 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [131e 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [12ca 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [146c 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1220 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [e7c 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1320 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [12cb 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [146d 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1221 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [e7d 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [131f 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [12cc 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [146e 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1222 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e7e 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150498 gate 1528769772966123600 evaluation starts +peer0.org1.example.com | [1321 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [12cd 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [146f 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1223 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [e7f 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1322 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [12ce 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1471 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1224 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1323 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e80 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [12cf 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1472 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [1225 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1324 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [e81 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 principal matched by identity 0 +peer1.org2.example.com | [12d0 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1470 06-12 02:15:13.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1226 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1325 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e82 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 4b c1 f3 5b 1e 36 e9 76 31 fe 64 8e de 83 f6 d9 |K..[.6.v1.d.....| +peer1.org2.example.com | [12d1 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org2.example.com | [1227 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1474 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1326 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | 00000010 5c 9c d7 c7 a5 9e 3a 90 75 d6 9f 01 dd 32 3f 69 |\.....:.u....2?i| +peer1.org2.example.com | [12d2 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1228 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1475 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1327 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [e83 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6e 23 69 15 fe 6f 4f ae 45 c5 2a 71 |0D. n#i..oO.E.*q| +peer1.org2.example.com | [12d3 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1229 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1476 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1328 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | 00000010 45 70 a3 6c c7 76 0c 10 76 6e fe a4 d9 83 92 5e |Ep.l.v..vn.....^| +peer1.org2.example.com | [12d4 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [122a 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1477 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1329 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | 00000020 19 0e 2a d0 02 20 52 d4 0c 68 13 f4 1c 3f 28 cf |..*.. R..h...?(.| +peer1.org2.example.com | [12d5 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [122b 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1478 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [132a 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | 00000030 10 5b 9a 87 1f 96 3b a2 7d d8 29 51 af d2 f5 c6 |.[....;.}.)Q....| +peer1.org2.example.com | [12d6 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [122c 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1479 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [132b 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | 00000040 d5 a8 cf 2e 7b c0 |....{.| +peer1.org2.example.com | [12d7 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [147a 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [122d 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [132c 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e84 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [12d8 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [147b 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [122e 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [132d 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [e85 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150498 gate 1528769772966123600 evaluation succeeds +peer1.org2.example.com | [12da 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [147c 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [122f 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [132e 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [e86 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [12db 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1473 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1230 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [132f 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e87 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [147d 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [12d9 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1231 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1330 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +orderer.example.com | [e88 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org1.example.com | [147e 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [12dc 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1232 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1331 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [e89 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [147f 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [12dd 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1233 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1332 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [e8a 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org1.example.com | [1480 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [12de 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1234 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1333 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [e8b 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org1.example.com | [1481 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [12df 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1235 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1334 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [e8c 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c0b220) start: > stop: > from 172.18.0.7:35914 +peer1.org1.example.com | [1482 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [12e1 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1236 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1335 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [e8d 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer1.org1.example.com | [1483 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [12e2 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1237 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1336 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [e8e 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +peer1.org1.example.com | [1484 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [12e3 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1238 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1337 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [e8f 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +peer1.org1.example.com | [1485 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [12e4 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [1239 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1338 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [e90 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +peer1.org1.example.com | [1486 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [12e0 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [123a 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1339 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [e91 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +peer1.org1.example.com | [1488 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [12e5 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [123b 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [133a 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [e92 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0b220) for 172.18.0.7:35914 +peer1.org1.example.com | [1489 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [12e6 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [123c 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [133b 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [e93 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35914 for (0xc420c0b220) +peer1.org1.example.com | [1487 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [12e7 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [123d 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [133c 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [148a 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [e95 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org2.example.com | [12e8 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [123e 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [133d 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [148b 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [e96 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [12e9 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [123f 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [133e 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [148c 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 83 but got ts: inc_num:1528769652429776900 seq_num:82 +orderer.example.com | [e94 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35914 +peer1.org2.example.com | [12ea 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1240 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [133f 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [148d 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [e98 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35914 +peer1.org2.example.com | [12eb 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1241 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1340 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [148e 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [e97 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org2.example.com | [12ec 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1242 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1341 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [148f 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [e99 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [12ed 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1243 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1342 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1490 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [e9a 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org2.example.com | [12ee 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1244 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1343 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1491 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [e9b 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [12ef 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1344 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1245 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1492 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1493 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [e9c 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org2.example.com | [12f0 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1345 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1246 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1494 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 81 but got ts: inc_num:1528769652088169500 seq_num:80 +orderer.example.com | [e9d 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [12f1 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1346 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1247 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1495 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [e9e 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer1.org2.example.com | [12f2 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1347 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1248 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1496 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [e9f 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504d0 gate 1528769772974884400 evaluation starts +peer1.org2.example.com | [12f3 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1348 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1249 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1497 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [ea0 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d0 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [12f4 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1349 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [124a 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1498 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [ea1 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [12f5 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [134a 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [124b 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1499 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [ea2 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer1.org2.example.com | [12f6 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [134b 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [124c 06-12 02:15:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [149a 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [ea3 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d0 principal evaluation fails +peer1.org2.example.com | [12f7 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [134c 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org2.example.com | [124d 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [149b 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [ea4 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504d0 gate 1528769772974884400 evaluation fails +peer1.org2.example.com | [12f8 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [134d 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [124e 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [149c 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [ea5 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [12f9 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [134e 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [124f 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [149d 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [ea6 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [12fa 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [134f 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1250 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [149e 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [ea7 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org2.example.com | [12fb 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1350 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1251 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [14a0 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ea8 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504d8 gate 1528769772977489700 evaluation starts +peer1.org2.example.com | [12fd 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1351 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org2.example.com | [1252 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [149f 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [12fe 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [ea9 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1352 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1253 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [14a1 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [12ff 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +orderer.example.com | [eaa 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [1353 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1254 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [14a2 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1300 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [eab 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org2.example.com | [1255 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1354 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14a3 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [12fc 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [eac 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d8 principal evaluation fails +peer0.org2.example.com | [1256 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [14a4 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1301 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [ead 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504d8 gate 1528769772977489700 evaluation fails +peer0.org2.example.com | [1257 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1355 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [14a5 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1302 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [eae 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [1258 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1356 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [14a6 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [eaf 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [1303 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1259 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1357 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [14a7 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | [eb0 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer1.org2.example.com | [1304 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [125a 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1358 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [14a8 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [eb1 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504e8 gate 1528769772979433400 evaluation starts +peer1.org2.example.com | [1305 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [125b 06-12 02:15:07.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [1359 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [14a9 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [eb2 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [1306 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [125c 06-12 02:15:07.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [135a 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [14aa 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [eb3 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [1307 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [125d 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [135b 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [14ab 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [eb4 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer1.org2.example.com | [1308 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [135c 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [125e 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [14ac 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [eb5 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 principal evaluation fails +peer1.org2.example.com | [1309 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [135d 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [125f 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [14ad 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [eb6 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504e8 gate 1528769772979433400 evaluation fails +peer1.org2.example.com | [130a 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [135e 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1260 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [14ae 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [130b 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [eb7 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [135f 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1261 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [14af 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [130c 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [eb8 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [1360 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1262 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [14b0 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [130d 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [eb9 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer0.org1.example.com | [1361 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1263 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [14b1 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [130e 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [eba 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer0.org1.example.com | [1362 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1264 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [14b2 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [130f 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [ebb 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer0.org1.example.com | [1363 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1265 06-12 02:15:07.59 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer1.org1.example.com | [14b3 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1310 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [ebc 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [1364 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1266 06-12 02:15:07.59 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer1.org1.example.com | [14b4 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [1311 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [ebd 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1365 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1267 06-12 02:15:07.59 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer1.org1.example.com | [14b5 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1312 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [ebe 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org2.example.com | [1313 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1268 06-12 02:15:07.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [14b6 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [ebf 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504f0 gate 1528769772982224400 evaluation starts +peer0.org1.example.com | [1366 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org2.example.com | [1269 06-12 02:15:07.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [14b7 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +orderer.example.com | [ec0 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504f0 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [1314 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1367 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +peer0.org2.example.com | [126a 06-12 02:15:07.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [14b8 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [ec1 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [1315 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1368 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [126b 06-12 02:15:08.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [14b9 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [ec2 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504f0 principal matched by identity 0 +peer1.org2.example.com | [1316 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1369 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org2.example.com | [126c 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [14ba 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ec3 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 70 f1 12 d6 0b 9a f8 ce 10 39 b9 e0 08 16 5f a2 |p........9...._.| +peer1.org2.example.com | [1317 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [136a 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [126d 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +orderer.example.com | 00000010 7f f3 8e 4b ef 7a 01 0b 37 ad da 26 01 8a 8e 7e |...K.z..7..&...~| +peer1.org1.example.com | [14bb 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1318 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [136b 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [126e 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ec4 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4c 09 d5 71 8e 4b 42 ac e1 1d 91 3d |0D. L..q.KB....=| +peer1.org1.example.com | [14bc 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1319 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [126f 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [136c 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | 00000010 59 97 ef 00 f8 2b 1e 62 54 f5 28 91 06 b1 87 c1 |Y....+.bT.(.....| +peer1.org1.example.com | [14bd 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [131a 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1270 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [136d 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000020 b1 5b 62 e6 02 20 25 96 87 20 0c bd fc 7a 2d 66 |.[b.. %.. ...z-f| +peer1.org1.example.com | [14be 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [131c 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1271 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [136e 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +orderer.example.com | 00000030 c4 34 04 a5 ab ae ca 95 41 b3 2e 0d 76 3b bc b4 |.4......A...v;..| +peer1.org1.example.com | [14bf 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [131d 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1272 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1370 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +orderer.example.com | 00000040 ab d3 b1 a6 b4 b0 |......| +peer1.org1.example.com | [14c0 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [131b 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > alive: alive: alive: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1371 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [ec5 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504f0 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [14c1 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [131e 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes +peer0.org2.example.com | [1274 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1372 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [ec6 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504f0 gate 1528769772982224400 evaluation succeeds +peer1.org1.example.com | [14c2 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [131f 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1275 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1373 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [ec7 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [14c3 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1320 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [1276 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1374 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [ec8 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [14c4 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1321 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [1277 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [1375 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [14c5 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | [ec9 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org2.example.com | [1322 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4220ccd80 env 0xc424257380 txn 0 +peer0.org2.example.com | [1278 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1376 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [14c6 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [eca 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org2.example.com | [1323 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424257380 +peer0.org2.example.com | [1279 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1377 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [14c7 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020R" signature:"0E\002!\000\230+\2051\254\270\214#\214\302\004\250\250\227\212b47\222j\333\241\002\313\0340#\t\323q@\344\002 i\2029hF5\270\273)r\341:\256\342\243\304Vs\267\336\246mRA\225\252\331\333\335\267\354\323" > alive: alive: +orderer.example.com | [ecb 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [1324 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +peer0.org2.example.com | [127a 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1378 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [14c8 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [ecc 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org2.example.com | [1325 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [127b 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1379 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [14c9 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [ecd 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202b2880) start: > stop: > from 172.18.0.7:35914 +peer1.org2.example.com | [1326 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [127c 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [137a 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [14ca 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [ece 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer1.org2.example.com | [1327 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org2.example.com | [127d 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [137b 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [14cb 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [ecf 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +peer1.org2.example.com | [1328 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [127e 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [137c 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [14cc 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +orderer.example.com | [ed0 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +peer1.org2.example.com | [1329 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [127f 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [137d 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [14cd 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ed1 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +peer1.org2.example.com | [132a 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42356ca80, header channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +peer0.org2.example.com | [1280 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [136f 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14ce 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [ed2 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +peer1.org2.example.com | [132b 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [1281 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [137e 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [14cf 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [ed3 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202b2880) for 172.18.0.7:35914 +peer1.org2.example.com | [132c 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [1282 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [137f 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [14d0 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [ed4 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35914 for (0xc4202b2880) +peer1.org2.example.com | [132d 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [1283 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1380 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14d1 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +orderer.example.com | [ed5 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35914 +peer1.org2.example.com | [132e 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org2.example.com | [1284 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1285 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1286 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1381 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1287 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [132f 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +peer0.org1.example.com | [1382 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1383 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [14d2 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14d3 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" secret_envelope:\002 q\253\221\346\3441b,\204\007O*\2136\270\215\274\326be=*\217\362\204S\032l|\240:\362" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [14d4 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" secret_envelope:\002 q\253\221\346\3441b,\204\007O*\2136\270\215\274\326be=*\217\362\204S\032l|\240:\362" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [14d5 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14d6 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" secret_envelope:\002 q\253\221\346\3441b,\204\007O*\2136\270\215\274\326be=*\217\362\204S\032l|\240:\362" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [14d7 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1288 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [14d8 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1384 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1385 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1386 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1387 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1388 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1389 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [138a 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [138b 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [138c 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [138d 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [138e 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [138f 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1390 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [ed7 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [1391 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [ed8 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [1330 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [14d9 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1289 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1392 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [ed9 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org2.example.com | [1331 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423572000 +peer1.org1.example.com | [14da 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [128a 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > alive: alive:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > alive:\206M\277t\r\017\337\202|\270\016s\343t\0046\343\272\002 Z\224\353K\365H0\003\013\361V\261\230-\372\n\002\000\327/\000D\264 \037\264\260\217%*t\224" > +peer0.org1.example.com | [1393 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [eda 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [1332 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin +peer1.org1.example.com | [14db 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [128b 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1394 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [ed6 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35914 +peer1.org2.example.com | [1333 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [14dc 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [128c 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1395 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [edb 06-12 02:16:12.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35914: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [1334 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +peer1.org1.example.com | [14dd 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [128d 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [1396 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [edc 06-12 02:16:12.99 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org2.example.com | [1335 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +peer1.org1.example.com | [14de 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [128e 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1397 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [edd 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org2.example.com | [1336 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [14df 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [128f 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > alive:\270\2715\244\027\216\037+2'w\350I\300\221R2\363\257\002 \010H-\352\325\337|\274\265\376g\374;\027\314\256\372(\2511\340yUp\000\213\317\333\301\352\266\333" secret_envelope: > +peer0.org1.example.com | [1398 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [ede 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35916 +peer1.org2.example.com | [1337 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer1.org1.example.com | [14e0 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [1290 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [1399 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [edf 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35916 +peer1.org2.example.com | [1338 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +peer1.org1.example.com | [14e1 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1291 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [139b 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [ee0 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org2.example.com | [1339 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [294b82b1-d60c-474b-816f-c18550f6b678] +peer0.org2.example.com | [1292 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14e2 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" secret_envelope:\002 q\253\221\346\3441b,\204\007O*\2136\270\215\274\326be=*\217\362\204S\032l|\240:\362" > > alive:\312Rh\216\256\007s\243!?d>v\177\r\201v\252~\344\002 >\273\310\341~\006\3112\250{\001\212\271\000\333\337\302\005\376\217k\304n',\001/\267q\r\264\260" secret_envelope: > +peer0.org1.example.com | [139c 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [133a 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +orderer.example.com | [ee1 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [1293 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [14e3 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [133b 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [294b82b1-d60c-474b-816f-c18550f6b678] +peer0.org1.example.com | [139a 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ee2 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +orderer.example.com | [ee3 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [1294 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [14e4 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [133c 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [139d 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [ee4 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org2.example.com | [1295 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [14e5 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [133d 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer0.org1.example.com | [139e 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ee5 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769773107732700 evaluation starts +peer0.org2.example.com | [1296 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14e6 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [133e 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated +peer0.org1.example.com | [139f 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [ee6 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [1297 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [14e7 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [133f 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 appears to be invalid: Chaincode exp02 is already instantiated +peer0.org1.example.com | [13a0 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [ee7 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [1298 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14e8 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1340 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423572000 +peer0.org1.example.com | [13a1 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 1] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [ee8 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer0.org2.example.com | [1299 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [14e9 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1341 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 returned error: Chaincode exp02 is already instantiated +peer0.org1.example.com | [13a2 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ee9 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal evaluation fails +peer0.org2.example.com | [129a 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [14ea 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1342 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4220ccd80 env 0xc424257380 txn 0 +peer0.org1.example.com | [13a3 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [eea 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769773107732700 evaluation fails +peer0.org2.example.com | [129b 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14eb 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1343 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +peer0.org1.example.com | [13a4 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [eeb 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [129c 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [14ec 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1344 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [13a5 06-12 02:15:08.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [eec 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [129d 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [14ed 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1345 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +peer0.org1.example.com | [13a6 06-12 02:15:08.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +orderer.example.com | [eed 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org2.example.com | [129e 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [14ee 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1346 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [13a7 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [eee 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e100 gate 1528769773109653200 evaluation starts +peer0.org2.example.com | [129f 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [14ef 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1347 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +peer0.org1.example.com | [13a8 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [eef 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e100 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [12a0 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [14f0 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [13a9 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1348 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +orderer.example.com | [ef0 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e100 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [12a1 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [14f1 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [13aa 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1349 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +orderer.example.com | [ef1 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e100 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org2.example.com | [12a2 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [14f2 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [13ab 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [134a 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +orderer.example.com | [ef2 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e100 principal evaluation fails +peer0.org2.example.com | [12a3 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [14f3 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer0.org1.example.com | [13ac 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [134b 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +orderer.example.com | [ef3 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e100 gate 1528769773109653200 evaluation fails +peer0.org2.example.com | [12a4 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [14f4 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [13ad 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [134c 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +orderer.example.com | [ef4 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [12a5 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [14f5 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [13ae 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [134d 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +orderer.example.com | [ef5 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [12a6 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [14f6 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [13af 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [134e 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [ef6 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer0.org2.example.com | [12a7 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [14f7 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [13b0 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [134f 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [13b1 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [ef7 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e108 gate 1528769773111534700 evaluation starts +peer0.org2.example.com | [12a8 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [14f8 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1350 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [ef8 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e108 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [13b2 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [12a9 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [14f9 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1351 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [ef9 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e108 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [13b3 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [12aa 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1352 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [14fa 06-12 02:15:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [efa 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e108 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer0.org1.example.com | [13b4 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [12ab 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1353 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [14fb 06-12 02:15:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [efb 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e108 principal evaluation fails +peer0.org1.example.com | [13b5 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org2.example.com | [12ac 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1354 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] +peer1.org1.example.com | [14fc 06-12 02:15:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [efc 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e108 gate 1528769773111534700 evaluation fails +peer0.org1.example.com | [13b6 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [12ad 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1355 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xb2, 0x2, 0x73, 0xc0, 0x68, 0xb4, 0x1b, 0x5, 0x97, 0xfa, 0x28, 0x78, 0xb9, 0x53, 0x7d, 0x1c, 0xa4, 0x85, 0x7c, 0xde, 0xf6, 0x7e, 0x5d, 0x4d, 0x44, 0xc8, 0x94, 0x3b, 0x89, 0xd3, 0x6c, 0x25} txOffsets= +peer1.org1.example.com | [14fd 06-12 02:15:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [efd 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [13b7 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [12ae 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | txId=1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 locPointer=offset=70, bytesLength=3460 +peer1.org1.example.com | [14fe 06-12 02:15:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [efe 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [13b8 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [12af 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | ] +peer1.org1.example.com | [14ff 06-12 02:15:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [eff 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer0.org1.example.com | [13b9 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\255\314\365L\\\006\226\224#5B\345\352\005b:9\032\344\340/\263" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020L" signature:"0E\002!\000\322\334\376\262\320\0234\177\370\233\367\316\277v\344\370\034\005\226\253\020\240K\327K\345\236VuM\017\352\002 *\307\013\346\223\312S8$\221\355*\364\365\241TZE\3479w/[c\261\005V\334\301\361\241\215" > +peer0.org2.example.com | [12b0 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1356 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to index +peer1.org1.example.com | [1500 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +orderer.example.com | [f00 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer0.org1.example.com | [13ba 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [12b1 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1357 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx number:[0] ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to blockNumTranNum index +peer1.org1.example.com | [1501 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [13bb 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [f01 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer0.org2.example.com | [12b2 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1358 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +peer1.org1.example.com | [1502 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [13bc 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f02 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org2.example.com | [12b3 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1359 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] +peer1.org1.example.com | [1503 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [13bd 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [f03 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [12b4 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [135a 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1504 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [13be 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [f04 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org2.example.com | [135b 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [12b5 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1505 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [13bf 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f05 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e110 gate 1528769773115927300 evaluation starts +peer1.org2.example.com | [135c 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [12b6 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1506 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [13c0 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [f06 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e110 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [135d 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [12b7 06-12 02:15:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1507 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [13c1 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [f07 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e110 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [135e 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [12b8 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1508 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [13c2 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [f08 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e110 principal matched by identity 0 +peer0.org2.example.com | [12b9 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org2.example.com | [135f 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 77 but got ts: inc_num:1528769653227426900 seq_num:76 +peer1.org1.example.com | [1509 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [13c3 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f09 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 e1 a2 5f 9d 79 ad 62 17 9b 28 02 5b 6a 0d 75 17 |.._.y.b..(.[j.u.| +peer0.org2.example.com | [12ba 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1360 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [150a 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [13c4 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +orderer.example.com | 00000010 b6 96 b9 d5 06 ce 25 30 46 11 eb ef b2 b4 38 03 |......%0F.....8.| +peer0.org2.example.com | [12bb 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1361 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [150b 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +orderer.example.com | [f0a 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 58 91 68 ac f4 76 e9 85 54 53 e2 4e |0D. X.h..v..TS.N| +peer0.org1.example.com | [13c6 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [12bc 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1362 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [150c 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000010 e8 f9 23 d2 2b 66 19 1d 89 da e8 c8 17 9f c9 77 |..#.+f.........w| +peer0.org1.example.com | [13c7 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [12bd 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1363 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 79 but got ts: inc_num:1528769652429776900 seq_num:77 +orderer.example.com | 00000020 6f 86 d0 0c 02 20 31 b5 56 7a 9f d1 92 c1 a2 3b |o.... 1.Vz.....;| +peer0.org2.example.com | [12be 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1364 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [150d 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | 00000030 1c c0 83 44 dd 1b 8e 56 c7 36 37 92 b8 1d 91 16 |...D...V.67.....| +peer0.org1.example.com | [13c8 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [12bf 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1365 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [150e 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | 00000040 46 36 f6 fa 3f 19 |F6..?.| +peer0.org1.example.com | [13c9 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [12c1 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1366 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1510 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [f0b 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e110 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [13ca 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [12c2 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1367 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1511 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f0c 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e110 gate 1528769773115927300 evaluation succeeds +peer0.org1.example.com | [13cb 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [12c0 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1368 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1512 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [f0d 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [13cc 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [12c3 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1369 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f0e 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1513 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [13cd 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [12c4 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [136a 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [f0f 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org1.example.com | [1514 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [13ce 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [12c5 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [136b 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [f10 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [1515 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [13cf 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [12c6 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [136c 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [f11 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org1.example.com | [1516 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [13d0 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [13c5 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [136d 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [f12 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +orderer.example.com | [f13 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420519a40) start: > stop: > from 172.18.0.7:35916 +peer1.org1.example.com | [1517 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1518 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1519 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [151a 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [151b 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [151c 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > alive: alive: +peer1.org1.example.com | [151d 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [150f 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [151e 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [151f 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1520 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1521 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1522 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [136e 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [12c7 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [f14 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org1.example.com | [13d1 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1523 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [136f 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [12c8 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [13d3 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [1524 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1370 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [12c9 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [12ca 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [f15 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +peer1.org1.example.com | [1525 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [12cb 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f16 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[81564], Going to peek [8] bytes +peer0.org1.example.com | [13d4 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1371 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1526 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f17 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer0.org2.example.com | [12cc 06-12 02:15:08.48 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [13d2 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020M" signature:"0D\002 Qw\332\274\254\020\333\326\265\352\224>9\342\2773Wh\017\030\322\313\3466ntvB\2758\2246\002 j\257/3\377\266\"\356D4\010\247\254oh\334\013s0\024F\277U' &-\276\005\024\337\361" secret_envelope: > +peer0.org1.example.com | [13d5 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1372 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] +peer1.org2.example.com | [1373 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +peer1.org2.example.com | [1374 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +peer0.org1.example.com | [13d6 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1375 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [1527 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f18 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +peer0.org2.example.com | [12cd 06-12 02:15:08.48 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [13d7 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1376 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +orderer.example.com | [f19 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420519a40) for 172.18.0.7:35916 +orderer.example.com | [f1a 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35916 for (0xc420519a40) +peer1.org1.example.com | [1528 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [13d8 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1377 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f1b 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35916 +peer0.org2.example.com | [12ce 06-12 02:15:08.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [13d9 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1378 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1529 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [12cf 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [f1c 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35916 +peer0.org1.example.com | [13da 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1379 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [137a 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [152a 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [12d0 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [f1d 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org2.example.com | [137b 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [13db 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [152b 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [12d1 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f1e 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [137c 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [13dc 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [152c 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [12d2 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f1f 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org2.example.com | [12d3 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [13dd 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [152d 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [f20 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org2.example.com | [12d4 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [137d 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [13de 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [152e 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [f21 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35916: rpc error: code = Canceled desc = context canceled +peer0.org2.example.com | [12d5 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [137e 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [13df 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [152f 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [f22 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org2.example.com | [12d6 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [137f 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [13e0 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1530 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [f23 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org2.example.com | [12d7 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1380 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [13e1 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1531 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [f24 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35918 +peer0.org2.example.com | [12d8 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [1381 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [13e2 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1532 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [f25 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35918 +peer0.org2.example.com | [12d9 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1382 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [13e3 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1533 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f26 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org2.example.com | [12da 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1383 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [13e4 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1534 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f27 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [12db 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1384 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [13e5 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1535 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f28 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer0.org2.example.com | [12dc 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1385 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [13e7 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1536 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f29 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [12de 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1386 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [13e6 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1537 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f2a 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org2.example.com | [12df 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1387 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [13e8 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1538 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f2b 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150560 gate 1528769773270065300 evaluation starts +peer1.org2.example.com | [1389 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [12e0 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [13e9 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1539 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [f2c 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150560 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [138a 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [12dd 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [13ea 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [153a 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [138b 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +orderer.example.com | [f2d 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150560 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [12e1 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [13eb 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [153b 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [138c 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f2e 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150560 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer0.org2.example.com | [12e2 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [13ec 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [153c 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1388 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f2f 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150560 principal evaluation fails +peer0.org2.example.com | [12e3 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [13ed 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [153d 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [138d 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f30 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150560 gate 1528769773270065300 evaluation fails +peer0.org2.example.com | [12e4 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [13ee 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [153e 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [138e 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f31 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [12e5 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [13ef 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [153f 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [138f 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f32 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [12e6 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [13f0 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1540 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f33 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org2.example.com | [1390 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [12e7 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [13f1 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f34 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150568 gate 1528769773272534900 evaluation starts +peer1.org1.example.com | [1541 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1391 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [12e8 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [13f2 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f35 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150568 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [1542 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1392 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [12e9 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [13f3 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [f36 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150568 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [1543 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1393 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [12eb 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f37 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150568 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org1.example.com | [13f4 06-12 02:15:12.15 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1544 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1394 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [12ec 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [f38 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150568 principal evaluation fails +peer0.org1.example.com | [13f5 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1545 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1395 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [12ea 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [f39 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150568 gate 1528769773272534900 evaluation fails +peer0.org1.example.com | [13f6 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1546 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1396 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [12ed 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f3a 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [13f7 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1547 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1397 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [12ee 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [f3b 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [13f8 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1548 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1398 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [12ef 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f3c 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer0.org1.example.com | [13f9 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1549 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1399 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [12f0 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [f3d 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150570 gate 1528769773274270100 evaluation starts +peer0.org1.example.com | [13fa 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [154a 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [139a 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [12f1 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f3e 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150570 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [13fb 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [154b 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [139b 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [12f2 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [f3f 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150570 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [13fc 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [154c 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [139c 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [12f3 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 76 but got ts: inc_num:1528769651824440500 seq_num:75 +orderer.example.com | [f40 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150570 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer0.org1.example.com | [13fd 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [154d 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [139d 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [12f4 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [f41 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150570 principal evaluation fails +peer0.org1.example.com | [13fe 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [154e 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [139e 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [12f5 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f42 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150570 gate 1528769773274270100 evaluation fails +peer0.org1.example.com | [13ff 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [154f 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [139f 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [12f6 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [f43 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [1400 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1550 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [13a0 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org2.example.com | [12f7 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [f44 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [1401 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1551 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [13a1 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [f45 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer0.org2.example.com | [12f8 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1403 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1552 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [13a2 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\013}\300\360\002\3539\375\000\216n\211\237c\331Y" > > +orderer.example.com | [f46 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer0.org2.example.com | [12f9 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1404 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1553 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [13a3 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +orderer.example.com | [f47 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer0.org2.example.com | [12fa 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1402 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1554 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [13a4 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f48 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org2.example.com | [12fb 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1405 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1555 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [13a5 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f49 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [12fc 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1406 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1556 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [13a6 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [f4a 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org2.example.com | [12fd 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1407 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1557 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [13a7 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f4b 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150578 gate 1528769773277085800 evaluation starts +peer0.org2.example.com | [12fe 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1409 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1558 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [13a8 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f4c 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150578 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [12ff 06-12 02:15:08.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [140a 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1559 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [13a9 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1300 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [f4d 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150578 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [140b 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [155b 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [13aa 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1301 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 76 but got ts: inc_num:1528769652088169500 seq_num:75 +orderer.example.com | [f4e 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150578 principal matched by identity 0 +peer0.org1.example.com | [140c 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org1.example.com | [155c 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [13ab 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1302 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [f4f 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 32 86 25 86 3a 2a 41 61 65 3b bd 72 29 12 2f 9d |2.%.:*Aae;.r)./.| +peer0.org1.example.com | [1408 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [155a 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13ac 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [1303 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | 00000010 03 36 07 db 68 f0 6d 8e ce 3a 47 69 3c 4f 51 a3 |.6..h.m..:Gi DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [140d 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [13ad 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1304 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [f50 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d1 5f 1b 53 0c 99 c0 62 b8 17 bb |0E.!.._.S...b...| +peer1.org1.example.com | [155e 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [140e 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [13ae 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +peer0.org2.example.com | [1305 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000010 36 5b 41 f0 ee 23 05 ea 60 e2 21 67 88 72 f5 2c |6[A..#..`.!g.r.,| +peer1.org1.example.com | [155f 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [140f 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13b0 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [1306 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 76 but got ts: inc_num:1528769651824440500 seq_num:74 +orderer.example.com | 00000020 31 07 da 43 df 02 20 24 49 8b a0 cd ea a2 18 76 |1..C.. $I......v| +peer1.org1.example.com | [1560 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1411 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [13b1 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1307 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000030 a2 ec 6e 2c 9d f5 bd 52 e3 03 56 a2 fb 30 71 b3 |..n,...R..V..0q.| +peer1.org1.example.com | [1561 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1414 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [13af 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [1308 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000040 14 a0 e2 6f 84 28 84 |...o.(.| +peer1.org1.example.com | [1562 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [1412 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer1.org2.example.com | [13b2 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1309 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [f51 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150578 principal evaluation succeeds for identity 0 +peer1.org1.example.com | [1563 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [1415 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer1.org2.example.com | [13b3 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer0.org2.example.com | [130a 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f52 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150578 gate 1528769773277085800 evaluation succeeds +peer1.org1.example.com | [1564 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1416 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer1.org2.example.com | [13b4 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer0.org2.example.com | [130b 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [f53 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1565 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer0.org1.example.com | [1410 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [13b5 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer0.org2.example.com | [130c 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f54 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1566 06-12 02:15:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1417 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [13b6 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [130d 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [f55 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org1.example.com | [1567 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1413 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [13b7 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [130e 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [f56 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [1568 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org1.example.com | [1419 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13b8 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 1] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org2.example.com | [130f 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [f57 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org1.example.com | [156a 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [141a 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [13b9 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1310 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [f58 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org1.example.com | [1569 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1418 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [13ba 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [1311 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [f59 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201e14c0) start: > stop: > from 172.18.0.7:35918 +peer1.org1.example.com | [156b 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [141b 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [13bc 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer0.org2.example.com | [1312 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [f5a 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer1.org1.example.com | [156d 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [141c 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1313 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [13bb 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f5b 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12121] +peer1.org1.example.com | [156c 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [141d 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1314 06-12 02:15:08.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [13bd 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +orderer.example.com | [f5c 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[69443], Going to peek [8] bytes +peer1.org1.example.com | [156e 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [141e 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1315 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [13be 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [f5d 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13956], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +peer1.org1.example.com | [156f 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [141f 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1316 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [13bf 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f5e 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13956] read from file [0] +peer1.org1.example.com | [1570 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1420 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1317 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [13c0 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [f5f 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201e14c0) for 172.18.0.7:35918 +peer1.org1.example.com | [1571 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1421 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1318 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [13c1 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f60 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35918 for (0xc4201e14c0) +peer1.org1.example.com | [1572 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1422 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1319 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [13c2 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [f61 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35918 +peer0.org1.example.com | [1423 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [1573 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [131a 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [13c3 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f62 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35918 +peer0.org1.example.com | [1424 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1574 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [131b 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [13c4 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [f63 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [1425 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1575 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [131c 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [13c5 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [f64 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [1426 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1576 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [131d 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [13c6 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f65 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [1427 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1577 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [131e 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13c7 06-12 02:15:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [f66 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [1428 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [1578 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [131f 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [13c8 06-12 02:15:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f67 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35918: rpc error: code = Canceled desc = context canceled +peer1.org1.example.com | [1579 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [142c 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1320 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13c9 06-12 02:15:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [157a 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [f68 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [142d 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org2.example.com | [1321 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer1.org2.example.com | [13ca 06-12 02:15:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [157b 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [f69 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [142f 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1322 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13cb 06-12 02:15:12.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [157c 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f6a 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35920 +peer0.org1.example.com | [1430 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1323 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer1.org2.example.com | [13cc 06-12 02:15:12.79 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [157d 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [f6b 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35920 +peer0.org1.example.com | [1431 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1324 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [13cd 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [157e 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [f6c 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [1432 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1325 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [13ce 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [157f 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [f6d 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [142e 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1326 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [13cf 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [1580 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [f6e 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer0.org1.example.com | [142a 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1327 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org2.example.com | [13d0 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [1581 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [f6f 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [142b 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1328 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org2.example.com | [13d1 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1583 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [f70 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org1.example.com | [1429 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [1329 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +peer1.org2.example.com | [13d2 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1584 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f71 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505c8 gate 1528769773469846200 evaluation starts +peer0.org1.example.com | [1433 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [132a 06-12 02:15:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13d3 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1582 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f72 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505c8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1434 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [132b 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [13d4 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1585 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f73 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [1435 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [132c 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [13d5 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [1586 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +orderer.example.com | [f74 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer0.org1.example.com | [1436 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [132d 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13d6 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1587 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +orderer.example.com | [f75 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505c8 principal evaluation fails +peer0.org1.example.com | [1437 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [132e 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [13d7 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1589 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f76 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505c8 gate 1528769773469846200 evaluation fails +peer0.org1.example.com | [1438 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [132f 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [158a 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [13d8 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [f77 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [1439 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1330 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [158b 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [13d9 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f78 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [143a 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1331 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [158c 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [13da 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [f79 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org1.example.com | [143b 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1332 06-12 02:15:08.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1588 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [13db 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f7a 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505d0 gate 1528769773471428200 evaluation starts +peer0.org1.example.com | [143c 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1333 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [158d 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [13dc 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [f7b 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [143d 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1334 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [158e 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [13dd 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [143e 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [f7c 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [1335 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [158f 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [13de 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [f7d 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org1.example.com | [143f 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1336 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1590 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [13df 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [f7e 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d0 principal evaluation fails +peer0.org1.example.com | [1440 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1337 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1591 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [13e0 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [f7f 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505d0 gate 1528769773471428200 evaluation fails +peer0.org1.example.com | [1441 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1338 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1592 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [13e1 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [f80 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [1442 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1339 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1593 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [13e2 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [f81 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [1443 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [133a 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1594 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [13e3 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [f82 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer0.org1.example.com | [1444 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [133b 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1595 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [13e4 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +orderer.example.com | [f83 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505d8 gate 1528769773473644600 evaluation starts +peer0.org1.example.com | [1445 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [133c 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1596 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [13e5 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [f84 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1447 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [133d 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1597 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [13e6 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020P" signature:"0D\002 &H\321!\374\231]\027i\230t&\274\247\0371E{\005\264\334pP\311*0\354>\367\255\251\037\002 \005\255\240\343\211k\322\272\332B\3462\020^4\304=\022\312\t\253\216\240\276\307\245\251R\370\035\272/" > alive: +orderer.example.com | [f85 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [1446 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [133e 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1598 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [13e7 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [f86 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer0.org1.example.com | [1449 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +peer0.org2.example.com | [133f 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [159a 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13e8 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f87 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d8 principal evaluation fails +peer0.org1.example.com | [1448 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f88 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505d8 gate 1528769773473644600 evaluation fails +peer1.org1.example.com | [159b 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [144a 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [f89 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [1340 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1599 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [13e9 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [144b 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1341 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [f8a 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [159c 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [13ea 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [144c 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1342 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [f8b 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer1.org1.example.com | [159d 06-12 02:15:17.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [144d 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [13eb 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1343 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +orderer.example.com | [f8c 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer1.org1.example.com | [159e 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [144e 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +peer1.org2.example.com | [13ec 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1344 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [f8d 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org1.example.com | [159f 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [144f 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [13ed 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f8e 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org2.example.com | [1345 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\241\324A[\002 23\005\t\321\376\322V\366\326\026\333\022\031\032g\357\034\366a!\336\3676t\325\017\"\317^L\323" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020L" signature:"0E\002!\000\322\334\376\262\320\0234\177\370\233\367\316\277v\344\370\034\005\226\253\020\240K\327K\345\236VuM\017\352\002 *\307\013\346\223\312S8$\221\355*\364\365\241TZE\3479w/[c\261\005V\334\301\361\241\215" > alive: alive: +peer1.org1.example.com | [15a0 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1450 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [13ee 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [f8f 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [1346 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [15a1 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1451 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc424267160 env 0xc424247680 txn 0 +peer1.org2.example.com | [13ef 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [f90 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org2.example.com | [1347 06-12 02:15:09.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [15a2 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1452 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424247680 +peer1.org2.example.com | [13f0 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [f91 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505e8 gate 1528769773476669500 evaluation starts +peer0.org2.example.com | [1348 06-12 02:15:09.59 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 +peer1.org1.example.com | [15a3 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1454 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [13f1 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [f92 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505e8 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [1349 06-12 02:15:09.59 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully +peer1.org1.example.com | [15a4 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1455 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [13f2 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [f93 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [134a 06-12 02:15:09.59 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org2.example.com-exp02-1.0 +peer1.org1.example.com | [15a5 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1456 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [13f3 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [f94 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505e8 principal matched by identity 0 +peer0.org2.example.com | [134b 06-12 02:15:09.67 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer0.org2.example.com-exp02-1.0-a1c0bed0de208402b290701943af8662423c1e8c10dbff920b90a3d16eb3fb80 +peer1.org1.example.com | [15a6 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [13f4 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1457 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [f95 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 97 73 57 ae 8f 7e 69 ba 34 ea e8 61 aa 09 23 1f |.sW..~i.4..a..#.| +peer0.org2.example.com | [134c 06-12 02:15:10.27 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Started container dev-peer0.org2.example.com-exp02-1.0 +peer1.org1.example.com | [15a7 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [13f5 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1458 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | 00000010 e6 8d 25 88 74 cc 75 63 9f f3 24 bd 3a 00 3f c6 |..%.t.uc..$.:.?.| +peer0.org2.example.com | [134d 06-12 02:15:10.27 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) +peer1.org1.example.com | [15a8 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [13f6 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1459 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [f96 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 8f 24 0e 82 56 ce a5 17 32 6a 61 |0D. ".$..V...2ja| +peer0.org2.example.com | [134e 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +peer1.org1.example.com | [15aa 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [13f7 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [145a 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | 00000010 a8 bf ce 8c 7e 28 2d a1 f2 d8 02 9c cc 71 e2 11 |....~(-......q..| +peer0.org2.example.com | [134f 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [15a9 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [13f8 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [145b 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | 00000020 71 f8 b5 1e 02 20 32 d0 cb 0a 5a 1a 09 71 65 2b |q.... 2...Z..qe+| +peer0.org2.example.com | [1350 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [15ab 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [13f9 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [145c 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | 00000030 1e f6 c0 7e 0f 12 bc bf de 34 23 c8 5a ca fd 2c |...~.....4#.Z..,| +peer0.org2.example.com | [1351 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org1.example.com | [15ac 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [13fa 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [145d 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | 00000040 11 0d 33 30 d5 7d |..30.}| +peer0.org2.example.com | [1352 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org1.example.com | [15ad 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 87 but got ts: inc_num:1528769652429776900 seq_num:86 +peer1.org2.example.com | [13fb 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [145e 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [f97 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505e8 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [1353 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org1.example.com | [15ae 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [13fc 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [145f 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [f98 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505e8 gate 1528769773476669500 evaluation succeeds +peer0.org2.example.com | [1354 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" +peer1.org1.example.com | [15af 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [13fd 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1460 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [f99 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1355 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" +peer1.org1.example.com | [15b0 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [13fe 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1461 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes +orderer.example.com | [f9a 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1356 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" +peer1.org1.example.com | [15b1 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1400 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1462 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [f9b 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org2.example.com | [1357 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org1.example.com | [15b2 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [13ff 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1463 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f9c 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org2.example.com | [1358 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer1.org1.example.com | [15b3 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1402 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1464 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +orderer.example.com | [f9d 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org2.example.com | [1359 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [1401 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [15b4 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1465 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [f9e 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org2.example.com | [135a 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1770949c] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [15b5 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1403 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1466 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +orderer.example.com | [f9f 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203ec340) start: > stop: > from 172.18.0.7:35920 +peer0.org2.example.com | [135b 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1770949c] handling PUT_STATE from chaincode +peer1.org1.example.com | [15b6 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1404 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1467 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +orderer.example.com | [fa0 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org2.example.com | [135c 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1770949c] Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [15b7 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1405 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1468 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [fa1 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] +peer0.org2.example.com | [135d 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1770949c] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org1.example.com | [15b8 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1406 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [146a 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | [fa2 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[55485], Going to peek [8] bytes +peer0.org2.example.com | [135e 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1770949c] handling PUT_STATE from chaincode +peer1.org1.example.com | [15b9 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1407 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1469 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [fa3 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +peer0.org2.example.com | [135f 06-12 02:15:10.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1770949c] Completed PUT_STATE. Sending RESPONSE +peer1.org1.example.com | [15ba 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1408 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [146b 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [fa4 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +peer0.org2.example.com | [1360 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1770949c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [15bb 06-12 02:15:17.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1409 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [146c 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [fa5 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203ec340) for 172.18.0.7:35920 +peer0.org2.example.com | [1361 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1770949c] notifying Txid:1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, channelID:businesschannel +peer1.org1.example.com | [15bc 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [140a 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [146d 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [fa6 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35920 for (0xc4203ec340) +peer0.org2.example.com | [1362 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [15bd 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [140b 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +orderer.example.com | [fa7 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35920 +peer0.org1.example.com | [1470 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1363 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] Exit +peer1.org1.example.com | [15be 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [140c 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +orderer.example.com | [fa8 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35920 +peer0.org1.example.com | [146e 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1364 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [15bf 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [140d 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [fa9 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [146f 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [1365 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +peer1.org1.example.com | [15c0 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [140e 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [faa 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [1453 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +peer0.org2.example.com | [1367 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [15c1 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [140f 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [fab 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [1471 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1368 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [15c2 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1410 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [fac 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [1472 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020P" signature:"0D\002 &H\321!\374\231]\027i\230t&\274\247\0371E{\005\264\334pP\311*0\354>\367\255\251\037\002 \005\255\240\343\211k\322\272\332B\3462\020^4\304=\022\312\t\253\216\240\276\307\245\251R\370\035\272/" > +peer0.org2.example.com | [1369 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [15c3 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1412 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +orderer.example.com | [fad 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35920: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [1473 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [136a 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +peer1.org1.example.com | [15c4 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1411 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [fae 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [1475 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [1366 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][1770949c] Exit +peer1.org1.example.com | [15c5 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1414 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [faf 06-12 02:16:13.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [1476 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [136b 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][1770949c] Entry chaincode: name:"lscc" +peer1.org1.example.com | [15c6 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1415 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [fb0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35922 +peer0.org1.example.com | [1477 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [136c 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][1770949c] escc for chaincode name:"lscc" is escc +peer1.org1.example.com | [15c7 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [fb1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35922 +peer1.org2.example.com | [1413 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1478 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [136d 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, chaincode: lscc} +peer1.org1.example.com | [15c8 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [fb2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org2.example.com | [1416 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1479 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org2.example.com | [136e 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, chaincode: lscc} +peer1.org1.example.com | [15c9 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [fb3 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [1417 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [147a 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [136f 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][1770949c] Exit +peer1.org1.example.com | [15ca 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [fb4 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org2.example.com | [1418 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [147b 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [1370 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +orderer.example.com | [fb5 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [15cb 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1419 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1474 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1372 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:59436 +orderer.example.com | [fb6 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer1.org1.example.com | [15cc 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [141a 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [147c 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc424288a80, header channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +peer0.org2.example.com | [1371 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | [fb7 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e060 gate 1528769773620888200 evaluation starts +peer1.org1.example.com | [15cd 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [141b 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org1.example.com | [147d 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [1373 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [4] +orderer.example.com | [fb8 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e060 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [15ce 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [141c 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [147e 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [1374 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] +orderer.example.com | [fb9 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e060 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [15cf 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [141f 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1480 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [1375 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [4] +orderer.example.com | [fba 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e060 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer1.org1.example.com | [15d0 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [141d 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1481 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +orderer.example.com | [fbb 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e060 principal evaluation fails +peer0.org2.example.com | [1376 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +peer1.org1.example.com | [15d1 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [141e 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1482 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +orderer.example.com | [fbc 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e060 gate 1528769773620888200 evaluation fails +peer0.org2.example.com | [1377 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +peer1.org1.example.com | [15d2 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1420 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1483 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +orderer.example.com | [fbd 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [1378 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [8d42f8b9-a95d-4718-8d6c-340767a7a00a] +peer1.org1.example.com | [15d3 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1422 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [147f 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [fbe 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [1379 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] +peer1.org1.example.com | [15d4 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1423 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1484 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc42428d000 +orderer.example.com | [fbf 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org2.example.com | [137a 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [15d5 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1421 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1485 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin +orderer.example.com | [fc0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1528769773621806800 evaluation starts +peer0.org2.example.com | [137b 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] +peer1.org1.example.com | [15d6 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1425 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1486 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +orderer.example.com | [fc1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [137c 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [8d42f8b9-a95d-4718-8d6c-340767a7a00a] +peer1.org1.example.com | [15d7 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1424 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1487 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +orderer.example.com | [fc2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [137d 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] +peer1.org1.example.com | [15d8 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1426 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1488 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [fc3 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org2.example.com | [137e 06-12 02:15:10.31 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +peer1.org1.example.com | [15d9 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1427 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1489 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: validating invocation of lscc function deploy on arguments [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} +orderer.example.com | [fc4 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 principal evaluation fails +peer0.org2.example.com | [137f 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +peer1.org1.example.com | [15da 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1428 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [148a 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +orderer.example.com | [fc5 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1528769773621806800 evaluation fails +peer0.org2.example.com | [1380 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [15db 06-12 02:15:18.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1429 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [148b 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +orderer.example.com | [fc6 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [1381 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac +peer1.org1.example.com | [15dc 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [142a 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [148c 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [23a5ed44-a56c-4a1d-98e2-f043ba7f3441] +orderer.example.com | [fc7 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [1382 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [15dd 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [142b 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [148d 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [1383 06-12 02:15:10.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [fc8 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer1.org1.example.com | [15de 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [142c 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [148e 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [23a5ed44-a56c-4a1d-98e2-f043ba7f3441] +peer0.org2.example.com | [1384 06-12 02:15:10.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [fc9 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1528769773622529100 evaluation starts +peer1.org1.example.com | [15df 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [142d 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [148f 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org2.example.com | [1385 06-12 02:15:10.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [fca 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [15e0 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [142e 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1490 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer0.org2.example.com | [1386 06-12 02:15:10.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [fcb 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [15e1 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [142f 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1491 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated +peer0.org2.example.com | [1387 06-12 02:15:10.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [fcc 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer1.org1.example.com | [15e2 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1430 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1492 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 appears to be invalid: Chaincode exp02 is already instantiated +peer0.org2.example.com | [1388 06-12 02:15:10.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [fcd 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 principal evaluation fails +peer1.org1.example.com | [15e3 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1431 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1494 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1389 06-12 02:15:10.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [fce 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1528769773622529100 evaluation fails +peer1.org1.example.com | [15e4 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1432 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1495 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [138a 06-12 02:15:10.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [fcf 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [1433 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [15e5 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1493 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc42428d000 +peer0.org2.example.com | [138b 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fd0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [1434 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [15e6 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [138c 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1497 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 returned error: Chaincode exp02 is already instantiated +orderer.example.com | [fd1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer1.org2.example.com | [1435 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [15e7 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [138d 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1498 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc424267160 env 0xc424247680 txn 0 +orderer.example.com | [fd2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer1.org2.example.com | [1436 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [15e8 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [138e 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1496 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [fd3 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org2.example.com | [1437 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [15e9 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [138f 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1499 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [fd4 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer1.org2.example.com | [1438 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [15ea 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1390 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [149a 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +orderer.example.com | [fd5 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [1439 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [15eb 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1391 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [149b 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +orderer.example.com | [fd6 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org2.example.com | [143a 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [15ec 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1392 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [149c 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +orderer.example.com | [fd7 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1528769773624605700 evaluation starts +peer1.org2.example.com | [143b 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [15ed 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [149d 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [1393 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [fd8 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [143c 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [15ee 06-12 02:15:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [149e 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +peer0.org2.example.com | [1394 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [143d 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [fd9 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [15ef 06-12 02:15:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [149f 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [1395 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [143e 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [fda 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal matched by identity 0 +peer1.org1.example.com | [15f1 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [14a0 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer0.org2.example.com | [1396 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [143f 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [fdb 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 09 b6 49 3a e6 50 5d 97 c4 bf e5 da 00 62 fc 7e |..I:.P]......b.~| +peer1.org1.example.com | [15f2 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [14a1 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [1397 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1440 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | 00000010 bf 4c 6b d1 70 7f 7a 58 34 b5 4d d4 a3 97 19 db |.Lk.p.zX4.M.....| +peer1.org1.example.com | [15f0 06-12 02:15:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1398 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1441 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [fdc 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b 11 92 26 8f 34 45 50 8c 72 a7 ae |0D. ...&.4EP.r..| +peer1.org1.example.com | [15f3 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [14a2 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [1399 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000010 4a 2c 78 07 12 fd dd 23 ef b2 cf 1c df 98 6e 18 |J,x....#......n.| +peer1.org2.example.com | [1442 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [15f4 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [14a3 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [139a 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | 00000020 8b 55 31 46 02 20 16 bd f4 a5 81 3b ac 18 30 15 |.U1F. .....;..0.| +peer1.org2.example.com | [1443 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [15f5 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [14a4 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +peer0.org2.example.com | [139c 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | 00000030 d4 24 5c d1 b5 61 0b ac e7 30 2c e9 da aa 34 cc |.$\..a...0,...4.| +peer1.org2.example.com | [1444 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [15f6 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14a5 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [139d 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | 00000040 44 61 d6 c2 6b 0b |Da..k.| +peer1.org2.example.com | [1445 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [15f7 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [14a6 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [139e 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fdd 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [1446 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [15f8 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14a7 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [139f 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [fde 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1528769773624605700 evaluation succeeds +peer1.org2.example.com | [1448 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [15f9 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [14a8 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [13a0 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fdf 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1449 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [15fa 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [14a9 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [13a1 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [fe0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1447 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14aa 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [15fb 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [139b 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [fe1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org2.example.com | [144a 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [14ab 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [15fc 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [13a2 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fe2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org2.example.com | [144b 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [14ad 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [15fd 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [13a3 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [fe3 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [144c 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14ae 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [15fe 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [13a4 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fe4 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org2.example.com | [144d 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [14ac 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [15ff 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [13a5 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [fe5 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4200b7b60) start: > stop: > from 172.18.0.7:35922 +peer1.org2.example.com | [144e 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [14af 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1600 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [13a6 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [fe6 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer1.org2.example.com | [144f 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14b0 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1601 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [13a7 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fe7 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40095] +peer1.org2.example.com | [1450 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1602 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [14b1 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] +peer0.org2.example.com | [13a8 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [fe8 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[41469], Going to peek [8] bytes +peer1.org2.example.com | [1451 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1603 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [14b2 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [13a9 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fe9 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[40095], bytesOffset=[40097]} +peer1.org2.example.com | [1452 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1604 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [14b3 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [13aa 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fea 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] +peer1.org2.example.com | [1453 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org1.example.com | [1606 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [14b4 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [13ab 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [feb 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200b7b60) for 172.18.0.7:35922 +peer1.org2.example.com | [1454 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 83 but got ts: inc_num:1528769652429776900 seq_num:82 +peer1.org1.example.com | [1607 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [14b5 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [13ac 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [fec 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35922 for (0xc4200b7b60) +peer1.org2.example.com | [1455 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1608 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [14b6 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [13ad 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fed 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35922 +peer1.org2.example.com | [1456 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1609 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [14b7 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [13ae 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [fee 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35922 +peer1.org1.example.com | [160a 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [1457 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [14b8 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [13af 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [fef 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org1.example.com | [160b 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1458 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [14b9 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xb2, 0x2, 0x73, 0xc0, 0x68, 0xb4, 0x1b, 0x5, 0x97, 0xfa, 0x28, 0x78, 0xb9, 0x53, 0x7d, 0x1c, 0xa4, 0x85, 0x7c, 0xde, 0xf6, 0x7e, 0x5d, 0x4d, 0x44, 0xc8, 0x94, 0x3b, 0x89, 0xd3, 0x6c, 0x25} txOffsets= +peer0.org2.example.com | [13b0 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [ff0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org1.example.com | [1605 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020W" signature:"0E\002!\000\231q\252\273\3112\177\010\315\346#\226\221w\rs\375z\273\273>\324\007\206\326n\220\200`J\002\341\002 d&\343\303\361\007\221$\221\340\234\276\236\213\346\337[Y\021~n\024\361V\237\024\233a\333\31306" > alive: alive:\001\231m\r\367WZ\251\237\302\234\316\274\227R\360\363" > alive: +peer1.org2.example.com | [1459 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | txId=1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 locPointer=offset=70, bytesLength=3460 +peer0.org2.example.com | [13b1 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [ff1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org1.example.com | [160c 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [145a 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes peer0.org1.example.com | ] -peer0.org1.example.com | [14e7 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to index -peer0.org1.example.com | [14e8 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx number:[0] ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to blockNumTranNum index -peer0.org1.example.com | [14e9 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50743], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org1.example.com | [14ea 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] -peer0.org1.example.com | [14eb 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] -peer0.org1.example.com | [14ec 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -peer0.org1.example.com | [14ed 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer0.org1.example.com | [14ee 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [14ef 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [14f0 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [14f1 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] -peer0.org1.example.com | [14f2 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -peer0.org1.example.com | [14f3 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org1.example.com | [14f4 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer1.org2.example.com | [165f 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1660 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1661 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1662 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1663 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1664 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1665 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1666 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1667 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1668 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1669 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [166a 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [166b 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [166c 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [166d 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [166e 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [166f 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1670 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1671 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1672 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1673 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1674 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1675 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1676 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1677 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1678 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1679 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [167a 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [167b 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [167c 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [167d 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [167e 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1680 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1681 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [167f 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1682 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1683 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1684 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1685 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1686 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1687 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1688 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1689 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [168a 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [168b 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [168c 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [168e 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [168d 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [168f 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1690 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1691 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [14f5 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer0.org1.example.com | [14f6 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [14f7 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c -peer0.org1.example.com | [14f8 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [14f9 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [14fa 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [14fb 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [14fc 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [14fd 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [14fe 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [14ff 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [1500 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [1501 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1502 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1503 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1504 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1505 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1506 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1507 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1508 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1509 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [150a 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [150b 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [150c 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [150d 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [150e 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [150f 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1510 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1511 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [f8a 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [f8b 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e310 gate 1527744216227507700 evaluation starts -orderer.example.com | [f8c 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e310 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f8d 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e310 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [f8e 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e310 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [f8f 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e310 principal evaluation fails -orderer.example.com | [f90 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e310 gate 1527744216227507700 evaluation fails -orderer.example.com | [f91 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [f92 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [f93 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [f94 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e318 gate 1527744216230253400 evaluation starts -orderer.example.com | [f95 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e318 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [f96 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e318 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [f97 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e318 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -peer1.org1.example.com | [13ba 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [13bb 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [13bc 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [13bd 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [13be 05-31 05:22:34.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13bf 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [13c0 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [13c1 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13c2 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [13c3 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [13c4 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [13c5 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [13c6 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [13c7 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [13c8 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [13c9 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [13ca 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [13cb 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [13cc 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [13cd 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [13ce 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Q" signature:"0E\002!\000\374\177\213\274\037w\030\225\324.W>\035\266+\016\254\200\236\211\307\017\0371\375\017\035\213\2355u\022\002 C\361\234\303\365\244\021\227\356\361\333;\231\300\357\323H}\377\332R\317E\270F\373\2150\0008\201S" > alive: alive: alive: -peer1.org1.example.com | [13cf 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [13d0 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [13d1 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [13d2 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [13d3 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13d4 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [13d5 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [13d6 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [13d7 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [13d8 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13d9 05-31 05:22:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [13da 05-31 05:22:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [13db 05-31 05:22:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [13dd 05-31 05:22:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [13de 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [13dc 05-31 05:22:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [13df 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [13e1 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [13e0 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [13e2 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13e3 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [13e4 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [13e5 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [13e6 05-31 05:22:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13e7 05-31 05:22:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -peer1.org1.example.com | [13e8 05-31 05:22:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13e9 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer0.org1.example.com | [1512 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1513 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1514 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1515 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1516 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1517 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1518 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1519 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [151a 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [151b 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [151c 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [151d 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [151e 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [151f 05-31 05:22:36.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [1520 05-31 05:22:36.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1521 05-31 05:22:36.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1522 05-31 05:22:36.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1523 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1525 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1526 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1524 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1527 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1528 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1529 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [152a 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [152b 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [152c 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [152d 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [152e 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [152f 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1530 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1531 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1532 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1533 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1535 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1534 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1536 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1537 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1538 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1539 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [153a 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [153b 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [153c 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [153d 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [153e 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [153f 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1540 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1541 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1542 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1543 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1544 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1545 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1546 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1547 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1548 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1549 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [154a 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [154b 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [154c 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [154d 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [154e 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [154f 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1550 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1551 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1552 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1553 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1554 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1555 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1556 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1557 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1558 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1559 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [155a 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1692 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1693 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1694 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1695 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1696 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1697 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1698 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1699 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [169a 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [169b 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [169c 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [169d 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [169e 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [169f 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [16a0 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16a1 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [16a2 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16a3 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16a4 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16a5 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [16a6 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [16a7 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [16a8 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [16a9 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [16ab 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [16ac 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [16ad 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [16aa 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [16ae 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16af 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [16b0 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [16b1 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [16b2 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [16b3 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [16b4 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [16b6 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [16b7 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [16b8 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [16b9 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16ba 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [16bb 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16bc 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [16b5 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [16bd 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [16be 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [16bf 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [16c0 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [16c1 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [16c2 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [16c3 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [16c5 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16c6 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16c7 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [16c4 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [16c8 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [16c9 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [16ca 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [16cb 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [16cc 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [16cd 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [16ce 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [16cf 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [16d0 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [16d1 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [155b 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [155c 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [155d 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [155e 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [155f 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1560 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1561 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1562 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1563 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1564 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1565 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1566 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1567 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1568 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [1569 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [156a 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020X" signature:"0D\002 [W!\333\241\3020\245\001S\363)\336\027\021\021< -peer0.org1.example.com | [156b 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [156c 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [156d 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [13ea 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [13eb 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [13ec 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [13ed 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org1.example.com | [13ee 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org1.example.com | [13ef 05-31 05:22:35.14 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -peer1.org1.example.com | [13f0 05-31 05:22:35.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13f1 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [13f2 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [13f3 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13f4 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [13f5 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [13f6 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13f7 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [13f8 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [13f9 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [13fa 05-31 05:22:35.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [13fb 05-31 05:22:35.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [13fc 05-31 05:22:35.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [13fd 05-31 05:22:35.53 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [13fe 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [13ff 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [1400 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1401 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1402 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1403 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1404 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1405 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [f98 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e318 principal evaluation fails -orderer.example.com | [f99 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e318 gate 1527744216230253400 evaluation fails -orderer.example.com | [f9a 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [f9b 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [f9c 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [f9d 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [f9e 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [f9f 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [fa0 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [fa1 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [fa2 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e320 gate 1527744216236741700 evaluation starts -orderer.example.com | [fa3 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fa4 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [fa5 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 principal matched by identity 0 -orderer.example.com | [fa6 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 4a 9b 9c 86 ec a9 36 db 58 13 66 5e 56 62 ab af |J.....6.X.f^Vb..| -orderer.example.com | 00000010 ea aa 6c 48 11 46 22 c6 e1 fa 37 f9 f2 be 30 78 |..lH.F"...7...0x| -orderer.example.com | [fa7 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d6 7b 77 95 7d fe 67 ad 73 42 2c |0E.!..{w.}.g.sB,| -orderer.example.com | 00000010 73 0f 48 81 93 95 4c 53 cf a5 3a f4 6d 2d 29 ac |s.H...LS..:.m-).| -orderer.example.com | 00000020 d8 3f 65 9f 8f 02 20 41 5b 05 8c ec b8 b1 00 c0 |.?e... A[.......| -orderer.example.com | 00000030 ed df 28 84 f3 87 be 08 02 74 00 84 ba 99 a3 cf |..(......t......| -orderer.example.com | 00000040 f4 72 1b 0e 8e 00 c4 |.r.....| -orderer.example.com | [fa8 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 principal evaluation succeeds for identity 0 -orderer.example.com | [fa9 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e320 gate 1527744216236741700 evaluation succeeds -orderer.example.com | [faa 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [fab 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [fac 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [fad 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [fae 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [faf 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [fb0 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42000c3e0) start: > stop: > from 172.18.0.7:41474 -orderer.example.com | [fb1 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [fb2 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -orderer.example.com | [fb3 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[69444], Going to peek [8] bytes -orderer.example.com | [fb4 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -orderer.example.com | [fb5 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -orderer.example.com | [fb6 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42000c3e0) for 172.18.0.7:41474 -orderer.example.com | [fb7 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41474 for (0xc42000c3e0) -orderer.example.com | [fb9 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [fba 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [fbb 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [fbc 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [fb8 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41474 -orderer.example.com | [fbd 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41474 -orderer.example.com | [fbe 05-31 05:23:36.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41474: rpc error: code = Canceled desc = context canceled -orderer.example.com | [fbf 05-31 05:23:36.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [fc0 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [fc1 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41476 -orderer.example.com | [fc2 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41476 -orderer.example.com | [fc3 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [fc4 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [fc5 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [fc6 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -peer1.org2.example.com | [16d2 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [16d3 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [16d4 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [16d5 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16d6 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16d7 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [16d8 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16d9 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [16db 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16dc 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [16dd 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16da 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16de 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [16df 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [16e0 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16e1 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [16e2 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [16e3 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [16e4 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [16e5 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [16e6 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [16e7 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [16e8 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [16e9 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [16ea 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [16eb 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [16ec 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1406 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1407 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1409 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1408 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [140b 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [140c 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [140a 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [140d 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [140e 05-31 05:22:35.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [140f 05-31 05:22:35.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1410 05-31 05:22:35.55 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1411 05-31 05:22:35.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1412 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\t\342\361'" > > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [15cb 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [15ca 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [15cc 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [15cd 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [15ce 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [15cf 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [15d0 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [15d1 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [15d2 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [15d3 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [15d4 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [15d6 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [15d5 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [15d8 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [15d7 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [15d9 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [15da 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [15db 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [15dc 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org2.example.com | [15dd 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org2.example.com | [15de 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [15df 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org2.example.com | [15e1 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [15e2 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [15e0 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [15e3 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [15e4 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [15e5 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [15e6 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [15e7 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [15e8 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [15e9 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [15ea 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [15eb 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [15ec 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [15ed 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [15ee 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [15f0 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [15ef 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [15f1 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [15f3 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [15f2 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [15f4 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [15f5 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [15f6 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [15f7 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [15f8 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [15f9 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [15fa 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [15fb 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [15fc 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [15fd 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [15fe 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [15ff 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1600 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1601 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1602 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1603 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1604 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1605 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1606 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1607 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1608 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1609 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [160a 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [16ed 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [16ee 05-31 05:22:46.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [16ef 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [16f0 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16f1 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [16f2 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16f3 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [16f4 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [16f5 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [16f6 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16f7 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [16f8 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [16f9 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [16fa 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16fb 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [16fc 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [16fd 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [16fe 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [16ff 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1700 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1701 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1702 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1703 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1704 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1413 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1414 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1415 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1416 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1417 05-31 05:22:35.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org1.example.com | [1418 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1419 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [141a 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [141b 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [141c 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [141d 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [141e 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [141f 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1420 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1421 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1422 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1423 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org1.example.com | [1424 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1425 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1426 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1427 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1428 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [156e 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1570 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1571 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [156f 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1572 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1573 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1574 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1575 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1576 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1577 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [1578 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1579 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer0.org1.example.com | [157a 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [157b 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [157c 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [157d 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [157e 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [157f 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1580 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1581 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1582 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1583 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1584 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1585 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1586 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1587 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1588 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org1.example.com | [1589 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org1.example.com | [158a 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [158b 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [158c 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [158d 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [158e 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [158f 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1590 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1591 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1592 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1593 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1594 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1595 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1596 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 1] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1597 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1598 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1599 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [159a 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [159b 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [159c 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [159d 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [159e 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1705 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1706 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1707 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [1708 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1709 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020b" signature:"0D\002 '\265!/\223m\362@\307L>1\210\3465\000I1\376\013?\r}H\352>W6\333KE\023\002 Q\324\361\222\005\021\024u\341q\242J@\026\ny\205\212S1D\227yNM\240\205\352\255I\275%" > alive: alive: alive: -peer1.org2.example.com | [170a 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [170b 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [170c 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [170d 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [170e 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [170f 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1710 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1711 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1712 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1713 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [1714 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1715 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [1716 05-31 05:22:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1717 05-31 05:22:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [1718 05-31 05:22:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1719 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [171a 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [171b 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [171c 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [171d 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [171e 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [171f 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1720 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1721 05-31 05:22:47.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org2.example.com | [1722 05-31 05:22:47.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org2.example.com | [1723 05-31 05:22:47.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1724 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1725 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1726 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1727 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1728 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1729 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [172a 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [172b 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [172c 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [172d 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [172e 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [172f 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1730 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1731 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1733 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1734 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [fc7 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [fc8 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8380 gate 1527744216465731700 evaluation starts -orderer.example.com | [fc9 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8380 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fca 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8380 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [fcb 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8380 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [fcc 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8380 principal evaluation fails -orderer.example.com | [fcd 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8380 gate 1527744216465731700 evaluation fails -orderer.example.com | [fce 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [fcf 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [fd0 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [fd1 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8398 gate 1527744216468267100 evaluation starts -orderer.example.com | [fd2 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8398 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fd3 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8398 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [fd4 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8398 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [fd5 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8398 principal evaluation fails -orderer.example.com | [fd6 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8398 gate 1527744216468267100 evaluation fails -orderer.example.com | [fd7 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [fd8 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [fd9 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [fda 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83a0 gate 1527744216471169100 evaluation starts -orderer.example.com | [fdb 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fdc 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [fdd 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [fde 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a0 principal evaluation fails -orderer.example.com | [fdf 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83a0 gate 1527744216471169100 evaluation fails -orderer.example.com | [fe0 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [fe1 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [fe2 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] -orderer.example.com | [fe3 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [fe4 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [fe5 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [fe6 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [fe7 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [fe8 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83a8 gate 1527744216474039900 evaluation starts -orderer.example.com | [fe9 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [fea 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [feb 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a8 principal matched by identity 0 -orderer.example.com | [fec 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 cb 31 fb 4c a9 9f 4c fe f8 be 21 56 93 9c 9b b8 |.1.L..L...!V....| -orderer.example.com | 00000010 99 d9 36 a4 12 03 94 a3 c9 ca 83 ff 88 53 93 33 |..6..........S.3| -orderer.example.com | [fed 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f1 42 92 a5 7d b4 ad 32 af cc 8b |0E.!..B..}..2...| -orderer.example.com | 00000010 9e e6 d7 86 55 00 78 06 ba 80 39 a4 c8 56 cc e4 |....U.x...9..V..| -orderer.example.com | 00000020 c0 83 bc f5 d1 02 20 07 15 ad 00 e1 3d 65 6e 24 |...... .....=en$| -orderer.example.com | 00000030 c8 bf 88 90 a8 21 f5 13 74 02 00 52 d1 77 8f 9f |.....!..t..R.w..| -orderer.example.com | 00000040 fd af 7c 42 e4 f5 dd |..|B...| -orderer.example.com | [fee 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a8 principal evaluation succeeds for identity 0 -orderer.example.com | [fef 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83a8 gate 1527744216474039900 evaluation succeeds -orderer.example.com | [ff0 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [ff1 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [ff2 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [ff3 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [ff4 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [ff5 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [ff6 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203a0640) start: > stop: > from 172.18.0.7:41476 -orderer.example.com | [ff7 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [ff8 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] -orderer.example.com | [ff9 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[55485], Going to peek [8] bytes -orderer.example.com | [ffa 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -orderer.example.com | [ffb 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -orderer.example.com | [ffc 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203a0640) for 172.18.0.7:41476 -orderer.example.com | [ffd 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41476 for (0xc4203a0640) -orderer.example.com | [ffe 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41476 -orderer.example.com | [fff 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41476 -orderer.example.com | [1000 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [1001 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [1002 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [1003 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [1004 05-31 05:23:36.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41476: rpc error: code = Canceled desc = context canceled -orderer.example.com | [1005 05-31 05:23:36.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [1006 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [1007 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41478 -orderer.example.com | [1008 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41478 -orderer.example.com | [1009 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [100a 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [100b 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [100c 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [100d 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [100e 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84b0 gate 1527744216698171600 evaluation starts -peer1.org1.example.com | [1429 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [142a 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [142b 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [142c 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [142d 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [142e 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [142f 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1430 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1431 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1432 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1433 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1434 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1435 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1436 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1437 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1438 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1439 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [143a 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [143b 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [143c 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [143d 05-31 05:22:35.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [143e 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [143f 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1440 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1442 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org1.example.com | [159f 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [15a0 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [15a1 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [15a2 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15a3 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [15a4 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15a5 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [15a6 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [15a7 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [15a8 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [15a9 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [15aa 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [15ab 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [15ac 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [15ad 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [15ae 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [15af 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [15b0 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [15b1 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Y" signature:"0D\002 \"R\235\376\3019\200\263\331\265\216\232\363Rk\031\363\327~\266x\304\316\211\\\345+\201\337=\001\005\002 0\246~\314\374#\211\002\226\314\177\266\3469.\013\331\264:\310\302\3562\330\255~N\353}\025;o" secret_envelope: > -peer0.org1.example.com | [15b2 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [15b3 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1732 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > alive: alive:\022m-\242W\275\345" > -peer1.org2.example.com | [1735 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1736 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1737 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1738 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1739 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [173a 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [173b 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [173c 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [173d 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [173e 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [173f 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1740 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1741 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1742 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1743 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1744 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1745 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1746 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1747 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > -peer1.org2.example.com | [1748 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org2.example.com | [1749 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [174a 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [174b 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [174c 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [174d 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [174e 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [174f 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1750 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1751 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1753 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1752 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1755 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1756 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1757 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1758 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1759 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [175a 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [175b 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1754 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [175c 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [175d 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1441 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1443 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1444 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 83 but got ts: inc_num:1527744090808810100 seq_num:82 -peer1.org1.example.com | [1445 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1446 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1447 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1448 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 83 but got ts: inc_num:1527744091618763800 seq_num:82 -peer1.org1.example.com | [1449 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [144a 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [144b 05-31 05:22:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [144c 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [144d 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [144e 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [144f 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1450 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1451 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1452 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1453 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1454 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1455 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1456 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1457 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org1.example.com | [1459 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [145a 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [145b 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [15b4 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [15b5 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [15b6 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15b7 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [15b8 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [15b9 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [15ba 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [15bb 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes -peer0.org1.example.com | [15bc 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [15bd 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [15be 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [15bf 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [15c0 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [15c1 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [15c2 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes -peer0.org1.example.com | [15c3 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes -peer0.org1.example.com | [15c4 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes -peer0.org1.example.com | [15c5 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15c6 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [15c7 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [15c8 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15c9 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [15ca 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [160b 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 86 but got ts: inc_num:1527744091618763800 seq_num:85 -peer0.org2.example.com | [160c 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [160d 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [160e 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [160f 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1610 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1611 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1612 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1613 05-31 05:22:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1614 05-31 05:22:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1615 05-31 05:22:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1616 05-31 05:22:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1617 05-31 05:22:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1618 05-31 05:22:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1619 05-31 05:22:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [161a 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer0.org2.example.com | [161b 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer0.org2.example.com | [161c 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [161d 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [161e 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42342bfa0 env 0xc423629170 txn 0 -peer0.org2.example.com | [161f 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423629170 -orderer.example.com | [100f 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84b0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1010 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1011 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [1012 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84b0 principal evaluation fails -orderer.example.com | [1013 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84b0 gate 1527744216698171600 evaluation fails -orderer.example.com | [1014 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [1015 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [1016 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [1017 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84d0 gate 1527744216700430700 evaluation starts -orderer.example.com | [1018 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1019 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [101a 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [101b 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84d0 principal evaluation fails -orderer.example.com | [101c 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84d0 gate 1527744216700430700 evaluation fails -orderer.example.com | [101d 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [101e 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [101f 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [1020 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84f8 gate 1527744216702718400 evaluation starts -orderer.example.com | [1021 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 signed by 0 principal evaluation starts (used [false]) -peer1.org1.example.com | [1458 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [145c 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [145d 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [145e 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [145f 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1460 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [1461 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1462 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [1463 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1464 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1465 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1466 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1467 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1468 05-31 05:22:35.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1469 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [146a 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [146b 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [146c 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [146d 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [146e 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [146f 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1470 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15cb 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [15cc 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15cd 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [15ce 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [15cf 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [15d1 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [15d2 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [15d3 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [15d0 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [15d4 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [15d5 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [15d6 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [15d7 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15d8 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [15d9 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org1.example.com | [15da 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [15db 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [15dc 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [15de 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [15df 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [15e0 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [15dd 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [15e1 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [15e2 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [15e3 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [15e4 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [15e5 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [15e6 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [15e7 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [15e8 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org1.example.com | [15e9 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [15ea 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [15ec 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [15eb 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [15ed 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [15ee 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [15ef 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [15f0 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [15f1 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [15f2 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [15f3 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [15f4 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 86 but got ts: inc_num:1527744091508552400 seq_num:85 -peer0.org1.example.com | [15f5 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [15f6 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [15f7 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -orderer.example.com | [1022 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1023 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [1024 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 principal evaluation fails -orderer.example.com | [1025 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84f8 gate 1527744216702718400 evaluation fails -orderer.example.com | [1026 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [1027 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [1028 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [1029 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [102a 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [102b 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [102c 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [102d 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [102e 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8518 gate 1527744216705844900 evaluation starts -orderer.example.com | [102f 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8518 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1030 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8518 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1031 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8518 principal matched by identity 0 -orderer.example.com | [1032 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 47 97 df 55 78 8d 44 58 cc 75 63 f3 66 b6 3a 29 |G..Ux.DX.uc.f.:)| -orderer.example.com | 00000010 af e4 b8 78 a1 0b df d3 34 f7 4d 6c 19 27 ea 76 |...x....4.Ml.'.v| -orderer.example.com | [1033 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 85 5e f2 1d 86 21 8b 43 5f de 37 |0E.!..^...!.C_.7| -orderer.example.com | 00000010 8d c6 ad f3 01 c9 ed 8e 17 fa 83 11 88 1d 58 a0 |..............X.| -orderer.example.com | 00000020 fc 47 6d 44 2c 02 20 7b d9 3a c1 70 b1 b5 26 2b |.GmD,. {.:.p..&+| -orderer.example.com | 00000030 bf 48 73 2d 6a ef 28 14 15 38 44 09 6e bf dd bd |.Hs-j.(..8D.n...| -orderer.example.com | 00000040 ea 9c 3d d2 74 77 1c |..=.tw.| -orderer.example.com | [1034 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8518 principal evaluation succeeds for identity 0 -orderer.example.com | [1035 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8518 gate 1527744216705844900 evaluation succeeds -orderer.example.com | [1036 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1037 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1038 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [1039 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [103a 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [103b 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [103c 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203ae200) start: > stop: > from 172.18.0.7:41478 -orderer.example.com | [103d 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [103e 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40094] -orderer.example.com | [103f 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[41470], Going to peek [8] bytes -orderer.example.com | [1040 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -orderer.example.com | [1041 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [1042 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203ae200) for 172.18.0.7:41478 -orderer.example.com | [1043 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41478 for (0xc4203ae200) -orderer.example.com | [1044 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41478 -orderer.example.com | [1045 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41478 -orderer.example.com | [1046 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [1047 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [1048 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [1049 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [104a 05-31 05:23:36.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41478: rpc error: code = Canceled desc = context canceled -orderer.example.com | [104b 05-31 05:23:36.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [104c 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [104d 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41480 -orderer.example.com | [104e 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41480 -peer0.org2.example.com | [1620 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -peer0.org2.example.com | [1621 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [1622 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 4}, Envelope: 5364 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1623 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [1624 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org2.example.com | [1625 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [1626 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 4}, Envelope: 5364 bytes, Signature: 0 bytes -peer0.org2.example.com | [1627 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [1628 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422e52a80, header channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -peer0.org2.example.com | [1629 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [162a 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [162b 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [162c 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org2.example.com | [162d 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -peer0.org2.example.com | [162e 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [162f 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [1630 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423b16d80 -peer0.org2.example.com | [1631 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin -peer0.org2.example.com | [1632 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [1633 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -peer0.org2.example.com | [1634 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer0.org2.example.com | [1635 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [1636 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer0.org2.example.com | [1637 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -peer0.org2.example.com | [1638 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [bfc5c698-2907-482c-bb37-2a69513f9641] -peer0.org2.example.com | [1639 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [163a 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [bfc5c698-2907-482c-bb37-2a69513f9641] -peer0.org2.example.com | [163b 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer0.org2.example.com | [163c 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer0.org2.example.com | [163d 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated -peer0.org2.example.com | [163e 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c appears to be invalid: Chaincode exp02 is already instantiated -peer0.org2.example.com | [163f 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423b16d80 -peer0.org2.example.com | [1640 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c returned error: Chaincode exp02 is already instantiated -peer0.org2.example.com | [1642 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer0.org2.example.com | [1641 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42342bfa0 env 0xc423629170 txn 0 -peer0.org2.example.com | [1643 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [1644 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -peer0.org2.example.com | [1645 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [1646 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer0.org2.example.com | [1647 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [1648 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer0.org2.example.com | [1649 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [164a 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [164b 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [164c 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -peer0.org2.example.com | [164d 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] -peer0.org2.example.com | [164e 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x9a, 0x51, 0x32, 0x74, 0x5b, 0x5e, 0xdc, 0xf4, 0xd1, 0x99, 0x68, 0x77, 0x79, 0x27, 0x0, 0xa0, 0x37, 0xef, 0x47, 0xcb, 0x4b, 0xc5, 0x8c, 0x46, 0x68, 0xc7, 0x45, 0x86, 0x87, 0xb6, 0xda, 0x34} txOffsets= -peer0.org2.example.com | txId=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c locPointer=offset=70, bytesLength=3458 -peer0.org2.example.com | ] -peer0.org2.example.com | [164f 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to index -peer1.org1.example.com | [1471 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1472 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1473 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1474 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1475 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1476 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1477 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1478 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1479 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [147a 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [147b 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [147c 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [147d 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > alive:\363\347}\202;\013\212\036\036\223\035\260" secret_envelope: > -peer1.org1.example.com | [147e 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [147f 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1480 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1481 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1482 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1483 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1484 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1485 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1486 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -orderer.example.com | [104f 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [1050 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1051 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [1052 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1053 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [1054 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85b8 gate 1527744216966935800 evaluation starts -orderer.example.com | [1055 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85b8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1056 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1057 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [1058 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85b8 principal evaluation fails -orderer.example.com | [1059 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85b8 gate 1527744216966935800 evaluation fails -orderer.example.com | [105a 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [105b 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [105c 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [105d 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c0 gate 1527744216970832000 evaluation starts -orderer.example.com | [105e 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [175e 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [175f 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1760 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1761 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1762 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1763 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1764 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1765 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1766 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1767 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1768 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1769 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [176b 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [176a 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [176c 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [176d 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [176e 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [176f 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1770 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1771 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [15f8 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [15f9 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [15fa 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [15fb 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [15fc 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [15fd 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [15fe 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [15ff 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1600 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1601 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1602 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1603 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 91 but got ts: inc_num:1527744091840124700 seq_num:89 -peer0.org1.example.com | [1604 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1605 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1606 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1607 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1608 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1609 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [160a 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [160b 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 86 but got ts: inc_num:1527744091508552400 seq_num:85 -peer0.org1.example.com | [160c 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [160d 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [160e 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [160f 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1610 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -orderer.example.com | [105f 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1060 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [1061 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 principal evaluation fails -orderer.example.com | [1062 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c0 gate 1527744216970832000 evaluation fails -orderer.example.com | [1063 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [1064 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [1065 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [1066 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c8 gate 1527744216974317500 evaluation starts -orderer.example.com | [1067 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1068 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1069 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [106a 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 principal evaluation fails -orderer.example.com | [106b 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c8 gate 1527744216974317500 evaluation fails -orderer.example.com | [106c 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [106d 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [106e 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [106f 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [1070 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [1071 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [1072 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1073 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [1074 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85d0 gate 1527744216977858300 evaluation starts -orderer.example.com | [1075 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1076 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1077 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85d0 principal matched by identity 0 -orderer.example.com | [1078 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f1 57 ef e2 1d 8e ce 86 6a 75 c9 75 3d 0e 19 7a |.W......ju.u=..z| -orderer.example.com | 00000010 f9 34 77 1e 89 9c 59 cd 17 de 20 82 55 f0 a1 d5 |.4w...Y... .U...| -orderer.example.com | [1079 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 0e bd 71 9a bc 21 24 5d 67 07 |0E.!....q..!$]g.| -orderer.example.com | 00000010 08 04 02 5d c0 da bb f7 d2 a6 ba e9 a6 b6 75 c2 |...]..........u.| -orderer.example.com | 00000020 22 b7 06 27 88 02 20 45 51 82 ac 8d 32 7e 31 7d |"..'.. EQ...2~1}| -orderer.example.com | 00000030 73 04 6e b1 f5 e9 04 89 5e fa fb ee 70 06 75 06 |s.n.....^...p.u.| -orderer.example.com | 00000040 5f 32 38 92 2f 7d 5a |_28./}Z| -orderer.example.com | [107a 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85d0 principal evaluation succeeds for identity 0 -orderer.example.com | [107b 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85d0 gate 1527744216977858300 evaluation succeeds -orderer.example.com | [107c 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [107d 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [107e 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [107f 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [1080 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [1081 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -peer0.org2.example.com | [1650 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx number:[0] ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to blockNumTranNum index -peer0.org2.example.com | [1651 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50743], isChainEmpty=[false], lastBlockNumber=[4] -peer0.org2.example.com | [1652 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] -peer0.org2.example.com | [1653 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] -peer0.org2.example.com | [1654 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -peer0.org2.example.com | [1655 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer0.org2.example.com | [1656 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [1657 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [1658 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [1659 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] -peer0.org2.example.com | [165a 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -peer0.org2.example.com | [165b 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer0.org2.example.com | [165c 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer0.org2.example.com | [165d 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer0.org2.example.com | [165e 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [165f 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c -peer0.org2.example.com | [1660 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [1661 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [1662 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [1663 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [1664 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [1665 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [1666 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [1667 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [1668 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [1669 05-31 05:22:36.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [166a 05-31 05:22:36.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [166b 05-31 05:22:36.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [166c 05-31 05:22:36.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [166d 05-31 05:22:36.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [166e 05-31 05:22:36.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [166f 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1670 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1671 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1672 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1673 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1674 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1675 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1676 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1677 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1678 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1679 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [167a 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [167b 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [167c 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [167d 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [167e 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [167f 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1680 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1681 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1682 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1683 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1685 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1684 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1686 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1687 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1688 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1689 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [168a 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [168b 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [168c 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [168d 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [168e 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [168f 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1690 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1691 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1692 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1693 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1694 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1695 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1696 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1697 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1699 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [169a 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [169b 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1698 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [169c 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [169d 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [169e 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [169f 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1772 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1773 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1774 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1775 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1776 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1777 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1778 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1779 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [177a 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [177b 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [177c 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [177d 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [177e 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1780 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1781 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [177f 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1782 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1783 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1784 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [1785 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1786 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1787 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1788 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1789 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [178a 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [178b 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1487 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1488 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1489 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [148a 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [148b 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [148c 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [148d 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [148f 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1490 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1491 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1492 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [148e 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1493 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1495 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1494 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1496 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1497 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1498 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1499 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [149a 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [149b 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [149c 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [149d 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [149e 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [149f 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1611 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1612 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1613 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1614 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1615 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1616 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1617 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1618 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1619 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [161a 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [161b 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [161c 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [161d 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [161e 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [161f 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1620 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1621 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1622 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1623 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1624 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1625 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1626 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [1627 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1628 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020[" signature:"0E\002!\000\251-\244@\"\266\315O\265\274\272U\013\024\261[\032\021i\350\247\375\276\276\302\365\303Q~\322^\226\002 i\311c\3449\352R\022\026\335\006\242J4\327\353\350aFY\002\002\201~\337\333\273>\275\264\245}" > -peer0.org1.example.com | [1629 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [162a 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [162b 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [162c 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [162d 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [162e 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [162f 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1630 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1631 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1632 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1633 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1634 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1635 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1636 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1637 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1638 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1639 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [163a 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [163b 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [163c 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [163d 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [163e 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [163f 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1640 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1641 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1642 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1643 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1644 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1645 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1646 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1647 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1648 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1649 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [164a 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [164b 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [164c 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [164d 05-31 05:22:41.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [164e 05-31 05:22:41.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [164f 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1650 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1651 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1652 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1653 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1654 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [14a0 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [14a1 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [14a2 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [14a3 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [14a4 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [14a5 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [14a6 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [14a7 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [14a8 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [14a9 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [14aa 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [14ab 05-31 05:22:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [14ac 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [14ad 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [14ae 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [14af 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [14b0 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [14b1 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [14b2 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [14b3 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [14b5 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [14b6 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [14b4 05-31 05:22:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > alive: alive: alive:K\336x-" > -peer1.org1.example.com | [14b7 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [14b8 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [14b9 05-31 05:22:35.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [14ba 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [14bb 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [14bc 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [14bd 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] -peer1.org1.example.com | [14be 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] -peer1.org1.example.com | [14bf 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [14c0 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [14c1 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4244c38a0 env 0xc4244b53e0 txn 0 -peer1.org1.example.com | [14c2 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4244b53e0 -peer1.org1.example.com | [14c3 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -peer1.org1.example.com | [14c4 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [14c5 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [14c6 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer1.org1.example.com | [14c7 05-31 05:22:36.11 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [14c8 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [14ca 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 4}, Envelope: 5364 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [14cb 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 4}, Envelope: 5364 bytes, Signature: 0 bytes -peer0.org1.example.com | [1655 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1656 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1657 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1658 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1659 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [165a 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [165b 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [165c 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [165d 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [165e 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [165f 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1660 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1661 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1662 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1663 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1664 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1665 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1666 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1667 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1668 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1669 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [166a 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [166b 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [166c 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [166e 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | [1082 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42054a440) start: > stop: > from 172.18.0.7:41480 -orderer.example.com | [1083 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [1084 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45416] -orderer.example.com | [1085 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[36148], Going to peek [8] bytes -orderer.example.com | [1086 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[45416], bytesOffset=[45418]} -orderer.example.com | [1087 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -orderer.example.com | [1088 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42054a440) for 172.18.0.7:41480 -orderer.example.com | [1089 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41480 for (0xc42054a440) -orderer.example.com | [108a 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41480 -orderer.example.com | [108b 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41480 -orderer.example.com | [108c 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [108d 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [108e 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [108f 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [1090 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41480: rpc error: code = Canceled desc = context canceled -orderer.example.com | [1091 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [1092 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [1093 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41482 -orderer.example.com | [1094 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41482 -orderer.example.com | [1095 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [1096 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1097 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [1098 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1099 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [109a 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8620 gate 1527744217166975800 evaluation starts -orderer.example.com | [109b 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8620 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [16a0 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16a1 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [16a2 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [16a4 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16a6 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [16a7 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16a5 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [16a8 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16aa 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [16a3 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16a9 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16ab 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16ac 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16ad 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16ae 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16af 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [16b0 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16b1 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16b2 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [16b3 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [16b4 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer0.org2.example.com | [16b5 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [16b6 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [166d 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [166f 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1670 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1671 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1672 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1673 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1674 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1675 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1676 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1677 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1678 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [167a 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1679 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [167b 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [167c 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [167d 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [167e 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [167f 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1680 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1681 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1682 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1683 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1684 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1685 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1686 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [178c 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [178d 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [178e 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [178f 05-31 05:22:50.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1790 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1791 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1792 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1793 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1794 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1795 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 98 but got ts: inc_num:1527744091508552400 seq_num:96 -peer1.org2.example.com | [1796 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1797 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1798 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1799 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [179a 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [179b 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [179c 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [179d 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [179e 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [179f 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [17a1 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17a2 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [17a3 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [17a0 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [17a4 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [17a5 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [17a6 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [17a7 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [17a8 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [17a9 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [17aa 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [17ab 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [17ac 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [17ad 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [17ae 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [17af 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [17b0 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [17b2 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17b3 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [17b4 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17b1 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [17b5 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [17b6 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [17b7 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [17b8 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [17b9 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [17ba 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [14c9 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc424536a80, header channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -peer1.org1.example.com | [14cd 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [14cc 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [14ce 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [14cf 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [14d0 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org1.example.com | [14d1 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -peer1.org1.example.com | [14d2 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [14d3 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc424532880 -peer1.org1.example.com | [14d4 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin -peer1.org1.example.com | [14d5 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [14d6 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -peer1.org1.example.com | [14d7 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU VSCC info: ValidateLSCCInvocation acting on deploy [][]uint8{[]uint8{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c}, []uint8{0xa, 0x28, 0x8, 0x1, 0x12, 0xc, 0x12, 0x5, 0x65, 0x78, 0x70, 0x30, 0x32, 0x1a, 0x3, 0x31, 0x2e, 0x30, 0x1a, 0x16, 0xa, 0x4, 0x69, 0x6e, 0x69, 0x74, 0xa, 0x1, 0x61, 0xa, 0x3, 0x31, 0x30, 0x30, 0xa, 0x1, 0x62, 0xa, 0x3, 0x32, 0x30, 0x30}, []uint8{0x12, 0xc, 0x12, 0xa, 0x8, 0x1, 0x12, 0x2, 0x8, 0x0, 0x12, 0x2, 0x8, 0x1, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x31, 0x4d, 0x53, 0x50, 0x1a, 0xb, 0x12, 0x9, 0xa, 0x7, 0x4f, 0x72, 0x67, 0x32, 0x4d, 0x53, 0x50}, []uint8{0x65, 0x73, 0x63, 0x63}, []uint8{0x76, 0x73, 0x63, 0x63}} -peer1.org1.example.com | [14d8 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [14d9 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -peer1.org1.example.com | [14da 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -peer1.org1.example.com | [14db 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [eb239c2c-d752-4a2b-856b-39020126dfec] -peer1.org1.example.com | [14dc 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [14dd 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [eb239c2c-d752-4a2b-856b-39020126dfec] -peer1.org1.example.com | [14de 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -peer1.org1.example.com | [14df 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -peer1.org1.example.com | [14e0 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated -peer1.org1.example.com | [14e1 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c appears to be invalid: Chaincode exp02 is already instantiated -peer1.org1.example.com | [14e2 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc424532880 -peer1.org1.example.com | [14e3 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c returned error: Chaincode exp02 is already instantiated -peer1.org1.example.com | [14e4 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4244c38a0 env 0xc4244b53e0 txn 0 -peer1.org1.example.com | [14e5 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -peer1.org1.example.com | [14e6 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [14e7 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -peer1.org1.example.com | [14e8 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [14e9 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -peer1.org1.example.com | [14ea 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [14eb 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -peer1.org1.example.com | [14ec 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [14ed 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [14ee 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [14ef 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -peer1.org1.example.com | [14f0 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] -peer1.org1.example.com | [14f1 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x9a, 0x51, 0x32, 0x74, 0x5b, 0x5e, 0xdc, 0xf4, 0xd1, 0x99, 0x68, 0x77, 0x79, 0x27, 0x0, 0xa0, 0x37, 0xef, 0x47, 0xcb, 0x4b, 0xc5, 0x8c, 0x46, 0x68, 0xc7, 0x45, 0x86, 0x87, 0xb6, 0xda, 0x34} txOffsets= -peer1.org1.example.com | txId=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c locPointer=offset=70, bytesLength=3458 -peer1.org1.example.com | ] -peer1.org1.example.com | [14f2 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to index -peer1.org1.example.com | [14f3 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx number:[0] ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to blockNumTranNum index -peer1.org1.example.com | [14f4 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50743], isChainEmpty=[false], lastBlockNumber=[4] -peer1.org1.example.com | [14f5 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] -peer1.org1.example.com | [14f6 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] -peer1.org1.example.com | [14f7 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -peer1.org1.example.com | [14f8 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -peer1.org1.example.com | [14f9 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [14fa 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [14fb 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [14fc 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] -peer1.org1.example.com | [14fd 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -peer1.org1.example.com | [14fe 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org1.example.com | [14ff 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -orderer.example.com | [109c 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8620 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [109d 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8620 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [109e 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8620 principal evaluation fails -orderer.example.com | [109f 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8620 gate 1527744217166975800 evaluation fails -orderer.example.com | [10a0 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [10a1 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [10a2 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [10a3 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8628 gate 1527744217170276600 evaluation starts -orderer.example.com | [10a4 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8628 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10a5 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8628 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [10a6 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8628 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [10a7 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8628 principal evaluation fails -orderer.example.com | [10a8 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8628 gate 1527744217170276600 evaluation fails -orderer.example.com | [10a9 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [10aa 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [10ab 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [10ac 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8090 gate 1527744217173785900 evaluation starts -orderer.example.com | [10ad 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10ae 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [10af 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [10b0 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 principal evaluation fails -orderer.example.com | [10b1 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8090 gate 1527744217173785900 evaluation fails -orderer.example.com | [10b2 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [10b3 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [10b4 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [10b5 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [10b6 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [10b7 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [10b8 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [10b9 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [10ba 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b80c8 gate 1527744217175794100 evaluation starts -orderer.example.com | [10bb 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b80c8 signed by 0 principal evaluation starts (used [false]) -peer0.org1.example.com | [1687 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1689 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1688 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [168a 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [168b 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [168c 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [168d 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [168e 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [168f 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1690 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1691 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1692 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1693 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1694 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1695 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [1696 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1697 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1698 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [169a 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [169b 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1699 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [169c 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [16b7 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16b8 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16b9 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16bb 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16ba 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16bc 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16bd 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [16be 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [16bf 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [16c0 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [16c1 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16c2 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [16c3 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [16c4 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16c5 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [16c6 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [16c7 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [16c8 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [16c9 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [16ca 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [10bc 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b80c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [10bd 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b80c8 principal matched by identity 0 -orderer.example.com | [10be 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 a7 30 db ef 64 8b 45 d6 93 aa 2a 3d 0b 58 2d 47 |.0..d.E...*=.X-G| -orderer.example.com | 00000010 0c 15 10 e3 72 07 57 87 d5 81 4e d8 97 ea 7e 48 |....r.W...N...~H| -orderer.example.com | [10bf 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 59 25 1c b9 ab ff 47 f5 94 60 6d dc |0D. Y%....G..`m.| -orderer.example.com | 00000010 19 52 36 11 59 a4 46 f1 02 36 38 91 a6 13 41 68 |.R6.Y.F..68...Ah| -orderer.example.com | 00000020 fd 31 47 ea 02 20 5b 98 9c 9c 11 60 db a9 97 56 |.1G.. [....`...V| -orderer.example.com | 00000030 40 6a 8f 43 cc 81 24 cc 50 5f 08 e4 52 38 a9 c6 |@j.C..$.P_..R8..| -orderer.example.com | 00000040 3c e2 42 0d 6b 4d |<.B.kM| -orderer.example.com | [10c0 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b80c8 principal evaluation succeeds for identity 0 -orderer.example.com | [10c1 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b80c8 gate 1527744217175794100 evaluation succeeds -orderer.example.com | [10c2 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [10c3 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [10c4 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [10c5 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [10c6 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [10c7 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [10c8 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42054a5e0) start: > stop: > from 172.18.0.7:41482 -orderer.example.com | [10c9 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [10ca 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50738] -orderer.example.com | [10cb 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[30826], Going to peek [8] bytes -orderer.example.com | [10cc 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4784], placementInfo={fileNum=[0], startOffset=[50738], bytesOffset=[50740]} -orderer.example.com | [10cd 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4784] read from file [0] -orderer.example.com | [10ce 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42054a5e0) for 172.18.0.7:41482 -orderer.example.com | [10cf 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41482 for (0xc42054a5e0) -orderer.example.com | [10d0 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41482 -orderer.example.com | [10d1 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41482 -orderer.example.com | [10d2 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [10d3 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [10d4 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [10d5 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -peer1.org2.example.com | [17bb 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [17bc 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [17bd 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [17be 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [17bf 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [17c0 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [17c1 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17c2 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [17c3 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17c4 05-31 05:22:51.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [17c5 05-31 05:22:51.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [17c6 05-31 05:22:51.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [17c7 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [17c8 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17c9 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [17ca 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [17cb 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [17cc 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [17cd 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17ce 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17cf 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [17d0 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17d1 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17d2 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17d3 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [17d4 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [17d5 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [17d6 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [17d7 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [17d8 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [17d9 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [17da 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [17db 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [17dc 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [17dd 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [17de 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17df 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [17e0 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [17e1 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17e2 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17e4 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [17e3 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [17e5 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17e6 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [17e7 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17e8 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17e9 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [17ea 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [17eb 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17ec 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [17ed 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [17ee 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [17ef 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [17f0 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [17f1 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [17f2 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [17f3 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [17f4 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [17f5 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [17f6 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [17f7 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [17f8 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020f" signature:"0E\002!\000\356\031\367(\356h\314\257\240\203p0\311\344\016\362\231\205t\\\357\332\244\257g\345\326\035\243p6\023\002 e\306g\262\343\035@\332\001\007\225^\320\033\357\020\3159\364\325N\r\030+\241A|\377\033\306[\207" > alive: alive: -peer1.org2.example.com | [17f9 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [17fa 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [17fb 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17fc 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [17fd 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [17fe 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [17ff 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1800 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [1801 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1802 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1803 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1500 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org1.example.com | [1501 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [1502 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c -peer1.org1.example.com | [1503 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [1504 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [1505 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [1506 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [1507 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [1508 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [1509 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [150a 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [150b 05-31 05:22:36.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [150c 05-31 05:22:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [150d 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [150e 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1510 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1511 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1512 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1513 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1514 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [150f 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1515 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1516 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1517 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1519 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [151a 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1518 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [151b 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [16cb 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [16cc 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [16cd 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [16cf 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [16d0 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [16d1 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" secret_envelope: > alive:J\312\331<\363H0V\277\334O\177\225\320\002\033uc\264\307\324?5\t\177\312Q\"\240\016\263\002 2\346\223\362\016\321\207K\001B\217vmMS\310#2\360`\344R\261\340\310\354\204\216\007\351\326;" secret_envelope: > -peer0.org2.example.com | [16ce 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [16d2 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [16d3 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16d4 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [16d5 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [16d6 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16d7 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16d8 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16d9 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16da 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer0.org2.example.com | [16db 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16dc 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16de 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16dd 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [10d6 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41482: rpc error: code = Canceled desc = context canceled -orderer.example.com | [10d7 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [10d8 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [10d9 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41484 -orderer.example.com | [10da 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41484 -orderer.example.com | [10db 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [10dc 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [10dd 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [10de 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [10df 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [10e0 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1527744217366093900 evaluation starts -orderer.example.com | [10e1 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10e2 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [10e3 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [10e4 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails -orderer.example.com | [10e5 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1527744217366093900 evaluation fails -orderer.example.com | [10e6 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [10e7 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [10e8 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [10e9 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1527744217367868100 evaluation starts -peer1.org2.example.com | [1804 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1805 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1806 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1807 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [1808 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1809 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [180a 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [180b 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [180c 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [180d 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [180e 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [180f 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1810 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1811 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1812 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1813 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [1814 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1815 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer1.org2.example.com | [1816 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer1.org2.example.com | [1817 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1818 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1819 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [181a 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [181b 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [181c 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [169d 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [169e 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [169f 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [16a0 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [16a1 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [16a2 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [16a4 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [16a3 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [16a8 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [16a5 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16a6 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [16a9 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [16ac 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [16aa 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16a7 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [16ad 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020]" signature:"0E\002!\000\314\216\250\037\n\272~>\336\362\302\234\326\356/\014\222+\345\221\336\022)\022\033\265\020Q\330\211\234\202\002 J+JC\245\256|\025\344H\254\342\356\010\250\245\265\35270\303s\331~\271\001\221%s\237\020\215" > -peer0.org1.example.com | [16ae 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16af 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [16ab 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [16b0 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16b1 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [16b2 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16b3 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [16b4 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [151c 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [151e 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [151d 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [151f 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1520 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1521 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1522 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1523 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1524 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1525 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1526 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1527 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1528 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1529 05-31 05:22:36.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [152a 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [152c 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [152b 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [152e 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [152f 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [152d 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1530 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1531 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1532 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1533 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -orderer.example.com | [10ea 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10eb 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [10ec 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [10ed 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 principal evaluation fails -orderer.example.com | [10ee 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1527744217367868100 evaluation fails -orderer.example.com | [10ef 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [10f0 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [10f1 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [10f2 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0d8 gate 1527744217369470000 evaluation starts -orderer.example.com | [10f3 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [10f4 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [10f5 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [10f6 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d8 principal evaluation fails -orderer.example.com | [10f7 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0d8 gate 1527744217369470000 evaluation fails -orderer.example.com | [10f8 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [16df 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16e0 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16e1 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16e2 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [16e3 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16e4 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16e5 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16e6 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer0.org2.example.com | [16e7 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16e8 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16e9 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16ea 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16eb 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16ec 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [16ed 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [16ee 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [16ef 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [16f0 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [16f1 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16f2 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16f3 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [16f4 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [181d 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [181e 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [181f 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1820 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1821 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1822 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1824 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1825 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1826 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > alive: alive: alive: -peer1.org2.example.com | [1827 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1828 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1823 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1829 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [182a 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [182b 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [182c 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [182d 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [182e 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [182f 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1830 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1831 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1832 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1833 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1834 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1835 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1836 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1837 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1838 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1839 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [183a 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [183b 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [183c 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [183d 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [183e 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [183f 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1840 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1841 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1842 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1843 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1844 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1845 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1846 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1847 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1848 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1849 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [184a 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [10f9 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [10fa 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -orderer.example.com | [10fb 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [10fc 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [10fd 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [10fe 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [10ff 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [1100 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744217372037100 evaluation starts -orderer.example.com | [1101 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1102 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1103 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal matched by identity 0 -orderer.example.com | [1104 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 cb f4 a6 70 87 1c 08 e9 e7 34 3b 53 df 43 ac 1f |...p.....4;S.C..| -orderer.example.com | 00000010 4c 70 1e 68 e7 bf a6 ba d3 f8 78 fc 9b b9 e2 d0 |Lp.h......x.....| -orderer.example.com | [1105 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8d 25 17 c1 e6 e3 94 1d 98 ff 83 |0E.!..%.........| -orderer.example.com | 00000010 65 8c 62 ae 93 ac 9d 34 27 2d ae 4f 04 6d 0f 8e |e.b....4'-.O.m..| -orderer.example.com | 00000020 95 68 fb ec 01 02 20 19 1a 9f 9c 64 2f 52 dc f9 |.h.... ....d/R..| -orderer.example.com | 00000030 be ea 87 8a 8e e4 25 b2 50 83 2b 6b ac eb 30 ea |......%.P.+k..0.| -orderer.example.com | 00000040 42 be 13 f6 80 82 cf |B......| -orderer.example.com | [1106 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal evaluation succeeds for identity 0 -orderer.example.com | [1107 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744217372037100 evaluation succeeds -orderer.example.com | [1108 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1109 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [16f5 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer0.org2.example.com | [16f6 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [16f9 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16f8 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [16fa 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16f7 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [16fb 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [16fc 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [16fd 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [16fe 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [16ff 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1700 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1701 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1702 05-31 05:22:39.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1703 05-31 05:22:39.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1704 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1705 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1706 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1707 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1708 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [1709 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [170a 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [170b 05-31 05:22:39.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [170c 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [170d 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [170e 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [170f 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1710 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1712 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1713 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1714 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1715 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1716 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1711 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1717 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1718 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [16b5 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [16b6 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16b7 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [16b8 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [16b9 05-31 05:22:42.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [16ba 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16bb 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [16bc 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [16bd 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16be 05-31 05:22:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [16bf 05-31 05:22:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16c0 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [16c1 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [16c2 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [16c3 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16c4 05-31 05:22:43.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [16c5 05-31 05:22:43.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16c6 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [16c7 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [16c8 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [16c9 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16ca 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [16cb 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16cc 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [184b 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [184c 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [184d 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [184e 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [184f 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1850 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1851 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1852 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1853 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1854 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1855 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1857 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1856 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1858 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1859 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [185a 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [185b 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [185c 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [185d 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [185e 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [185f 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1860 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1861 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1862 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1863 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1864 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1865 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1866 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1867 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1868 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1869 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [186a 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [186b 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [186c 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [186d 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [186e 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [186f 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1870 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1871 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1872 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1873 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1874 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1875 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\326\224DH\223X\007e\212\002\002 &\004,\357\240D}\025\204R\253A\311)\243\3710\356\004\3123\005\236X\016G\337\0255\177\032b" secret_envelope: > -peer1.org2.example.com | [1876 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [1877 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1878 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1879 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [187a 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1534 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1535 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1536 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1537 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1538 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1539 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [153a 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [153b 05-31 05:22:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [153c 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [153d 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [153e 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [153f 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1540 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1541 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1542 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1544 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1543 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1545 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1546 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1547 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1548 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1549 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [154a 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [154b 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [154c 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [154d 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [154e 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [154f 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1550 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1551 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1552 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1553 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1554 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1555 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1556 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1557 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1558 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1559 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [155a 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [155b 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [155c 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [155d 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [155e 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [155f 05-31 05:22:38.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1560 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1561 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [187b 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [187d 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [187e 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [187c 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1880 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [187f 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1881 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1882 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1883 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1884 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1885 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1886 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1887 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1888 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1889 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [188a 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [188b 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [188c 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [188d 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [188e 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [188f 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [1890 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1891 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1892 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1893 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1894 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1895 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1896 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1898 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1899 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [189a 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [189b 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [189c 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [189d 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [189e 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1897 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [189f 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [18a0 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [18a1 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [18a2 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -orderer.example.com | [110a 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [110b 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [110c 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [110d 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [110e 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a21860) start: > stop: > from 172.18.0.7:41484 -orderer.example.com | [110f 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [1110 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55524] -orderer.example.com | [1111 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[26040], Going to peek [8] bytes -orderer.example.com | [1112 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -orderer.example.com | [1113 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -orderer.example.com | [1114 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a21860) for 172.18.0.7:41484 -orderer.example.com | [1115 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41484 for (0xc420a21860) -orderer.example.com | [1116 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41484 -orderer.example.com | [1118 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41484 -orderer.example.com | [1117 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [1119 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [111a 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [111b 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [111c 05-31 05:23:37.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41484: rpc error: code = Canceled desc = context canceled -orderer.example.com | [111d 05-31 05:23:37.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [111e 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [111f 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41486 -orderer.example.com | [1120 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41486 -orderer.example.com | [1121 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [1122 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1123 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -orderer.example.com | [1124 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1125 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -orderer.example.com | [1126 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8270 gate 1527744217567927600 evaluation starts -orderer.example.com | [1127 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 signed by 0 principal evaluation starts (used [false]) -peer0.org2.example.com | [1719 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [171a 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [171c 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [171d 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [171e 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020W" signature:"0E\002!\000\237\261\253\336\025r\272\300\014\240\352r$U\352N\313x\005\nb\323\366\2604:\302\353\360R}<\002 \037\224&\361\023\377\233,\270&\262\277\342\363\246Y\376c&MC\n\020&DsS\373\321G\364/" > alive:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > alive:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > alive: -peer0.org2.example.com | [171f 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1720 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [171b 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1721 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1722 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1723 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18a3 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [18a4 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [18a5 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18a6 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [18a7 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [18a8 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [18a9 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [18aa 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 108 but got ts: inc_num:1527744091840124700 seq_num:107 -peer1.org2.example.com | [18ab 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18ac 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [18ad 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [18ae 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [18af 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18b0 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [18b1 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [18b2 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [18b3 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [18b4 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [18b5 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [18b6 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [18b7 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18b8 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [18b9 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18ba 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [18bb 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18bc 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [18bd 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1562 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1563 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1564 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1565 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1566 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1567 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1568 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1569 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [156a 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020W" signature:"0E\002!\000\237\261\253\336\025r\272\300\014\240\352r$U\352N\313x\005\nb\323\366\2604:\302\353\360R}<\002 \037\224&\361\023\377\233,\270&\262\277\342\363\246Y\376c&MC\n\020&DsS\373\321G\364/" > alive: alive:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > alive:+\351\277\344\035,$\3112\374\325\323\251\032\235\232\227\006\266\236@*\002 q\267\256\371\032\324\n\267\017\214A\310\321\267\231W\312\377\3022\004Iq\323UT)\227\014ZX\264" > -peer1.org1.example.com | [156b 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [156c 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [156d 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [156e 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [156f 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1570 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1571 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1572 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1573 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org1.example.com | [1574 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1575 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -orderer.example.com | [1128 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1129 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -orderer.example.com | [112a 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 principal evaluation fails -orderer.example.com | [112b 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8270 gate 1527744217567927600 evaluation fails -orderer.example.com | [112c 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [112d 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -orderer.example.com | [112e 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -orderer.example.com | [112f 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8280 gate 1527744217570765800 evaluation starts -orderer.example.com | [1130 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1131 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1132 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -orderer.example.com | [1133 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 principal evaluation fails -orderer.example.com | [1134 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8280 gate 1527744217570765800 evaluation fails -orderer.example.com | [1135 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [1724 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1725 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1726 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1727 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1728 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1729 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [172a 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [172b 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [172c 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [172d 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [172e 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [172f 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1730 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1731 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1732 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1733 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1734 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1735 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1736 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1737 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1738 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1739 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [16cd 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [16ce 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [16cf 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [16d0 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [16d1 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [16d2 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [16d3 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [16d4 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [16d5 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [16d6 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [16d7 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [16d8 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020^" signature:"0D\002 \000\236\364\3065\346>\236\014)b\206A*\370[\033X\264\232\327d+&\231\014\235\360\355#\264E\002 UD\344\22346\361\350\213A\240\356\310\r\\\004p\246\021%\021\320\221\335\350Z{B}\035\003J" secret_envelope: > -peer0.org1.example.com | [16d9 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [16da 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16db 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [16dc 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [16dd 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16de 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [16df 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [16e0 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [16e1 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [16e2 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [16e3 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [16e4 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [18be 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [18bf 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 108 but got ts: inc_num:1527744091840124700 seq_num:107 -peer1.org2.example.com | [18c0 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18c1 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [18c2 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [18c3 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 103 but got ts: inc_num:1527744091508552400 seq_num:101 -peer1.org2.example.com | [18c4 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18c5 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [18c6 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [18c7 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [18c8 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18c9 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [18ca 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [18cb 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [18cc 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18cd 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [18ce 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [18cf 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [18d0 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [18d1 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [18d2 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18d3 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [18d4 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [18d5 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18d6 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [18d7 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18d8 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d -peer1.org2.example.com | [18d9 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully -peer1.org2.example.com | [18da 05-31 05:22:55.47 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 | [18db 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [18dc 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [18dd 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [18de 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18df 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d -peer1.org2.example.com | [18e0 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [18e1 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [18e2 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [18e3 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18e4 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [18e5 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18e6 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [18e7 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [18e8 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [18e9 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [18ea 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [18eb 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [18ec 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [18ed 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [18ee 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [18ef 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [18f0 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [18f1 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [18f2 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\220\241\235\331\244\367\372\370\336WBj" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020k" signature:"0E\002!\000\372\264\366\254,\363\317\373\211\034\345\014\0004\331V\216\250\000\2149\022\223lZ\277BB\032\265?\343\002 L2O\363f\345Qx\351\353S\312\307L\337\215\260a|:4\305\347\202\004\327:F+\250\324v" > alive:w\027feA\013\017],I\002 m\031\326_O;\300\303\211\025\351\304\236m\244\204\320\030X\345\371\313\035\331i#\306\326\326\242R\232" > -peer1.org2.example.com | [18f3 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [18f4 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [18f5 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [18f6 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [18f7 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [18f8 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [18fa 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [18f9 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [18fb 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [18fc 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [18fd 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [18fe 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [18ff 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1900 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [1901 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1902 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1903 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1904 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1905 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1906 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org2.example.com | [1907 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org2.example.com | [1908 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16e5 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16e6 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [16e7 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16e8 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [16e9 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [16ea 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [16eb 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16ec 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [16ed 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [16ee 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [16ef 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16f0 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16f1 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [16f2 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [16f3 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16f4 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [16f5 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1576 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1577 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1578 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1579 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [157a 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [157b 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [157c 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [157d 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [157e 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [157f 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1580 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1581 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1582 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1583 05-31 05:22:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1584 05-31 05:22:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1585 05-31 05:22:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1587 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1586 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1588 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1589 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [158a 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [158b 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [158c 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer1.org1.example.com | [158d 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [158e 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [158f 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1590 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1591 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1592 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1593 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1594 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1595 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1596 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1597 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1598 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1599 05-31 05:22:39.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [159a 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [159b 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [159c 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [159d 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [159e 05-31 05:22:39.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer1.org1.example.com | [159f 05-31 05:22:39.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer1.org1.example.com | [15a0 05-31 05:22:39.14 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer1.org1.example.com | [15a1 05-31 05:22:39.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15a2 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [15a3 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [15a4 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15a5 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [15a6 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [15a7 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15a8 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [15a9 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [15aa 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15ab 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [15ac 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [15ad 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [15ae 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [15af 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [15b0 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [15b2 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [15b3 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [15b4 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [15b1 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [15b5 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [15b6 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [15b8 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [15b9 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [15ba 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [15bb 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15bc 05-31 05:22:39.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [15bd 05-31 05:22:39.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1909 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [190a 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [190b 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [190c 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [190d 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [190e 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [190f 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1910 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1911 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1912 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1913 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1914 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1915 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1916 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1917 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1918 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1919 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [191a 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [191b 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > alive:\220\241\235\331\244\367\372\370\336WBj" > alive: -peer1.org2.example.com | [191c 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [191d 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [191e 05-31 05:22:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [191f 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1920 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1921 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1922 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1923 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1924 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1925 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1926 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1927 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1928 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1929 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [192a 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [192b 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [192c 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [192d 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [192e 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [192f 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1930 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1931 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1932 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1933 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [1136 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -orderer.example.com | [1137 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -orderer.example.com | [1138 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8290 gate 1527744217573669200 evaluation starts -orderer.example.com | [1139 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8290 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [113a 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8290 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [113b 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8290 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -orderer.example.com | [113c 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8290 principal evaluation fails -orderer.example.com | [113d 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8290 gate 1527744217573669200 evaluation fails -orderer.example.com | [113e 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [113f 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -orderer.example.com | [1140 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] -orderer.example.com | [1141 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -orderer.example.com | [1142 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -orderer.example.com | [1143 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [1144 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1145 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [1146 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82a8 gate 1527744217576591600 evaluation starts -orderer.example.com | [1147 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1148 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1149 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 principal matched by identity 0 -orderer.example.com | [114a 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 df 47 93 fa 0c ce 77 b9 f0 74 30 6a 9e f6 79 9f |.G....w..t0j..y.| -orderer.example.com | 00000010 c0 09 20 c6 c2 31 e1 92 80 aa db 5a 43 f9 42 d3 |.. ..1.....ZC.B.| -orderer.example.com | [114b 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 39 8b 99 40 ad d2 db 44 5e 3d eb f1 |0D. 9..@...D^=..| -orderer.example.com | 00000010 66 91 45 6a ba 94 36 67 31 fc 2f 24 69 1e bf 36 |f.Ej..6g1./$i..6| -orderer.example.com | 00000020 bb 48 12 02 02 20 52 57 82 df 67 77 7d a3 5b 2c |.H... RW..gw}.[,| -orderer.example.com | 00000030 ea 51 31 bb 06 25 91 86 ce 20 5b 8e 68 b8 06 61 |.Q1..%... [.h..a| -orderer.example.com | 00000040 35 a5 e2 78 25 46 |5..x%F| -orderer.example.com | [114c 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 principal evaluation succeeds for identity 0 -orderer.example.com | [114d 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82a8 gate 1527744217576591600 evaluation succeeds -orderer.example.com | [114e 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [114f 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1150 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [1151 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [1152 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [1153 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [1154 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203aea60) start: > stop: > from 172.18.0.7:41486 -orderer.example.com | [1155 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -orderer.example.com | [1156 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -orderer.example.com | [1157 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -orderer.example.com | [1158 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -orderer.example.com | [1159 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -orderer.example.com | [115a 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203aea60) for 172.18.0.7:41486 -orderer.example.com | [115b 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41486 for (0xc4203aea60) -orderer.example.com | [115c 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41486 -orderer.example.com | [115e 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [115f 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [1160 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -orderer.example.com | [1161 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -orderer.example.com | [115d 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41486 -orderer.example.com | [1162 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41486: rpc error: code = Canceled desc = context canceled -orderer.example.com | [1163 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [1164 05-31 05:23:37.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [1165 05-31 05:23:37.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41488 -orderer.example.com | [1166 05-31 05:23:37.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41488 -orderer.example.com | [1167 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [1168 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [1169 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [116a 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [116b 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [116c 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8340 gate 1527744217772540200 evaluation starts -orderer.example.com | [116d 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [116e 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [116f 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 principal matched by identity 0 -orderer.example.com | [1170 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f1 88 e8 a8 0b eb 15 46 5a b6 c7 ee c6 37 61 54 |.......FZ....7aT| -orderer.example.com | 00000010 b4 52 96 bd 82 2e 0b 3c c2 ab 8c e2 f5 c2 c4 88 |.R.....<........| -orderer.example.com | [1171 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 70 7f 4a b4 6b 5b a2 59 92 a4 d4 03 |0D. p.J.k[.Y....| -orderer.example.com | 00000010 bc b9 c4 81 b7 d3 26 46 28 20 b1 23 07 d2 35 4c |......&F( .#..5L| -orderer.example.com | 00000020 d8 85 ae e1 02 20 6a de 3a 84 5d af 4e d0 27 71 |..... j.:.].N.'q| -orderer.example.com | 00000030 cd 72 f6 48 b0 a2 5f 27 71 e3 52 5d 76 b9 c9 74 |.r.H.._'q.R]v..t| -orderer.example.com | 00000040 2d ec e1 dc a2 e9 |-.....| -orderer.example.com | [1172 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 principal evaluation succeeds for identity 0 -orderer.example.com | [1173 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8340 gate 1527744217772540200 evaluation succeeds -orderer.example.com | [1174 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1175 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1176 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [1177 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [1178 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [1179 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [117a 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203a0440) start: > stop: > from 172.18.0.7:41488 -orderer.example.com | [117b 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [117c 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -orderer.example.com | [117d 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -orderer.example.com | [117e 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [117f 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -orderer.example.com | [1180 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203a0440) for 172.18.0.7:41488 -orderer.example.com | [1181 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41488 for (0xc4203a0440) -orderer.example.com | [1182 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41488 -orderer.example.com | [1183 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41488 -orderer.example.com | [1184 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41488: read: connection reset by peer -orderer.example.com | [1185 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41488: rpc error: code = Canceled desc = context canceled -orderer.example.com | [1186 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [1187 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [1188 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41490 -orderer.example.com | [1189 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41490 -orderer.example.com | [118a 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [118b 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [118c 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [118d 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [118e 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -peer0.org2.example.com | [173a 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [173b 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [173c 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [173d 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > alive:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > alive: -peer0.org2.example.com | [173e 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [173f 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1740 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1741 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1742 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1743 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1744 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [1746 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1745 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1747 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1748 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1749 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [174a 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [174b 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [174c 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [174d 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [174e 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [174f 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15be 05-31 05:22:39.55 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [15bf 05-31 05:22:39.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15b7 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [15c0 05-31 05:22:39.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [15c1 05-31 05:22:39.55 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [15c2 05-31 05:22:39.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15c3 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [15c4 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [15c6 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [15c5 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [15c7 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [15c8 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [15c9 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [15ca 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [15cb 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [15cc 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [15cd 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [15ce 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [16f6 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [16f7 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [16f8 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16f9 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [16fa 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16fb 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [16fc 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [16fd 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [16fe 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [16ff 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1700 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [1702 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1703 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1704 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1701 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [1705 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1706 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1707 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1708 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1709 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [170a 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [170b 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1934 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1935 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1936 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1937 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1938 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1939 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [193a 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [193b 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [193c 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [193d 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [193e 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [193f 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1940 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [1941 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1942 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1943 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1944 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1945 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1946 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1947 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1948 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1949 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [194a 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [194b 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [194c 05-31 05:22:56.24 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 | [194d 05-31 05:22:56.24 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) -peer1.org2.example.com | [194e 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -peer1.org2.example.com | [194f 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org2.example.com | [1950 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer1.org2.example.com | [1951 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer1.org2.example.com | [1952 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 -peer1.org2.example.com | [1953 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer1.org2.example.com | [1954 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" -peer1.org2.example.com | [1955 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" -peer1.org2.example.com | [1956 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" -peer1.org2.example.com | [1957 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer1.org2.example.com | [1958 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer1.org2.example.com | [1959 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [195a 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [077e23ad] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [195b 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [077e23ad] handling GET_STATE from chaincode -peer1.org2.example.com | [195c 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [077e23ad] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [195d 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [195e 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [077e23ad] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [195f 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [077e23ad] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1960 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [077e23ad] notifying Txid:077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c, channelID:businesschannel -peer1.org2.example.com | [1961 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [1962 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c] Exit -peer1.org2.example.com | [1963 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [1964 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c] -peer1.org2.example.com | [1965 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][077e23ad] Exit -peer1.org2.example.com | [1967 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [1966 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][077e23ad] Entry chaincode: name:"exp02" -peer1.org2.example.com | [1968 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][077e23ad] escc for chaincode name:"exp02" is escc -peer1.org2.example.com | [1969 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c, chaincode: exp02} -peer1.org2.example.com | [196a 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c, chaincode: exp02} -peer1.org2.example.com | [196b 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][077e23ad] Exit -peer1.org2.example.com | [196c 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [077e23ad7fc57178092616735308612f102eaae48a7b8e39aca2da621c6c0b6c] -peer1.org2.example.com | [196d 05-31 05:22:56.30 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49114 -peer1.org2.example.com | [196e 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [196f 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] -peer1.org2.example.com | [1970 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -peer1.org2.example.com | [1971 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -peer1.org2.example.com | [1972 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -peer1.org2.example.com | [1973 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -peer1.org2.example.com | [1974 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [1975 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c -peer1.org2.example.com | [1976 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [1977 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [1978 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [1979 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [197a 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [197b 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [197c 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [197d 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [197e 05-31 05:22:56.31 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [197f 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [1980 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1981 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [1982 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1983 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1984 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1985 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1986 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1987 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1988 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1989 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [198b 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [198c 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [198a 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [198d 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [198e 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [198f 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1990 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1991 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -orderer.example.com | [118f 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83d0 gate 1527744217977521400 evaluation starts -orderer.example.com | [1190 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83d0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [1191 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [1192 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83d0 principal matched by identity 0 -orderer.example.com | [1193 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 52 df 73 40 cd db 67 a6 13 5d ae d7 b5 88 59 7b |R.s@..g..]....Y{| -orderer.example.com | 00000010 91 11 93 97 a5 ca fa 42 3f 28 38 09 0a ab ca 18 |.......B?(8.....| -orderer.example.com | [1194 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 62 92 20 64 16 51 84 2d 8c 8f 7e 0a |0D. b. d.Q.-..~.| -orderer.example.com | 00000010 0c 71 49 fe 22 24 88 c6 f5 ce 24 78 73 b1 b3 ad |.qI."$....$xs...| -orderer.example.com | 00000020 0c 90 8d fe 02 20 62 9d 0a c5 25 04 02 11 e3 37 |..... b...%....7| -orderer.example.com | 00000030 c5 95 b7 ed 48 96 11 1e b9 cd f8 a6 03 e1 ee a4 |....H...........| -orderer.example.com | 00000040 1d 79 b0 47 77 6c |.y.Gwl| -orderer.example.com | [1195 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83d0 principal evaluation succeeds for identity 0 -orderer.example.com | [1196 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83d0 gate 1527744217977521400 evaluation succeeds -orderer.example.com | [1197 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1198 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [1199 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [119a 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [119b 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [119c 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [119d 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203a1a00) start: > stop: > from 172.18.0.7:41490 -orderer.example.com | [119e 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [119f 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -orderer.example.com | [11a0 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -orderer.example.com | [11a1 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [11a2 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -orderer.example.com | [11a3 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203a1a00) for 172.18.0.7:41490 -orderer.example.com | [11a4 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41490 for (0xc4203a1a00) -orderer.example.com | [11a5 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41490 -orderer.example.com | [11a6 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41490 -orderer.example.com | [11a7 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [11a8 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [11a9 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [11aa 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [11ab 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [11ac 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84f8 gate 1527744217988661100 evaluation starts -orderer.example.com | [11ad 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [11ae 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [11af 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 principal matched by identity 0 -orderer.example.com | [11b0 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 da af d9 44 9a f1 0a d8 85 f0 0e d4 bd e6 f2 87 |...D............| -orderer.example.com | 00000010 bf 88 36 76 89 a3 d7 e2 f3 6d 5d de eb 24 42 df |..6v.....m]..$B.| -orderer.example.com | [11b1 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 84 1f 45 88 1b 0f b2 cf 16 a8 db |0E.!...E........| -orderer.example.com | 00000010 fe 2d ee 67 5f 79 94 47 c2 26 bf 8e 7e f4 68 af |.-.g_y.G.&..~.h.| -orderer.example.com | 00000020 f6 44 f4 bd 2c 02 20 49 2b 88 c1 e5 fc 48 92 dd |.D..,. I+....H..| -orderer.example.com | 00000030 86 e3 1c fc 83 ed 8b 11 1e 9e f0 b8 db 2d 61 90 |.............-a.| -orderer.example.com | 00000040 27 1c 95 2a f7 19 45 |'..*..E| -orderer.example.com | [11b2 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 principal evaluation succeeds for identity 0 -orderer.example.com | [11b3 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84f8 gate 1527744217988661100 evaluation succeeds -peer1.org1.example.com | [15cf 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [15d0 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [15d1 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [15d2 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [15d3 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [15d4 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [15d5 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [15d6 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [15d7 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [15d8 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [15d9 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [15da 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [15dd 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [15de 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [15db 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [15dc 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [15df 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [15e1 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [15e2 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [15e3 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [15e4 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [15e0 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [15e5 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [15e6 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1750 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1751 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1752 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1753 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1754 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1755 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1756 05-31 05:22:39.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1757 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1758 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [175a 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1759 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [175c 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [175d 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [175b 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -orderer.example.com | [11b4 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [11b5 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [11b6 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [11b7 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [11b8 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [11b9 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [11ba 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc42056af00) start: > stop: > from 172.18.0.7:41490 -orderer.example.com | [11bb 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [11bc 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [11bd 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24012], Going to peek [8] bytes -orderer.example.com | [11be 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [11bf 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [11c0 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc42056af00) for 172.18.0.7:41490 -orderer.example.com | [11c1 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41490 for (0xc42056af00) -orderer.example.com | [11c2 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41490 -orderer.example.com | [11c3 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41490 -orderer.example.com | [11c4 05-31 05:23:38.00 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41490: rpc error: code = Canceled desc = context canceled -orderer.example.com | [11c5 05-31 05:23:38.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [11c6 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [11c7 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41492 -orderer.example.com | [11c8 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41492 -orderer.example.com | [11c9 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [11ca 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [11cb 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [11cc 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [11cd 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [11ce 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1527744218134110100 evaluation starts -orderer.example.com | [11cf 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 signed by 0 principal evaluation starts (used [false]) -peer1.org2.example.com | [1992 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1993 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1994 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1995 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1996 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1998 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1999 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1997 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [199a 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [199b 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [199c 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [199d 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [199e 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [199f 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19a0 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [19a1 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [19a2 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19a3 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19a4 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [19a5 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [19a6 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [19a7 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [19a8 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [19a9 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [19aa 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [19ab 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [19ac 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [19ad 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -orderer.example.com | [11d0 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [11d1 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal matched by identity 0 -orderer.example.com | [11d2 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 c4 64 81 ff 1a fc d6 aa 13 fb 78 48 a0 81 fc 50 |.d........xH...P| -orderer.example.com | 00000010 d2 fd 6d 63 a1 a3 5e 95 ac f6 5f 14 a7 2f e9 be |..mc..^..._../..| -orderer.example.com | [11d3 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 be 24 d0 b9 2b 99 d7 0d 94 6e f5 |0E.!..$..+....n.| -orderer.example.com | 00000010 9f c1 68 fc 1c 58 dc 8e cf a5 df 36 34 bc d4 52 |..h..X.....64..R| -orderer.example.com | 00000020 79 ff b6 ab e5 02 20 4c 35 ef 09 9a b8 00 76 34 |y..... L5.....v4| -orderer.example.com | 00000030 55 6f 63 77 9d 8b 39 4d 5a d7 2f 8f 17 d1 63 a0 |Uocw..9MZ./...c.| -orderer.example.com | 00000040 74 8b a7 85 84 a6 38 |t.....8| -orderer.example.com | [11d4 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal evaluation succeeds for identity 0 -orderer.example.com | [11d5 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1527744218134110100 evaluation succeeds -orderer.example.com | [11d6 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [11d7 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [11d8 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [11d9 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [11da 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [11db 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [11dc 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420254e80) start: > stop: > from 172.18.0.7:41492 -orderer.example.com | [11dd 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [11de 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -orderer.example.com | [11df 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24012], Going to peek [8] bytes -orderer.example.com | [11e0 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -orderer.example.com | [11e1 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -orderer.example.com | [11e2 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420254e80) for 172.18.0.7:41492 -peer0.org1.example.com | [170c 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [170d 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [170e 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [170f 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1710 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1711 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1712 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1713 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1714 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1715 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1716 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1717 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1718 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1719 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [171a 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [171b 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [171d 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [171c 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [171e 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [171f 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1720 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1721 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1722 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1723 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1724 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [19ae 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19af 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [19b0 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19b1 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [19b2 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19b3 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [19b4 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [19b5 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19b6 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [19b7 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19b8 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [19b9 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [19ba 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19bb 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [19bc 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19bd 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [19be 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [19bf 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19c0 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19c1 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [19c2 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [19c3 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [19c4 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [19c5 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [175f 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [175e 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1760 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1761 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1762 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1763 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1764 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1765 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1766 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1767 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1768 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1769 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [176a 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [176b 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [176c 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [176e 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [176f 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1770 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1771 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [176d 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1772 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1773 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1774 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1775 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1776 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1777 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1778 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1779 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [177a 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [177b 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [177c 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [177d 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [177e 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [177f 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1780 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1781 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1782 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1783 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1784 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 90 but got ts: inc_num:1527744090808810100 seq_num:89 -peer0.org2.example.com | [1785 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1786 05-31 05:22:39.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1787 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1788 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1789 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [178a 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [178b 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [178c 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [178d 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [178e 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [178f 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1790 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15e7 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [15e8 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [15e9 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [15ea 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [15eb 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [15ec 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [15ed 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [15ee 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [15ef 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [15f0 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [15f1 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [15f2 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [15f3 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [15f4 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [15f5 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [15f6 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [15f7 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [15f8 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [15f9 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 88 but got ts: inc_num:1527744090808810100 seq_num:87 -peer1.org1.example.com | [15fa 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [15fb 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [15fc 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [15fd 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [15fe 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [15ff 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1600 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1601 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1602 05-31 05:22:39.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1603 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1604 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [1605 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1606 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1607 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1608 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1609 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [160a 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [160b 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [160c 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [160d 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [160e 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [160f 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1610 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1611 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1612 05-31 05:22:39.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1613 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1614 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1615 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1616 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1617 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1618 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -orderer.example.com | [11e3 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41492 for (0xc420254e80) -orderer.example.com | [11e4 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41492 -orderer.example.com | [11e5 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41492 -orderer.example.com | [11e6 05-31 05:23:38.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41492: rpc error: code = Canceled desc = context canceled -orderer.example.com | [11e7 05-31 05:23:38.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -orderer.example.com | [11e8 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -orderer.example.com | [11e9 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41494 -orderer.example.com | [11ea 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41494 -orderer.example.com | [11eb 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -orderer.example.com | [11ec 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [11ed 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -orderer.example.com | [11ee 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -orderer.example.com | [11ef 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -orderer.example.com | [11f0 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2c0 gate 1527744218338055200 evaluation starts -orderer.example.com | [11f1 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c0 signed by 0 principal evaluation starts (used [false]) -orderer.example.com | [11f2 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -orderer.example.com | [11f3 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c0 principal matched by identity 0 -orderer.example.com | [11f4 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 0d 28 87 04 f7 82 50 29 81 ff 54 99 fe 9b 4b 4c |.(....P)..T...KL| -orderer.example.com | 00000010 63 4d 1c 84 11 c6 b1 44 a9 12 c4 55 bc 55 ec 64 |cM.....D...U.U.d| -orderer.example.com | [11f5 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cb d6 a8 26 2b a4 ba 89 62 45 06 |0E.!....&+...bE.| -orderer.example.com | 00000010 2b 2b 59 09 51 70 a5 3a 3a fb ad 54 29 a3 a9 b3 |++Y.Qp.::..T)...| -orderer.example.com | 00000020 92 76 57 e4 b6 02 20 07 1c b7 ec bc dc 45 69 03 |.vW... ......Ei.| -orderer.example.com | 00000030 e5 8d 68 71 2a 38 83 69 7a d1 e0 68 b4 4d 4d fa |..hq*8.iz..h.MM.| -orderer.example.com | 00000040 36 c7 a2 67 e0 c0 82 |6..g...| -orderer.example.com | [11f6 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c0 principal evaluation succeeds for identity 0 -peer0.org2.example.com | [1791 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1792 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1793 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 91 but got ts: inc_num:1527744091618763800 seq_num:90 -peer0.org2.example.com | [1794 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1795 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1796 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1797 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1798 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1799 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [179a 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [179b 05-31 05:22:39.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 90 but got ts: inc_num:1527744090808810100 seq_num:88 -peer0.org2.example.com | [179c 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [179d 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [179e 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [179f 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [17a0 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [17a1 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [17a2 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [17a3 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [17a4 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [17a5 05-31 05:22:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17a6 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17a7 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17a8 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [17a9 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [17aa 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17ab 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17ac 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [17ad 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [17ae 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [17af 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [17b0 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [17b1 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [17b2 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [17b3 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17b4 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [17b5 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17b7 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17b8 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [17b6 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [17b9 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17ba 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [17bb 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17bc 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17bd 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [17be 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17bf 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [17c0 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17c1 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [17c2 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [17c3 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17c4 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17c5 05-31 05:22:41.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [17c6 05-31 05:22:41.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [17c7 05-31 05:22:41.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [17c8 05-31 05:22:41.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [17c9 05-31 05:22:41.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [17ca 05-31 05:22:41.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [17cb 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17cc 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [17cd 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [17ce 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17cf 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17d0 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [17d1 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [17d2 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [17d3 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [17d4 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [17d5 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [17d6 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [17d7 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17d8 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17d9 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17da 05-31 05:22:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [17db 05-31 05:22:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [17dc 05-31 05:22:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [17dd 05-31 05:22:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17de 05-31 05:22:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [17df 05-31 05:22:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17e1 05-31 05:22:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [17e2 05-31 05:22:41.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17e3 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17e4 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17e0 05-31 05:22:41.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [17e5 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17e6 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [17e7 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [17e8 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17e9 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17ea 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17eb 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [17ec 05-31 05:22:41.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [17ed 05-31 05:22:41.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [17ee 05-31 05:22:41.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17ef 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17f0 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17f1 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [17f2 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [17f3 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17f4 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17f5 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [17f6 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [17f7 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [17f8 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [17f9 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [17fa 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [17fb 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [17fc 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [17fd 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17fe 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [17ff 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1800 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1801 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1802 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1803 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1804 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1805 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1806 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1807 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1808 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1809 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [180a 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [180b 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [180c 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [180d 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [180e 05-31 05:22:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [180f 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1810 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1811 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1812 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1813 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1814 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1815 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1816 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1817 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1818 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1819 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [181a 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [181b 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [181c 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [181d 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [181e 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [181f 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1820 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1821 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1619 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [161a 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [161b 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [161c 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [161d 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [161e 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [161f 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1620 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1621 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1622 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1623 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1624 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1625 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1626 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1627 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1628 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [1629 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [162a 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > alive: > -peer1.org1.example.com | [162b 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [162c 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [162d 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [162e 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [162f 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1630 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [1631 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1632 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1633 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1634 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1635 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1636 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1637 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1638 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1639 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [163a 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [163b 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [163c 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [163d 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [163e 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [163f 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [1640 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1642 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1643 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [19c6 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [19c7 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [19c8 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [19c9 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [19ca 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [19cb 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19cc 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [19cd 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19ce 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [19cf 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19d0 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [19d1 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [19d2 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19d3 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [19d4 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19d5 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [19d6 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [19d7 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [19d8 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [19d9 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4798 bytes, seq: 5}, Envelope: 4828 bytes, Signature: 0 bytes -peer1.org2.example.com | [19da 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [19db 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [19dc 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [19dd 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202939a0 env 0xc42228a420 txn 0 -peer1.org2.example.com | [19de 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42228a420 -peer1.org2.example.com | [19df 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -peer0.org1.example.com | [1725 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1726 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1727 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1728 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1729 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [172a 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [172b 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [172c 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [172d 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [172e 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [172f 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1730 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1731 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1732 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 91 but got ts: inc_num:1527744091508552400 seq_num:90 -peer0.org1.example.com | [1733 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1734 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1735 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1736 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 94 but got ts: inc_num:1527744090808810100 seq_num:92 -peer0.org1.example.com | [1737 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1738 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1739 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [173a 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [173b 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [173c 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [173d 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -orderer.example.com | [11f7 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2c0 gate 1527744218338055200 evaluation succeeds -orderer.example.com | [11f8 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [11f9 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -orderer.example.com | [11fa 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -orderer.example.com | [11fb 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -orderer.example.com | [11fc 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -orderer.example.com | [11fd 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -orderer.example.com | [11fe 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420314340) start: > stop: > from 172.18.0.7:41494 -orderer.example.com | [11ff 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -orderer.example.com | [1200 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -orderer.example.com | [1201 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -orderer.example.com | [1202 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -orderer.example.com | [1203 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -orderer.example.com | [1204 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420314340) for 172.18.0.7:41494 -orderer.example.com | [1205 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41494 for (0xc420314340) -orderer.example.com | [1206 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41494 -orderer.example.com | [1207 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41494 -orderer.example.com | [1208 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41494: rpc error: code = Canceled desc = context canceled -orderer.example.com | [1209 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -peer0.org2.example.com | [1822 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1823 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1824 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1825 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1826 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1827 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1828 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [182a 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [182b 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [182c 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > -peer0.org2.example.com | [182d 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org2.example.com | [182e 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1829 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [182f 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1830 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1831 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1832 05-31 05:22:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1833 05-31 05:22:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1834 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [1835 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1837 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1838 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1836 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1839 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [183a 05-31 05:22:43.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [173e 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [173f 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1740 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1741 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1742 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1743 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1744 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1745 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1746 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1747 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1748 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1749 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [174a 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [174b 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [174c 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [174d 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [174e 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [174f 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1750 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1751 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [1752 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [19e0 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [19e1 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [19e2 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org2.example.com | [19e3 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [19e4 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [19e5 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4226ce000, header channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -peer1.org2.example.com | [19e6 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [19e7 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [19e8 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [19e9 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org2.example.com | [19ea 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -peer1.org2.example.com | [19eb 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [19ec 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423322400 -peer1.org2.example.com | [19ed 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [c977cafd-0bf8-46b7-9313-8d2f4f02e7d8] -peer1.org2.example.com | [19ee 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [19ef 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c977cafd-0bf8-46b7-9313-8d2f4f02e7d8] -peer1.org2.example.com | [19f0 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin -peer1.org2.example.com | [19f1 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [19f2 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: -peer1.org2.example.com | [19f3 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 appears to be valid -peer1.org2.example.com | [19f4 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423322400 -peer1.org2.example.com | [19f5 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [19f6 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [19f7 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer1.org2.example.com | [19f8 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [19f9 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -peer1.org2.example.com | [19fa 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [19fb 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [19fc 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [1641 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > alive: alive:1\301\022\373\337\037s\315\323\230" > alive:\2577E\337\361<8\347C\245\253.\324\214\314^\013J\017\007\374\375\245\317\242\264#S\002 h\024\350M\262\311\355\2554}~K\207J\330\"\335\033\367\347D`\304\034\274\007\262s\017\243\202\340" > -peer1.org1.example.com | [1644 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1645 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1646 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1647 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1648 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1649 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [164a 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [164b 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [164c 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [164d 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [164e 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [164f 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1650 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1651 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1652 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1653 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1654 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1656 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1655 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1657 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1753 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020`" signature:"0D\002 \007\375\334\355,X\343\026|'\277\260\257\311E\336V\354[\225L*\032\202I=Tg\027E\301.\002 :\212I\304{\304\014*\347\326\361\020\\!H\005\013\005\247\003\246N-\235;\243!G'\003\307\307" > -peer0.org1.example.com | [1754 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1755 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1756 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1757 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1758 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1759 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [175a 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [175b 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [175c 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [175d 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [175e 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [175f 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1760 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1761 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1762 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1763 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1764 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1765 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1767 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1766 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1768 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1769 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [176a 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [183b 05-31 05:22:43.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [183c 05-31 05:22:43.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [183d 05-31 05:22:43.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [183e 05-31 05:22:43.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [183f 05-31 05:22:43.46 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1840 05-31 05:22:43.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1841 05-31 05:22:43.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1842 05-31 05:22:43.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1843 05-31 05:22:43.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1844 05-31 05:22:43.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org2.example.com | [1845 05-31 05:22:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1846 05-31 05:22:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org2.example.com | [1847 05-31 05:22:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org2.example.com | [1848 05-31 05:22:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1849 05-31 05:22:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [184a 05-31 05:22:43.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [184b 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [184c 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [184d 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [184e 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [184f 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1850 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1851 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1852 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1853 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [19fd 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [19fe 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org2.example.com | [19ff 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [1a00 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [1a01 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [1a02 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] marked as valid by state validator -peer1.org2.example.com | [1a03 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [1a04 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [1a05 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [1a06 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -peer1.org2.example.com | [1a07 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202939a0 env 0xc42228a420 txn 0 -peer1.org2.example.com | [1a08 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] -peer1.org2.example.com | [1a09 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x45, 0x52, 0x18, 0xd7, 0x37, 0x89, 0x65, 0x1a, 0xb0, 0x67, 0x41, 0xba, 0xca, 0x59, 0x80, 0x29, 0xb2, 0xe6, 0xf9, 0xbe, 0xb4, 0x2b, 0x95, 0xd6, 0x5d, 0xd7, 0x85, 0x87, 0x85, 0xf9, 0xd7, 0xcc} txOffsets= -peer1.org2.example.com | txId=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 locPointer=offset=70, bytesLength=2922 -peer1.org2.example.com | ] -peer1.org2.example.com | [1a0a 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to index -peer1.org2.example.com | [1a0b 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx number:[0] ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to blockNumTranNum index -peer1.org2.example.com | [1a0c 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55530], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org2.example.com | [1a0d 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -peer1.org2.example.com | [1a0e 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] -peer1.org2.example.com | [1a0f 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -peer1.org2.example.com | [1a10 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -peer1.org2.example.com | [1a11 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [1a12 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [1a13 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org1.example.com | [176b 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [176c 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [176d 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [176f 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [176e 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1770 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1771 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1772 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1773 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1774 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [1775 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [1776 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [1777 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [1778 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1779 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [177a 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [177b 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [177c 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [177d 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [177e 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [177f 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1780 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1781 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1782 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1783 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1854 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1855 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1856 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1857 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1858 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1859 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [185a 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [185b 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [185c 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [185d 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [185e 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\\" signature:"0E\002!\000\347\177\017\324\266\270+\\M\232\267\254Q\017\tc\275\370\r\234\211\006\334\354\005\203\347r|\256\361[\002 t\377\2524\217\313\367\214/??\177L\251>\331{\005\263?x4+Y \214\245\274r\253\271`" > alive: alive: -peer0.org2.example.com | [185f 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1860 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1861 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1862 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1863 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1864 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1865 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1866 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1867 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1868 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1869 05-31 05:22:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1659 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1658 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [165a 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [165b 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [165c 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [165e 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [165d 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1660 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [165f 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1661 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1662 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1663 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1664 05-31 05:22:40.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [1665 05-31 05:22:40.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [1666 05-31 05:22:40.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1667 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1668 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [1669 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [166a 05-31 05:22:41.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [166b 05-31 05:22:41.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org1.example.com | [166c 05-31 05:22:41.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [166d 05-31 05:22:41.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [166e 05-31 05:22:41.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [166f 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1670 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1671 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1672 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1673 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1674 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1675 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1676 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1677 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1678 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1679 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [167a 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [167b 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [167c 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [167d 05-31 05:22:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [167e 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [167f 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1680 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1681 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1682 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1683 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [186a 05-31 05:22:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [186b 05-31 05:22:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [186c 05-31 05:22:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [186d 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [186e 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [186f 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1870 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1871 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1872 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1873 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1874 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1875 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1876 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1877 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1878 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1879 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [187a 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [187b 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1784 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1785 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1786 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1787 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1788 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1789 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [178a 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [178b 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [178c 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [178d 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [178e 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [178f 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1790 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1791 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1792 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1793 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1794 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1795 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1796 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1797 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1798 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1799 05-31 05:22:46.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [179a 05-31 05:22:46.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [179b 05-31 05:22:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [179c 05-31 05:22:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1a14 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [1a15 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [1a16 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] -peer1.org2.example.com | [1a17 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -peer1.org2.example.com | [1a18 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [1a19 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org2.example.com | [1a1a 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [1a1b 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 -peer1.org2.example.com | [1a1c 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [1a1d 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [1a1e 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [1a1f 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [1a20 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [1a21 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [1a22 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [1a23 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [1a24 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [1a25 05-31 05:22:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1a26 05-31 05:22:58.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1a27 05-31 05:22:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1a28 05-31 05:22:58.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1a29 05-31 05:22:58.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1a2a 05-31 05:22:58.85 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1a2b 05-31 05:22:58.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a2c 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a2d 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a2e 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a2f 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a30 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a31 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a32 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a33 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [187c 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > alive: alive: alive: -peer0.org2.example.com | [187d 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [187e 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [187f 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1880 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1881 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1882 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1883 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1884 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1885 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [1886 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1887 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1888 05-31 05:22:43.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1889 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [188a 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [188b 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [188c 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [188d 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [188e 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [188f 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1890 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1891 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1892 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [179d 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [179e 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [179f 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17a0 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17a1 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17a2 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17a3 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17a4 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [17a5 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [17a6 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [17a7 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [17a8 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17a9 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17aa 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [17ab 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17ac 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17ad 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17ae 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [17af 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [17b0 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [17b2 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [17b1 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [17b4 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1a34 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a35 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a36 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a37 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a38 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a39 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a3a 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1a3b 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1a3c 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1a3d 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a3e 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a3f 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a40 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a41 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a42 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a43 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [1893 05-31 05:22:43.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1894 05-31 05:22:43.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1895 05-31 05:22:43.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1896 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1897 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1898 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1899 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [189a 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [189b 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [189c 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [189d 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [189e 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [189f 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [18a0 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [18a2 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [18a1 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [18a4 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [18a3 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [18a5 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1684 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1685 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1686 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1687 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1688 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [17b3 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [17b5 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [17b6 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [17b7 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [17b9 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17b8 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [17ba 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [17bc 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [17bb 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [17bd 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [17be 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17c4 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17c3 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17c0 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17c1 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [17c6 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17c7 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [17bf 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17c9 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [17ca 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17c2 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [17cb 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [17c8 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a44 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a45 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a46 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a47 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1a48 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a49 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1a4a 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [1a4b 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1a4c 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [1a4d 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1a4e 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1a4f 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1a50 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1a51 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1a52 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1a53 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a54 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a55 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a56 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a57 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a58 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a5a 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1a59 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a5b 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a5c 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1a5d 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a5e 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1a5f 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1a60 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1a61 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1a62 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1a63 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1a64 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1a65 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1a66 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a67 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a68 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a69 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a6a 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a6b 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a6c 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a6d 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a6e 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a6f 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1a70 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [1a71 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a72 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a73 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a74 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a75 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a76 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1a77 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1a78 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1a79 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1a7a 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1a7b 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1a7c 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1a7d 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1a7e 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1a7f 05-31 05:22:58.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1a80 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a81 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a82 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a83 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a84 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [1a85 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a86 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer1.org2.example.com | [1a87 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [1a88 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [1a8a 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a89 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1a8b 05-31 05:22:59.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a8c 05-31 05:22:59.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a8d 05-31 05:22:59.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1a8e 05-31 05:22:59.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a8f 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a90 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a91 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [1a92 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a93 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a94 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1a95 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1a96 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1a97 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1a98 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1a99 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1a9a 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1a9b 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1a9c 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1a9d 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1a9e 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1a9f 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [1aa0 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [18a6 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [18a7 05-31 05:22:43.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [18a8 05-31 05:22:43.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18a9 05-31 05:22:43.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18aa 05-31 05:22:43.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [18ab 05-31 05:22:43.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [18ac 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [18ad 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [18ae 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [18af 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [18b0 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18b1 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [18b2 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [18b3 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18b4 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18b5 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [18b6 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [18b7 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [18b8 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [18b9 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [18ba 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [18bb 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18bc 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [18bd 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [18be 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1689 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [168a 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [168b 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [168c 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [168d 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [168e 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [168f 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1690 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1691 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1692 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1693 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1695 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1696 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1694 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1697 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1698 05-31 05:22:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1699 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [169a 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [169b 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [169c 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [169d 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [169e 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [169f 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [17c5 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [17cc 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [17cd 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17ce 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17cf 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [17d0 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [17d1 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [17d2 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [17d3 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [17d4 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17d5 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [17d6 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17d7 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17d8 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [17d9 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17da 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [17db 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17de 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [17df 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17e0 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [17e1 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17dc 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [17dd 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [17e2 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [17e3 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [17e5 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [17e6 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17e4 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020b" signature:"0D\002 '\265!/\223m\362@\307L>1\210\3465\000I1\376\013?\r}H\352>W6\333KE\023\002 Q\324\361\222\005\021\024u\341q\242J@\026\ny\205\212S1D\227yNM\240\205\352\255I\275%" > -peer0.org1.example.com | [17e7 05-31 05:22:46.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [17e8 05-31 05:22:46.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [17e9 05-31 05:22:46.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [17ea 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [17eb 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org1.example.com | [17ec 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org1.example.com | [17ed 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17ee 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [17ef 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17f0 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [17f1 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [17f2 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [17f3 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17f4 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [17f5 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17f6 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [17f7 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [17f8 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [17f9 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17fa 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [17fb 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [17fc 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [17fd 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [18c0 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [18bf 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [18c1 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [18c2 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [18c3 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18c4 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [18c5 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [18c6 05-31 05:22:43.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [18c7 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [18c8 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [18c9 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [18ca 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [18cb 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18cc 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [18cd 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [18ce 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [18cf 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [18d0 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [18d1 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18d3 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [18d2 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18d4 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [18d5 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 92 but got ts: inc_num:1527744091508552400 seq_num:91 -peer0.org2.example.com | [18d6 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [17fe 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [17ff 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1800 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1801 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1802 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1803 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1804 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1805 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1806 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1807 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020c" signature:"0E\002!\000\273\007|Z]\235\322\304{\371\007\016Bj(n\362\313\210)\266\326\254\214\217Lw\246\342\214\205\324\002 w|O\342\3204\234p4*\2513\325eX\305n\224\366\236H\204\266N\264TF'\315\323^k" secret_envelope: > -peer0.org1.example.com | [1808 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org1.example.com | [1809 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [180a 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [180b 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [180c 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [180d 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [180e 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [180f 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1810 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1811 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1812 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1813 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1814 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1815 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1816 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1817 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1818 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [16a0 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [16a1 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16a2 05-31 05:22:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16a3 05-31 05:22:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [16a4 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16a5 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16a6 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [16a7 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16a8 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16a9 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16aa 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [16ab 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [16ac 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [16ad 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [16ae 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [16af 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [16b0 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [16b1 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [16b2 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16b3 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16b4 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [16b5 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16b7 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [16b6 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16b8 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [18d7 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [18d8 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [18d9 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 95 but got ts: inc_num:1527744090808810100 seq_num:94 -peer0.org2.example.com | [18da 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18db 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18dc 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [18dd 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [18de 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [18df 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [18e0 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [18e1 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [18e2 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18e3 05-31 05:22:44.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [18e4 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18e5 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18e6 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [18e7 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [18e8 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18e9 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18ea 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [18eb 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [18ec 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [18ed 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1819 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [181a 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [181b 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [181c 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [181d 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [181f 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1820 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [181e 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1821 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1822 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1823 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1824 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1825 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1826 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1827 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1828 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1829 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [182a 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [182b 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [182c 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [182d 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [182e 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [182f 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1830 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [1831 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1832 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1833 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1834 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1835 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1836 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1837 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1838 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1839 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [183a 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [183b 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [183c 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [183d 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [183e 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [183f 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1841 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [18ee 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [18ef 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [18f0 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [18f1 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [18f2 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [18f3 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [18f4 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18f5 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [18f6 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18f7 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [18f8 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18f9 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [18fa 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [18fb 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18fc 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [18fd 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18fe 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [18ff 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1900 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1901 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1902 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1903 05-31 05:22:46.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [1904 05-31 05:22:46.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [1905 05-31 05:22:46.40 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [1906 05-31 05:22:46.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1907 05-31 05:22:46.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org2.example.com | [1908 05-31 05:22:46.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [16b9 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16ba 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [16bb 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16bc 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [16bd 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16be 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16bf 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [16c0 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16c1 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16c2 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [16c3 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [16c4 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [16c5 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [16c6 05-31 05:22:42.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [16c7 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [16c8 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16c9 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [16ca 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [16cb 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16cc 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [16cd 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [16ce 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1842 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1840 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1843 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1844 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1845 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1846 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1847 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1848 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1849 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [184a 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [184b 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 96 but got ts: inc_num:1527744091508552400 seq_num:95 -peer0.org1.example.com | [184c 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [184d 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [184e 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [184f 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1850 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1851 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1852 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1853 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1854 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1855 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1856 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1857 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1858 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1859 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1909 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [190a 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [190b 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [190c 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [190d 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [190e 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [190f 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1910 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1911 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1912 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1913 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1914 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1915 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1916 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1917 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1918 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1919 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [191a 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [191b 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [191c 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [191d 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [191f 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1aa1 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020p" signature:"0D\002 P\235y!\215?o\373@\t\272\220\225\262\210\234\231\037 \010\t{\\\356Hh\203\016\326\347\202\314\002 V\016\006\353\207=\241\214=!\020\314\306\221\261X\362Gn\\\214\232Z\013)h\272\3539\037\341\361" > alive: alive: -peer1.org2.example.com | [1aa2 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1aa3 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1aa4 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [1aa5 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1aa6 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1aa7 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1aa8 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1aa9 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1aaa 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1aab 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1aac 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1aad 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1aae 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1aaf 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer1.org2.example.com | [1ab0 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1ab1 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ab2 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1ab3 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ab4 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1ab5 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ab6 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ab7 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ab8 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1ab9 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [185a 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 101 but got ts: inc_num:1527744091840124700 seq_num:99 -peer0.org1.example.com | [185b 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [185c 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [185d 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [185e 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [185f 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1860 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1861 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1862 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 96 but got ts: inc_num:1527744091508552400 seq_num:95 -peer0.org1.example.com | [1863 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1864 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1865 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1866 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1867 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1868 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1869 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [186a 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [186b 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [186c 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [186d 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [186e 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [186f 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1870 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1871 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [191e 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1920 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1921 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1923 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1922 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1924 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1926 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1927 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1925 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1928 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1929 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [192a 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [192b 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [192c 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [192d 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [192e 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [192f 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1930 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1931 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1932 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1933 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1934 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1935 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1936 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1937 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [16cf 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [16d0 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [16d1 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [16d2 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [16d3 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [16d4 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [16d5 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [16d6 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [16d7 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [16d8 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [16da 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16d9 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [16db 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\\" signature:"0E\002!\000\347\177\017\324\266\270+\\M\232\267\254Q\017\tc\275\370\r\234\211\006\334\354\005\203\347r|\256\361[\002 t\377\2524\217\313\367\214/??\177L\251>\331{\005\263?x4+Y \214\245\274r\253\271`" > alive: alive: alive: -peer1.org1.example.com | [16dc 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [16dd 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [16de 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [16df 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [16e0 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [16e1 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [16e2 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16e3 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [16e4 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [16e6 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [16e7 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [16e8 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [16e9 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [16e5 05-31 05:22:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [16ea 05-31 05:22:43.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [16eb 05-31 05:22:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [16ef 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [16ee 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16ed 05-31 05:22:43.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [16f1 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [16f0 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [16ec 05-31 05:22:43.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [16f2 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [16f3 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [16f4 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16f5 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [16f6 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org1.example.com | [16f7 05-31 05:22:43.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16f8 05-31 05:22:43.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org1.example.com | [16f9 05-31 05:22:43.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org1.example.com | [16fa 05-31 05:22:43.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16fb 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [16fc 05-31 05:22:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [16fd 05-31 05:22:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [16fe 05-31 05:22:43.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [16ff 05-31 05:22:43.55 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1700 05-31 05:22:43.55 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [1702 05-31 05:22:43.55 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1701 05-31 05:22:43.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1703 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1872 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1873 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1874 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1875 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1876 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1877 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1878 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1879 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [187a 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [187b 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [187c 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [187d 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [187e 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1880 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1881 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [187f 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\022m-\242W\275\345" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020e" signature:"0E\002!\000\250\021\374\306\354H\276\205Z\266\277$ \304\026\332\2337\240\025\217,PgO5\034S|\244\305\036\002 >\310\037\nIQA\t9t]\252\275\000\322\274\326x\220\335\353\002x\367\256\333\372\336\223bSY" > -peer0.org1.example.com | [1882 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1883 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1884 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1885 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [1886 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1938 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1939 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [193a 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [193b 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [193c 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [193d 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [193e 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [193f 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1940 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1941 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1942 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1943 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1944 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1945 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1946 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1947 05-31 05:22:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [1948 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1949 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [194a 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [194b 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [194c 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [194d 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [194e 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [194f 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1950 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1aba 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1abb 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1abc 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1abd 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1abe 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1abf 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ac0 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ac1 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ac2 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ac3 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ac4 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ac5 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ac6 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1ac7 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1ac8 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1ac9 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1aca 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1acb 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1acc 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1acd 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1acf 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1ad0 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1704 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1705 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1706 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1708 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1707 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [1709 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [170a 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [170b 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [170c 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [170d 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [170e 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [170f 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1710 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1711 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1712 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1713 05-31 05:22:43.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1714 05-31 05:22:43.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1715 05-31 05:22:43.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1887 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1888 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1889 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [188a 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [188b 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [188c 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [188d 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [188e 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [188f 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1890 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1891 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1892 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1894 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [1895 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1896 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020f" signature:"0E\002!\000\356\031\367(\356h\314\257\240\203p0\311\344\016\362\231\205t\\\357\332\244\257g\345\326\035\243p6\023\002 e\306g\262\343\035@\332\001\007\225^\320\033\357\020\3159\364\325N\r\030+\241A|\377\033\306[\207" > -peer0.org1.example.com | [1897 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1898 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1893 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1951 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1952 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1953 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1954 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1955 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1956 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1957 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1958 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1959 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [195a 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [195b 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [195c 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [195d 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [195e 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [195f 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1960 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1961 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1962 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1963 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [1964 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1965 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer0.org2.example.com | [1966 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1967 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1968 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1969 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [196a 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [196b 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [196c 05-31 05:22:47.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [196d 05-31 05:22:47.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [196e 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [1970 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1971 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [196f 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1972 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1973 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1974 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1975 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1976 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1977 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1978 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1979 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [197a 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [197b 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [197c 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [197d 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [197e 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [197f 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1899 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [189a 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [189b 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [189c 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [189d 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [189e 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [189f 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [18a0 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [18a1 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [18a3 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [18a2 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [18a5 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [18a6 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [18a7 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [18a8 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [18a9 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [18a4 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [18aa 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [18ab 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [18ac 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [18ad 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [18ae 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [18af 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18b0 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [18b1 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18b2 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1ad1 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > alive: alive: -peer1.org2.example.com | [1ad2 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ad3 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ace 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1ad4 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ad5 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ad6 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1ad7 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ad8 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ad9 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ada 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1adb 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1adc 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1add 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [1ade 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1adf 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1ae0 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1ae1 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1716 05-31 05:22:43.58 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1717 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1718 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [171a 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [171b 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [171c 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1719 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [171d 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [171e 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [171f 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [1720 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1721 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [1722 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1723 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1724 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1726 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1727 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1728 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1729 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [1725 05-31 05:22:43.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [18b4 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [18b3 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [18b5 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [18b6 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [18b7 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [18b8 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18b9 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [18ba 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [18bb 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [18bc 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [18bd 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [18be 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [18bf 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18c0 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [18c1 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [18c2 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [18c3 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [18c4 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18c5 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [18c6 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [18c7 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [18c8 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18c9 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [18ca 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [18cb 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [18cc 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [18cd 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [18ce 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ae2 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1ae3 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1ae4 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1ae5 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1ae6 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [1ae7 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ae8 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ae9 05-31 05:23:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [1aea 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1aeb 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1aed 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1aec 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1aef 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1aee 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1af0 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1af1 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1af2 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1af3 05-31 05:23:01.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [1af4 05-31 05:23:01.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [1af5 05-31 05:23:01.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [1af6 05-31 05:23:01.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org2.example.com | [1af7 05-31 05:23:01.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1af8 05-31 05:23:01.42 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer0.org2.example.com | [1980 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1981 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [1982 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [1983 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [1984 05-31 05:22:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1985 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1986 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1987 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [1988 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1989 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [198a 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [198b 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [198c 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [198d 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [198e 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [198f 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1990 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1991 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1992 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1993 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1995 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [1996 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [18cf 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org1.example.com | [18d0 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org1.example.com | [18d1 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18d2 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [18d3 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18d4 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [18d5 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [18d6 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [18d7 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18d8 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [18d9 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [18da 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [18db 05-31 05:22:51.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18dc 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [18dd 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18de 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18df 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [18e0 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18e1 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18e2 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18e3 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [18e4 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [18e5 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [18e6 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1af9 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1afa 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1afb 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1afc 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1afd 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1afe 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1aff 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1b00 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1b01 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1b02 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1b03 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1b04 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b05 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b06 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1b07 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1b08 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b09 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b0a 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b0b 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b0c 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b0d 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1b0e 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b0f 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b10 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [172a 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [172b 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [172c 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [172d 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [172e 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [172f 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1730 05-31 05:22:43.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1731 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1732 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1733 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1734 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1735 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [1736 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1738 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1737 05-31 05:22:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1739 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [173a 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [173b 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [173c 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [173d 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [173e 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [173f 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1740 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1741 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 94 but got ts: inc_num:1527744091618763800 seq_num:93 -peer1.org1.example.com | [1742 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [18e8 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [18e7 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [18ea 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18e9 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [18eb 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [18ec 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [18ed 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [18ee 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [18ef 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18f0 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [18f1 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18f2 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [18f4 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [18f5 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [18f6 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18f3 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18f7 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [18f8 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [18f9 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18fa 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18fb 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [18fc 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [18fd 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [18fe 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b11 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b12 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1b13 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b14 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b15 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b16 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b17 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1b18 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b19 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b1a 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b1b 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1b1c 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1b1d 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1b1e 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1b1f 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1b20 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1b21 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b22 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b23 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1b25 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b24 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1b27 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b26 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b28 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1997 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020a" signature:"0D\002 Y\247!q\230U\013\253\340\036\276U\257\353z\331T\344_\361g$0\352%$?6\315\020W\252\002 K\332%P\222\360\321\202M\221\376\224\024\374\33080\343\025\356y\007\023\323@\031\2667PD?\313" > alive: alive: -peer0.org2.example.com | [1998 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1999 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1994 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [199a 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [199b 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [199c 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [199d 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [199e 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [199f 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [19a0 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [19a1 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [19a2 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [19a3 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [19a4 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [19a5 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [19a6 05-31 05:22:47.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [19a7 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [19a8 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [19a9 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [19aa 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [18ff 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1900 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1901 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1902 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [1903 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1904 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1905 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [1906 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1907 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1908 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1909 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [190a 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [190b 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [190c 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [190d 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [190e 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020g" signature:"0D\002 O\254\350[[\352\320\002\303\311\354\000\217\337\220\260\031\235\001[&U\225%v\221\350\226/\363p\200\002 vXY\320\201\034!6wU\020IB\n\223(9\002\216\250\022\353\225\034\264O\322\332\357\014\363m" secret_envelope: > -peer0.org1.example.com | [190f 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [1910 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1911 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b29 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b2a 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1b2b 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b2c 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b2d 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b2e 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b2f 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1b30 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b31 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b32 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b33 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b34 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1b36 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b37 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b38 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1b39 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1b3a 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1b3b 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1b3c 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1b3d 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1b3e 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b3f 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b35 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b40 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1b41 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1b42 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b44 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b43 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b45 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b46 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b47 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1b48 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b49 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b4a 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b4b 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b4c 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1b4d 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b4e 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1b4f 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b50 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1b51 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1b52 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1b53 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b54 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1b56 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1b55 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b57 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b59 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b58 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1b5a 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b5b 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b5c 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b5d 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b5e 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b5f 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b60 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b61 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b62 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b63 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b64 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b65 05-31 05:23:02.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" secret_envelope:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1b67 05-31 05:23:02.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b68 05-31 05:23:02.88 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1b6a 05-31 05:23:02.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b69 05-31 05:23:02.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b6b 05-31 05:23:02.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b6c 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b6d 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1b6e 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b6f 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b70 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b71 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b72 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1b73 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b74 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b75 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b76 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1b77 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1b78 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1b7a 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b79 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1b7b 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1b7c 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1b7d 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b7e 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b7f 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b80 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b81 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b82 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b83 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1b84 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1b85 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b86 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1743 05-31 05:22:43.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1744 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1745 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1746 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1747 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1748 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1749 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [174a 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [174b 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [174c 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [174d 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [174e 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [174f 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1750 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [1751 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1752 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1753 05-31 05:22:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1754 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1755 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1756 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 93 but got ts: inc_num:1527744090808810100 seq_num:92 -peer1.org1.example.com | [1757 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1758 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1759 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [175a 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [175b 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [175c 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [175d 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [175e 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [175f 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1760 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1761 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1762 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1763 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1764 05-31 05:22:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1765 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1766 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1767 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1768 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1769 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [176a 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [176b 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [176c 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [176d 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [176e 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [176f 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1770 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1771 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1912 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1913 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1914 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [1915 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1916 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1917 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1918 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1919 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [191b 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [191c 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [191a 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [191d 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [191e 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [191f 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1921 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1922 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1923 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1920 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1924 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1925 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1926 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1927 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [19ab 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [19ac 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [19ad 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [19ae 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [19af 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [19b0 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [19b1 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [19b2 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [19b3 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [19b4 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [19b5 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [19b6 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > alive: alive: -peer0.org2.example.com | [19b7 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [19b8 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [19b9 05-31 05:22:47.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [19ba 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [19bc 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [19bd 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [19bb 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [19bf 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [19c0 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1772 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1773 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1774 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1775 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1776 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1777 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [1778 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1779 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > alive: > -peer1.org1.example.com | [177a 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [177b 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [177c 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [177d 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [177e 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [177f 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [1780 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1781 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1782 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1783 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1784 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1785 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1786 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1b87 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1b88 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1b89 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1b8a 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1b8b 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1b8c 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1b8d 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b8e 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1b8f 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b90 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [1b92 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1b91 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b93 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1b95 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1b94 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [1b96 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b97 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [1b98 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1b99 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [1b9a 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1b9b 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1b9c 05-31 05:23:02.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1b9d 05-31 05:23:02.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1b9e 05-31 05:23:02.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1b9f 05-31 05:23:02.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1ba0 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ba1 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ba2 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ba3 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ba4 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ba5 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ba6 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [5 1 2 3 4] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1ba7 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ba8 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ba9 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1baa 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [1bab 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bac 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bad 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bae 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1baf 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1bb0 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1bb1 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1bb2 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1bb3 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1bb4 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1bb5 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1bb6 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1bb7 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1bb8 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [1bb9 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1bba 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020u" signature:"0D\002 u\003\034o\013\023\253s\365\340\310W\231\375\227~5\321~\214\275\003\212[\316\255f2\345 $\311\002 ST\372{\301\210)L\032\262\346>2)\276\270\004\256ou\025m\206\030d\257\302\030\321\332\237\334" > alive:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > alive:\245\t\tU\263]\342\257H\330\235\320\205\222\025?${\235\300\313\274\r\247\031" > -peer1.org2.example.com | [1bbb 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bbc 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1bbd 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [1bbe 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bbf 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bc0 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1bc1 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bc2 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1bc3 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1bc4 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bc5 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bc6 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bc7 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bc8 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bc9 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bca 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1bcb 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1bcc 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bcd 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1bce 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bcf 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bd0 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1bd1 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bd2 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bd3 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bd4 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bd5 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bd6 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bd7 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bd8 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1bd9 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1bda 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1bdb 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1bdc 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1bdd 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1bde 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1bdf 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1be1 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1be2 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1be3 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > alive:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > alive: -peer1.org2.example.com | [1be4 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1be5 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1be0 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1be6 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1be7 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1be8 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1be9 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bea 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [1beb 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1bec 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [1bed 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [1bee 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1bef 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [1bf0 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1bf1 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1bf2 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1bf3 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1bf4 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1bf5 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1bf6 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1bf7 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1bf9 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [19c1 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [19be 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [19c3 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [19c4 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [19c2 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [19c5 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [19c6 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [19c7 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [19c8 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [19c9 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [19ca 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [19cb 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [19cc 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [19cd 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [19ce 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [19cf 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [19d0 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [19d1 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [19d2 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [19d3 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [19d4 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [19d5 05-31 05:22:47.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [19d6 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [19d7 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [19d8 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [19d9 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [19da 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [19db 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [19dc 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [19dd 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [19de 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [19df 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [19e0 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [19e1 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [19e2 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [19e3 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [19e4 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [19e5 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [19e6 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [19e7 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [19e8 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [19e9 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1787 05-31 05:22:43.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1788 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1789 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [178a 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [178b 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [178c 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [178d 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [178e 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [178f 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1790 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:'\2762\267\223$l\234\336s\220d\002 \014\275$\020\320\237\005\244\214(\275\342\373U\277r\332\2127#\233\323\255L\316Ql\274\250\316\372H" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > alive: -peer1.org1.example.com | [1791 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1792 05-31 05:22:43.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1793 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1794 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1795 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1797 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1798 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1799 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1796 05-31 05:22:45.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [179a 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [179b 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [179d 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [179e 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [179c 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [179f 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [17a1 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [17a2 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [17a0 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17a3 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [17a4 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [17a5 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17a6 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [17a7 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [17a8 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17a9 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [17ab 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17ac 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17aa 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17ad 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17ae 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17af 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [17b0 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [17b1 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17b2 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [17b3 05-31 05:22:45.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [17b4 05-31 05:22:45.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [17b5 05-31 05:22:45.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [17b6 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [17b7 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [17b8 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17b9 05-31 05:22:46.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [17ba 05-31 05:22:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [17bb 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [17bc 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [17bd 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [17be 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [17c0 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [17c2 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17c1 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [17c3 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17bf 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17c4 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17c5 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17c6 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [17c7 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [17c8 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17c9 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17ca 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [17cb 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [17cc 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [19ea 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [19eb 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [19ec 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [19ed 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [19ee 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [19ef 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [19f0 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [19f1 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [19f2 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [19f3 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [19f4 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [19f5 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [19f6 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [19f7 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [19f8 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [19f9 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [19fa 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [19fb 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [19fc 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [19fd 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 100 but got ts: inc_num:1527744090808810100 seq_num:99 -peer0.org2.example.com | [19fe 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [19ff 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a00 05-31 05:22:47.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1a01 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1bf8 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\025k\374\347\367\020[\272Z\365\355\313Ou\205\006\236\361X\021\277\017\021\215j\246\267O\002 \026i\251\276\325D\026ND\327\375\344\322\247*\235)_r\"sd\026\305\270\014,af\260\002C" secret_envelope: > -peer1.org2.example.com | [1bfa 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1bfb 05-31 05:23:05.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [1bfc 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1bfd 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1bfe 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1bff 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1c01 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c00 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c02 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c04 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c03 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c05 05-31 05:23:06.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c06 05-31 05:23:06.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c07 05-31 05:23:06.42 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [1c08 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c09 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1c0a 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c0b 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c0c 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c0d 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1928 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1929 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [192a 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [192b 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [192c 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [192d 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [192e 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [192f 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1930 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1931 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1933 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1934 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1935 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1932 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1936 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1938 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1937 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1939 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [193b 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [193a 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [193d 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [193c 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [193f 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1940 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1941 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1942 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1943 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1944 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [193e 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1945 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1946 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1948 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1947 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1949 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [194a 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [194b 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [194c 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [194d 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [194f 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [194e 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1950 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1951 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1952 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1c0e 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1c0f 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1c10 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1c11 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1c12 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1c13 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1c14 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c15 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c16 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1c17 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c18 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c19 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c1a 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1c1b 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1c1c 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c1d 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c1e 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c1f 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c20 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c21 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1c22 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c23 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c24 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [17cd 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [17ce 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [17cf 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [17d0 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [17d1 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [17d2 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17d3 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17d4 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [17d5 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17d6 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [17d7 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17d8 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17da 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [17d9 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [17db 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17dc 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [17dd 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [17de 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [17df 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [17e0 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17e2 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17e1 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17e3 05-31 05:22:46.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17e4 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [17e5 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c25 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c26 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1c27 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c28 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c29 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c2a 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1c2b 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1c2c 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1c2d 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1c2e 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1c2f 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1c30 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1c31 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c32 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1c33 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1c34 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c35 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c36 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c37 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c38 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c39 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1c3a 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c3b 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c3c 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1a02 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1a03 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1a04 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1a05 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1a06 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a07 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1a08 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a09 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a0a 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1a0b 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a0c 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 101 but got ts: inc_num:1527744091618763800 seq_num:100 -peer0.org2.example.com | [1a0d 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a0e 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a0f 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1a10 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a11 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a12 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a13 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1a14 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 100 but got ts: inc_num:1527744090808810100 seq_num:98 -peer0.org2.example.com | [1a15 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a16 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a17 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1a18 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1a19 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1a1a 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1a1b 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1a1c 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1a1d 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a1e 05-31 05:22:47.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1a1f 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a20 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a21 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a22 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1a23 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a24 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a25 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a26 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a27 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a28 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1a29 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1a2a 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [1a2b 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1a2c 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1a2d 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1c3d 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c3e 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1c3f 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c40 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c41 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c42 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1c43 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1c44 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1c45 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1c46 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1c47 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1c48 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c49 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c4a 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c4b 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c4c 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c4d 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c4e 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c4f 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c50 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c51 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c52 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c53 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c54 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c55 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c56 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c57 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c58 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1c59 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c5a 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c5b 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c5c 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1c5d 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1c5e 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1c5f 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1c60 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1c61 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1c62 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1c63 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c64 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1c65 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1c66 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1c67 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c68 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a2e 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1a2f 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a31 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [1a32 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1a33 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" secret_envelope: > alive: > -peer0.org2.example.com | [1a34 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a35 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a30 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1a36 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a37 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a38 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a39 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a3a 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1a3b 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a3c 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a3d 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a3e 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1a3f 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1a40 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1a41 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1a42 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1a43 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1a44 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a45 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1953 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1954 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1955 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1956 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1957 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1958 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1959 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [195b 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [195c 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [195a 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [195d 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [195e 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [195f 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1960 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1961 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [1962 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1963 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [1964 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1965 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1966 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1967 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1968 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1969 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [196a 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [196b 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [196c 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [196d 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [196e 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [196f 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1970 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1971 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1972 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 101 but got ts: inc_num:1527744091508552400 seq_num:100 -peer0.org1.example.com | [1973 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1974 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1975 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1976 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1977 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1978 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1979 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [197a 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [197b 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [197c 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [197d 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [197e 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [197f 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1980 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1981 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1982 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1983 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1984 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1985 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1986 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1987 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1988 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1989 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [198a 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [198b 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [198c 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [198e 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [198d 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [198f 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1990 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1991 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1992 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1993 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1995 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a46 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a47 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a48 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1a49 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a4a 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a4b 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1a4c 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1a4d 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1a4e 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a4f 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a50 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a51 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1a52 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a53 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a54 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a56 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a57 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1a55 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a58 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a59 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a5a 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [1a5b 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a5c 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a5d 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a5e 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a60 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a5f 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a61 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a62 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a63 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a64 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a65 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a66 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a67 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a68 05-31 05:22:51.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a69 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [1a6a 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [1a6b 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [1a6c 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1a6d 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a6e 05-31 05:22:51.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a6f 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1a70 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1a71 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [17e6 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [17e7 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [17e8 05-31 05:22:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [17e9 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [17ea 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [17eb 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [17ec 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [17ed 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [17ee 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [17ef 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17f0 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [17f2 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [17f1 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [17f3 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [17f4 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [17f5 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [17f6 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [17f7 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [17f8 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [17f9 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [17fa 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1c69 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c6a 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c6b 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c6c 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c6d 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1c6e 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1c6f 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c70 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c71 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c72 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1c73 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c74 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c75 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c76 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1c77 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1c78 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1c79 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1c7a 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1c7b 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1c7c 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [1c7d 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1c7e 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1a72 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a73 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a74 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a75 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a76 05-31 05:22:51.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a77 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a78 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1a79 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a7a 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [17fb 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020a" signature:"0D\002 Y\247!q\230U\013\253\340\036\276U\257\353z\331T\344_\361g$0\352%$?6\315\020W\252\002 K\332%P\222\360\321\202M\221\376\224\024\374\33080\343\025\356y\007\023\323@\031\2667PD?\313" > alive: alive: alive: -peer1.org1.example.com | [17fc 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [17fd 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [17fe 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [17ff 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1800 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1801 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1802 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1803 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1804 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1805 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1806 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1807 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1808 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1809 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [180a 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [180b 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [180c 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [180d 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [180e 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [180f 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c7f 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1c80 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1c81 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1c82 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c83 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c84 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1c86 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c87 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c85 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c88 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c89 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c8a 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c8b 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1c8c 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c8d 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1c8e 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1c8f 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1c90 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1c91 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1c92 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1c93 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1c94 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1c95 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1c96 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c97 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c98 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c99 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1810 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1811 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1812 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1813 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1814 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1815 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1816 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1817 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1818 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1819 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [181a 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [181b 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [181c 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [181d 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [181e 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [181f 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1820 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1821 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1822 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1823 05-31 05:22:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1824 05-31 05:22:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1825 05-31 05:22:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1826 05-31 05:22:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1827 05-31 05:22:47.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1828 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1829 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [182a 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [182b 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1996 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1994 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1997 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1998 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1999 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [199a 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [199b 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [199c 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [199d 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [199e 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [199f 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [19a0 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19a1 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [19a2 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [19a3 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [19a4 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [19a5 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [19a6 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [19a7 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [19a8 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [19a9 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [19aa 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [19ab 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [19ac 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [19ae 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [19af 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [19ad 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020j" signature:"0D\002 >\024n$\210!\373i\027\373_\220\0309\235?\320\233{\207\352^u}z\205l\210\275\320?r\002 \023\337\326\340oi \021\255>\233\000\353D\265 s\251m\375\216+\205\205\353v\232\211\025\310\254\232" > -peer0.org1.example.com | [19b0 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [19b1 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [19b2 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [182c 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [182d 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [182e 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [182f 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1830 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1831 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1832 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1833 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1834 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1835 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1836 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1837 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org1.example.com | [1838 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org1.example.com | [1839 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer1.org1.example.com | [183a 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [183b 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [183c 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [183d 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [183e 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [183f 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1840 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [1841 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1843 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1842 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1844 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1845 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1846 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1847 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1848 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1849 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [184a 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1c9a 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c9b 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1c9c 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1c9d 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1c9f 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1c9e 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ca0 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ca1 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1ca2 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1ca3 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1ca4 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1ca5 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ca6 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1ca7 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1ca8 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1ca9 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1caa 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1cab 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1cac 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1cad 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1cae 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1caf 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cb0 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cb1 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cb2 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cb3 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [184b 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [184c 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [184d 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [184e 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [184f 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1850 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1851 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1852 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1853 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1854 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1855 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1856 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1857 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1858 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [185a 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1859 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [185b 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [185c 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [185e 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [185d 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [185f 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1860 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1862 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1863 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1864 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1861 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1865 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1866 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1867 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1868 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1869 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [186a 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [186b 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [186c 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [186d 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [186e 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [19b3 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [19b4 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19b5 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [19b6 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [19b7 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19b8 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [19b9 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [19ba 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [19bb 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [19bc 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [19bd 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [19be 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [19bf 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [19c0 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [19c2 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [19c3 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [19c4 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020k" signature:"0E\002!\000\372\264\366\254,\363\317\373\211\034\345\014\0004\331V\216\250\000\2149\022\223lZ\277BB\032\265?\343\002 L2O\363f\345Qx\351\353S\312\307L\337\215\260a|:4\305\347\202\004\327:F+\250\324v" > -peer0.org1.example.com | [19c5 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [19c6 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [19c1 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1cb4 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cb5 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 1 2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1cb6 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cb7 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cb8 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cb9 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [1cba 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cbb 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cbc 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cbd 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cbe 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1cbf 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1cc0 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1cc1 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1cc2 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1cc3 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1cc4 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1cc5 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1cc6 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [1cc7 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1a7b 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a7c 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1a7d 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1a7e 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1a80 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1a7f 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a82 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a81 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1a83 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1a84 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a86 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [1a85 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1a87 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a88 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1a89 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1a8a 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a8c 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a8b 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a8d 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1a8e 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a8f 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a90 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1a91 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a92 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1a93 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1a94 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a95 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1a96 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1a97 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1a98 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1a99 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1a9a 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1a9b 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1a9c 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1a9d 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1a9e 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1a9f 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1aa0 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [1aa1 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1aa3 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1aa4 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1aa5 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1aa6 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1aa7 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1aa8 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1aa9 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1aaa 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1aa2 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020e" signature:"0E\002!\000\250\021\374\306\354H\276\205Z\266\277$ \304\026\332\2337\240\025\217,PgO5\034S|\244\305\036\002 >\310\037\nIQA\t9t]\252\275\000\322\274\326x\220\335\353\002x\367\256\333\372\336\223bSY" > alive: alive: -peer0.org2.example.com | [1aab 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1aac 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1aad 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1aae 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1aaf 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ab0 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ab1 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1ab2 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ab3 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ab4 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ab5 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ab6 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1ab7 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ab8 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ab9 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1aba 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1abb 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1abc 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1abd 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [186f 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [19c7 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [19c8 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [19c9 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [19ca 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [19cb 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [19cc 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [19cd 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [19ce 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [19cf 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19d0 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [19d1 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19d2 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [19d3 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [19d4 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19d5 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [19d6 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [19d7 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [19d8 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [19d9 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [19da 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [19db 05-31 05:22:54.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19dc 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [19dd 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19de 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [19df 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [19e0 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [19e1 05-31 05:22:55.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19e2 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [19e3 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cc8 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020z" signature:"0E\002!\000\326Yz\344\003\260p\325\014\226\003\252`\241x\3147\030\024\375\227*\262=P\205\361(]\250\214\214\002 \036\256\020\251\251dek\3619\310\352\263\010,\002@\354\206p\223C\264\332\3323@\212\233(\243_" > alive: alive: alive:)D.\205#B7\243h\323\034" > -peer1.org2.example.com | [1cc9 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cca 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ccb 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1ccc 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [1ccd 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cce 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ccf 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1cd0 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cd1 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1cd2 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1cd3 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cd4 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cd5 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cd6 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cd7 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cd8 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cd9 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1cda 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1cdb 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cdc 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1cdd 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cde 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cdf 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1ce0 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ce1 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ce2 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ce3 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ce4 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ce5 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ce6 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ce7 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1ce8 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1ce9 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1cea 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1ceb 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1cec 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1ced 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1cee 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1cef 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1cf0 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1cf1 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1cf2 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > alive: -peer0.org1.example.com | [19e4 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [19e5 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [19e6 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [19e7 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19e8 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [19e9 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19ea 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [19eb 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [19ec 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [19ed 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [19ee 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [19ef 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [19f0 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [19f1 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [19f2 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [19f3 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [19f4 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [19f5 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [19f6 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\220\241\235\331\244\367\372\370\336WBj" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020l" signature:"0E\002!\000\370\362\370\340 U;\030a\026\013\362\231\032!a{,\001\262Hp\037\202\036\233\025\321\272\366\276k\002 x\223\261>\233%\274\274\317\253\006\340\267.$\352\362\201\305\316X>\246\000\205VPgl\350\336~" secret_envelope: > -peer0.org1.example.com | [19f7 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [19f8 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [19f9 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [19fa 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [19fb 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [19fc 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [19fd 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [19fe 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [19ff 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a00 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1a01 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a02 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a03 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a04 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a05 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a06 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a07 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1abe 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1abf 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1ac0 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1ac1 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1ac2 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1ac3 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ac4 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1ac5 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1ac6 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1ac8 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ac9 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1ac7 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > alive: alive: -peer0.org2.example.com | [1aca 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1acb 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1acc 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1acd 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ace 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1acf 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ad0 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1ad1 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1a08 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a09 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a0a 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a0b 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a0c 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a0d 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a0e 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1870 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1871 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1872 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1873 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1874 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1875 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1876 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1877 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1878 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1879 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [187a 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [187b 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [187c 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [187d 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [187e 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [187f 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1880 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer1.org1.example.com | [1882 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1881 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer1.org1.example.com | [1883 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1884 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1885 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer1.org1.example.com | [1886 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1887 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1888 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1889 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [188a 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [188b 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [188c 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [188d 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [188e 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [188f 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1890 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1891 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1892 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1893 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1895 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1894 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1896 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1897 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 98 but got ts: inc_num:1527744090808810100 seq_num:97 -peer1.org1.example.com | [1898 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1899 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [189a 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [189b 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [189c 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [189d 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [189e 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [189f 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [18a0 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1ad2 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1ad3 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1ad4 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1ad5 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1ad6 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ad7 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1ad8 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1ad9 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1ada 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1adb 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1adc 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1add 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1ade 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1adf 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ae0 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1ae1 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ae2 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ae3 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1ae4 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ae5 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1ae6 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ae7 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ae8 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1ae9 05-31 05:22:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [1aea 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1cf3 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cf4 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1cf5 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cf6 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cf7 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1cf8 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cf9 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cfa 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1cfb 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1cfc 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1cfd 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1cfe 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1cff 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1d00 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1d01 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1d02 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1d03 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d05 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1d06 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d07 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > -peer1.org2.example.com | [1d08 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [18a1 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [18a2 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [18a3 05-31 05:22:47.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [18a4 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [18a5 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [18a6 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [18a7 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [18a8 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18a9 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [18aa 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [18ab 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [18ac 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [18ad 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18ae 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [18af 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [18b0 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18b1 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [18b2 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [18b3 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [18b4 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [18b5 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [18b6 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1a0f 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a10 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a11 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a12 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a13 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a14 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a15 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a16 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a17 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a18 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a19 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a1a 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a1b 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a1c 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a1d 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a1e 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a1f 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1a20 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a21 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1aeb 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1aec 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1aee 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1aed 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1aef 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1af0 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1af1 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1af2 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1af3 05-31 05:22:51.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1af4 05-31 05:22:51.93 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1af5 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1af6 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1af7 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [1af9 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1af8 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1afa 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1afb 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1afc 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1afd 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1afe 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1aff 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b00 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b01 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b02 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [18b7 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [18b8 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [18b9 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [18ba 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [18bb 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [18bc 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [18be 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [18bf 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [18bd 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > alive: > -peer1.org1.example.com | [18c0 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [18c1 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [18c2 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [18c3 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [18c4 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18c5 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [18c6 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [18c7 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18c8 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [18c9 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [18ca 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [18cb 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [18cc 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [18cd 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [18ce 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [18cf 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [18d0 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [18d1 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [18d2 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [18d3 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [18d5 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [18d6 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [18d4 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > alive: alive: alive: -peer1.org1.example.com | [18d7 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [18d8 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [18d9 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [18da 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [18db 05-31 05:22:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18dc 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [18dd 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [18de 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18df 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d09 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d04 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1d0a 05-31 05:23:10.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [1d0b 05-31 05:23:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1d0c 05-31 05:23:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d0d 05-31 05:23:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1d0e 05-31 05:23:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d0f 05-31 05:23:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1d10 05-31 05:23:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d11 05-31 05:23:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d12 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d13 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d14 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d15 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d16 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d17 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d18 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d19 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d1a 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d1b 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d1c 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d1d 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d1e 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d1f 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d20 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d21 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d23 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d22 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d24 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d25 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d26 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d27 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d28 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d29 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [1d2a 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d2b 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d2c 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d2d 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1d2e 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1d2f 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1d30 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d31 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [1d32 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1d33 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [1d34 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1d35 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1d36 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1d37 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1d38 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d39 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1d3a 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d3b 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d3c 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d3d 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d3e 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1d3f 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 127 but got ts: inc_num:1527744091840124700 seq_num:126 -peer1.org2.example.com | [1d40 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d41 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d42 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1d43 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1d44 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1d45 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1a22 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [18e0 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a23 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1b03 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [18e1 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1a24 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [18e2 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [18e3 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1a25 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a26 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [18e4 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1a27 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d46 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [18e5 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [18e6 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1a28 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d47 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [18e7 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b04 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a29 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1d48 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [18e8 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1b05 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a2a 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1d49 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [18e9 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [1b06 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [18ea 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d4a 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1b07 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [18eb 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > alive: alive: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > alive: -peer0.org1.example.com | [1a2c 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d4b 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b08 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b09 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a2b 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [18ec 05-31 05:22:50.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b0a 05-31 05:22:51.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a2d 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [18ed 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d4c 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b0b 05-31 05:22:51.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a2e 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [18ee 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b0c 05-31 05:22:51.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1d4d 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a2f 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [18ef 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [18f0 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [18f1 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b0f 05-31 05:22:51.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b0e 05-31 05:22:51.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a30 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1b10 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d4e 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1a31 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [18f2 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b0d 05-31 05:22:51.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d4f 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1a32 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [18f3 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b11 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d50 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1a33 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18f4 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1b12 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d51 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1a34 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b13 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [18f5 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1d52 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a35 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b14 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [18f6 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1d54 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a36 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1b16 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [18f7 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1d53 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a37 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1b17 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [18f8 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1d55 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a38 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 110 but got ts: inc_num:1527744091840124700 seq_num:108 -peer0.org2.example.com | [1b18 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [18f9 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1d56 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a39 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b15 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [18fb 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d57 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1a3a 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b19 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [18fa 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d58 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1a3b 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1b1a 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [18fd 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1d59 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1a3c 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b1b 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [18fc 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d5a 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1a3d 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b1c 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [18fe 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d5b 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1a3e 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1b1d 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [18ff 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1d5c 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a3f 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1b1e 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1900 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1d5d 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1a40 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b1f 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1901 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1d5e 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a41 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b20 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1902 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d5f 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a42 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1b21 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1903 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1d61 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1a43 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1b22 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1904 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d60 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a44 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1b23 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1905 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1d62 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a45 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1b24 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1906 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1d63 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 126 but got ts: inc_num:1527744091618763800 seq_num:124 -peer0.org1.example.com | [1a46 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1b25 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1907 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1d64 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a47 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1b26 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1908 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d65 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a48 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b27 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1909 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1d66 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1a49 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1d67 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 127 but got ts: inc_num:1527744091840124700 seq_num:126 -peer1.org1.example.com | [190a 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1a4a 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b28 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1d68 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [190b 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a4b 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b29 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1d69 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a4c 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [190c 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b2a 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d6a 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a4d 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [190d 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1b2b 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d6c 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1a4e 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [190e 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b2c 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1d6b 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a4f 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [190f 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b2d 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 105 but got ts: inc_num:1527744090808810100 seq_num:103 -peer1.org2.example.com | [1d6d 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a50 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1910 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1b2e 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d6e 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a51 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1911 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b2f 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d6f 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a52 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [1912 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b30 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1d70 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1a53 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1913 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b31 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1d71 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1a54 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1914 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 1 2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1b32 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1d72 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1a55 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1915 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b33 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1d73 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1a56 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1916 05-31 05:22:50.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer0.org2.example.com | [1b34 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1d74 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1a57 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1917 05-31 05:22:50.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer0.org2.example.com | [1b35 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1d75 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a58 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1918 05-31 05:22:50.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer0.org2.example.com | [1b36 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d76 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1a59 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1919 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1b37 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1d77 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a5a 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [191a 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b38 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d78 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1a5b 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [191b 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b39 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d79 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a5c 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [191c 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [1b3a 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d7a 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1a5d 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [191d 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b3b 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d7b 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a5e 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [191e 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b3c 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a5f 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1d7c 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [191f 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b3d 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1a60 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1d7d 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1920 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b3e 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a61 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1d7e 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1921 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b3f 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a62 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1d7f 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1922 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b40 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a63 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1d80 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1923 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b41 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1a64 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1d81 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1924 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b42 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 102 but got ts: inc_num:1527744091508552400 seq_num:101 -peer0.org1.example.com | [1a65 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a66 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1a67 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1d82 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1d83 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1d84 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d85 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d86 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d87 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d88 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d89 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d8a 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d8b 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1d8c 05-31 05:23:11.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [1d8d 05-31 05:23:11.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [1d8e 05-31 05:23:11.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org1.example.com | [1925 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b43 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a68 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1d8f 05-31 05:23:11.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [1926 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b44 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a69 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d90 05-31 05:23:11.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1928 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b45 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1a6a 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a6b 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d91 05-31 05:23:11.42 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer0.org2.example.com | [1b46 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 105 but got ts: inc_num:1527744090808810100 seq_num:104 -peer0.org1.example.com | [1a6c 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1d92 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1927 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b47 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a6d 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1d93 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1929 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a6e 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1a70 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a71 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1a6f 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a72 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1b48 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1a73 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [192a 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b49 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1d94 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [1d95 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [192b 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b4a 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1d96 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [192c 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer0.org1.example.com | [1a74 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1b4b 05-31 05:22:51.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1b4c 05-31 05:22:51.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1d97 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [192d 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a75 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b4d 05-31 05:22:51.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1d98 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [192e 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a76 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1b4e 05-31 05:22:51.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1d99 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [192f 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a77 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1b4f 05-31 05:22:51.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1d9a 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1930 05-31 05:22:51.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b50 05-31 05:22:51.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1d9b 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1931 05-31 05:22:51.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a78 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b51 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d9c 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1932 05-31 05:22:51.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a79 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b52 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d9d 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1933 05-31 05:22:51.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a7a 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org2.example.com | [1b53 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1d9e 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1934 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a7b 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b54 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org2.example.com | [1d9f 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1935 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a7c 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b55 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1da0 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1936 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a7d 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b56 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [1da1 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1937 05-31 05:22:51.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [1a7e 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b57 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [1da2 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1938 05-31 05:22:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1a7f 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b58 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1da3 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1939 05-31 05:22:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1a80 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1b59 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer1.org2.example.com | [1da4 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [193a 05-31 05:22:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1a81 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1b5a 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1da5 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [193b 05-31 05:22:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a82 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1da7 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b5b 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [193c 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1da6 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a83 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1b5c 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [193d 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1da8 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1a84 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1b5d 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [193e 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1da9 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a85 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1b5e 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [193f 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1daa 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1a86 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b5f 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1940 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1dab 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a87 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1b60 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1941 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1dad 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1dac 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1dae 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1daf 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1db0 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1a88 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [1db1 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a89 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1b61 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1942 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1db2 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a8b 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b62 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1943 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1db3 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a8c 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b63 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1945 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1db4 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a8a 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\312d`]\021\214NZD\332\331\256S\361U" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020n" signature:"0D\002 \001\266z\341c`\003\307\343\317\345\277\024\313z\212\017JL\035\343{_e\267I\205A\345\313\363R\002 \rH\247\263\r\363\355\2317]\316/?bp\211\213\033\022\314\000\374\306\334\241\271\034\355z]\334\367" > -peer0.org2.example.com | [1b64 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1944 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1db5 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a8d 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org2.example.com | [1b65 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org1.example.com | [1947 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1db6 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1a8e 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org2.example.com | [1b66 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org1.example.com | [1948 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1db7 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1a8f 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org2.example.com | [1b67 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1949 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1db8 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1a90 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org2.example.com | [1b68 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [194a 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1db9 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1a91 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b69 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [194b 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1dba 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1a92 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org2.example.com | [1b6a 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [194c 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1dbb 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1a93 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org2.example.com | [1b6b 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [194d 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1dbc 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1a94 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55392 -peer0.org2.example.com | [1b6c 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1946 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org2.example.com | [1dbd 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1a95 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428406450 -peer0.org2.example.com | [1b6d 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [194e 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1dbf 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a96 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [1b6e 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [194f 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1dc0 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1a97 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [1b6f 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1950 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1dc1 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a98 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org2.example.com | [1b70 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1951 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1dc2 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1a99 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [1b71 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1953 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1dc3 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1a9a 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [1b72 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1954 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1dbe 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1a9b 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4283c4c30, header 0xc4284067b0 -peer1.org1.example.com | [1955 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b73 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1dc4 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [1a9c 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org1.example.com | [1952 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1b74 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [1dc6 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1a9d 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][8d3e6e51] processing txid: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 -peer1.org1.example.com | [1956 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b75 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1a9e 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -peer1.org2.example.com | [1dc5 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1958 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b76 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1a9f 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer1.org2.example.com | [1dc8 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1959 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b77 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aa0 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [1dc7 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020~" signature:"0D\002 :j:\251\320!\255A\312\022R\001\331j\360\207I\214\361\332\341DJ\240\273\263\302!\256\016'\207\002 m\\j\310-LhU\265\200\221\013\204\306\034\275v\264\202\005\327\036\343vV\305i\313\345\213\303}" > alive: alive: alive: -peer1.org1.example.com | [195b 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b78 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aa1 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -peer1.org2.example.com | [1dca 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [195c 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b79 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1aa2 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][8d3e6e51] Entry chaincode: name:"exp02" -peer1.org2.example.com | [1dc9 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1957 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1b7a 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [1dcb 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b7b 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1aa3 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4,syscc=true,proposal=0xc4283c4c30,canname=lscc:1.2.0) -peer1.org2.example.com | [1dcc 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [195d 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1b7c 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1aa4 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org2.example.com | [1dcd 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [195e 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b7d 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1aa5 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [1dce 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [195a 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b7e 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aa6 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d3e6e51]Received message TRANSACTION from peer -peer1.org2.example.com | [1dcf 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [195f 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b7f 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1aa7 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d3e6e51] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [1dd0 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1960 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b80 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aa8 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8d3e6e51] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org2.example.com | [1dd1 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1961 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1b81 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aa9 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer1.org2.example.com | [1dd2 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1962 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b82 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aaa 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8d3e6e51] Sending GET_STATE -peer1.org2.example.com | [1dd3 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1963 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b83 05-31 05:22:55.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1aab 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [1dd4 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1964 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b84 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aac 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling GET_STATE from chaincode -peer1.org2.example.com | [1dd5 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [1965 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b85 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aad 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [8d3e6e51] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [1dd6 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1966 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1b86 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1aae 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [1dd7 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1967 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1b87 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1aaf 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [1dd8 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1968 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1b88 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ab0 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d3e6e51]Received message RESPONSE from peer -peer1.org2.example.com | [1dd9 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1969 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1b89 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ab1 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d3e6e51] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [1dda 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [196a 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1b8a 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ab2 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [8d3e6e51] before send -peer1.org2.example.com | [1ddb 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1b8b 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [196b 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1ab3 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [8d3e6e51] after send -peer1.org2.example.com | [1ddc 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1b8c 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [196c 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1ab4 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8d3e6e51] GetState received payload RESPONSE -peer1.org2.example.com | [1ddd 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b8d 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [196d 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1ab5 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d3e6e51] Transaction completed. Sending COMPLETED -peer0.org2.example.com | [1b8e 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1dde 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [196e 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ab6 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8d3e6e51] send state message COMPLETED -peer0.org2.example.com | [1b8f 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1ddf 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [196f 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1ab7 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [1b90 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1de0 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1970 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ab8 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8d3e6e51] notifying Txid:8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, channelID:businesschannel -peer0.org2.example.com | [1b91 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1de1 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1972 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ab9 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org2.example.com | [1b92 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1de2 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1971 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1b93 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1aba 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org2.example.com | [1de3 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1973 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1b94 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1abb 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] Entry chaincode: name:"exp02" version: 1.0 -peer1.org2.example.com | [1de4 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1974 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1b95 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1abc 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4,syscc=false,proposal=0xc4283c4c30,canname=exp02:1.0) -peer1.org2.example.com | [1de5 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1975 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1b96 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\220\241\235\331\244\367\372\370\336WBj" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020j" signature:"0D\002 >\024n$\210!\373i\027\373_\220\0309\235?\320\233{\207\352^u}z\205l\210\275\320?r\002 \023\337\326\340oi \021\255>\233\000\353D\265 s\251m\375\216+\205\205\353v\232\211\025\310\254\232" > alive: -peer0.org1.example.com | [1abd 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer1.org2.example.com | [1de6 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1977 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1b97 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1abe 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [1de7 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1976 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1b98 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1abf 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [1de8 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1978 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b99 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ac0 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling GET_STATE from chaincode -peer1.org2.example.com | [1de9 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1979 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b9a 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ac1 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [8d3e6e51] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [1dea 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [197a 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1b9b 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ac2 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [1deb 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [197b 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1b9c 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ac3 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [1dec 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [197c 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1b9d 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ac4 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8d3e6e51] Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [1ded 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [197d 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1b9e 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ac5 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [1def 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [197e 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1b9f 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [1ac6 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling GET_STATE from chaincode -peer1.org2.example.com | [1df0 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [197f 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1ba0 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ac7 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [8d3e6e51] getting state for chaincode exp02, key b, channel businesschannel -peer1.org2.example.com | [1dee 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > alive: alive: -peer1.org1.example.com | [1980 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1ba1 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ac8 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org1.example.com | [1981 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1df1 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ba2 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ac9 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed GET_STATE. Sending RESPONSE -peer1.org1.example.com | [1982 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1df2 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1ba3 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aca 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [1df3 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1983 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1ba4 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org1.example.com | [1acb 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling PUT_STATE from chaincode -peer1.org2.example.com | [1df4 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1984 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ba5 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1acc 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [1df5 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1985 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1ba6 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1acd 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [1df6 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1987 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ba7 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ace 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling PUT_STATE from chaincode -peer1.org2.example.com | [1df7 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1986 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ba9 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1acf 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [1df8 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1988 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1baa 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1ad0 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1df9 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [198a 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bab 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1ad1 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8d3e6e51] notifying Txid:8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, channelID:businesschannel -peer1.org2.example.com | [1dfa 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1989 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1bac 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1ad2 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [1dfb 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [198b 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1bad 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1ad3 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] Exit -peer1.org2.example.com | [1dfc 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [198c 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1bae 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1ad4 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [1dfd 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [198d 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1baf 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1ad5 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -peer1.org2.example.com | [1dfe 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [198e 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1bb0 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1ad6 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][8d3e6e51] Exit -peer1.org2.example.com | [1dff 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [198f 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1bb1 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1ad7 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][8d3e6e51] Entry chaincode: name:"exp02" -peer1.org2.example.com | [1e01 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1990 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [1bb2 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1ad8 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][8d3e6e51] escc for chaincode name:"exp02" is escc -peer1.org2.example.com | [1e00 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1991 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1992 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1e02 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1993 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1ad9 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, chaincode: exp02} -peer0.org2.example.com | [1bb3 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1e03 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1e04 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1e05 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1e06 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1994 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1e07 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1995 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1ada 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, chaincode: exp02} -peer0.org2.example.com | [1bb4 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1e08 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1996 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1adb 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][8d3e6e51] Exit -peer0.org2.example.com | [1bb5 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > alive:\220\241\235\331\244\367\372\370\336WBj" > alive: alive: -peer1.org1.example.com | [1998 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e09 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1adc 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -peer0.org2.example.com | [1bb6 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1999 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e0a 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1add 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55392 -peer0.org2.example.com | [1bb7 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [199a 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e0b 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ade 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ba8 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1997 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e0c 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1adf 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1bb8 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [199b 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e0d 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1ae1 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bb9 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [199c 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1e0e 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1ae2 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bba 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [199d 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 103 but got ts: inc_num:1527744091618763800 seq_num:101 -peer1.org2.example.com | [1e0f 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1ae3 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1bbb 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [199e 05-31 05:22:51.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1e10 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1ae4 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1bbc 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [199f 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1e11 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1ae5 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1bbd 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19a0 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1e12 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1ae6 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1bbe 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [19a1 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1e13 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1ae7 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1bbf 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [19a2 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1e14 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1ae8 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1bc0 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [19a3 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1e15 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1ae9 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1bc1 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [19a4 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [19a5 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1e16 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1e17 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1bc2 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [19a6 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1e18 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1aea 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1bc3 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [19a7 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1e19 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ae0 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1bc4 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [19a8 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1e1a 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1aeb 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bc5 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [19a9 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1e1b 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1aec 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1bc6 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19aa 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1e1c 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1aed 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1bc7 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19ab 05-31 05:22:51.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [19ac 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e1d 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1bc8 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [19ad 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e1e 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e1f 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1aee 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [19ae 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bc9 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [19af 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1e20 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1aef 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bca 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19b0 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e21 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [1bcb 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1af1 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [19b1 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e22 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1bcc 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1af0 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [19b2 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e23 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [19b3 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1af3 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bcd 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1bcf 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e24 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1af2 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19b4 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bd0 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1e25 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1af4 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1e26 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1af5 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [19b5 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bce 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e27 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1af6 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19b6 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1bd1 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1e28 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1af7 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1af8 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1bd2 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1afa 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bd3 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1af9 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [19b7 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1e29 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1e2a 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1afb 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1e2b 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bd4 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1afc 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19b8 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1afd 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1bd5 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19b9 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1afe 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e2c 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1aff 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b00 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [19ba 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1e2d 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1b01 05-31 05:22:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [19bb 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1bd6 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1e2e 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b02 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [19bc 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [19bd 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1e2f 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bd7 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [19be 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [1e30 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1bd8 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1bd9 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1b03 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e31 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bda 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [19bf 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1e32 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bdb 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1b05 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b04 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1e33 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1e34 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1e35 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1e36 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1bdc 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1e37 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1bdd 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [19c1 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b07 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e38 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1bde 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [19c0 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > alive: > -peer0.org1.example.com | [1b08 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1e39 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1bdf 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [19c2 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b06 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1e3a 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1be0 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [19c3 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b09 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e3b 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org2.example.com | [1be1 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [19c5 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b0a 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1e3c 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1be3 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [19c6 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1b0b 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e3d 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\307\r\271\027M[\247\343EW4Y\026\335\333i5\364\276\236\341:,\211\0312\311\002 f]\236\367\037\022\327\334\325\017\362\272\367\370%?\2433\324\353'\360V\315j\352\340\021\3452k'" secret_envelope: > -peer0.org2.example.com | [1be2 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [19c7 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b0c 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1e3e 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org2.example.com | [1be4 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [19c4 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b0d 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e3f 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1be5 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [19c8 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b0e 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e40 05-31 05:23:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org2.example.com | [1be6 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b0f 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19c9 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19cb 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1e41 05-31 05:23:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1b10 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [19ca 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b11 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [19cc 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1be7 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e42 05-31 05:23:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org1.example.com | [1b12 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [19cd 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1be8 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e44 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b13 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [19ce 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1be9 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e43 05-31 05:23:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1b14 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [19cf 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1bea 05-31 05:22:55.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e46 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1b15 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [19d0 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1beb 05-31 05:22:55.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e45 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b16 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [19d1 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1bec 05-31 05:22:55.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e47 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1b17 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [19d2 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1bed 05-31 05:22:55.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e48 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b18 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1b19 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [19d3 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1e49 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b1a 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19d4 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1bee 05-31 05:22:55.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1e4a 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b1b 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [19d5 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bef 05-31 05:22:55.95 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1bf0 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1bf1 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bf2 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1e4b 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bf3 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b1c 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19d6 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1bf4 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e4c 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b1d 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [19d7 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1bf5 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [19d8 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e4d 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b1e 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1bf6 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [19d9 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1e4e 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b1f 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1bf7 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [19da 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e4f 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e50 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b20 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b21 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b22 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1e51 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1bf8 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [19db 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b23 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e52 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bf9 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [19dc 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1b24 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e53 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bfa 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [19dd 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1b25 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1e54 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1bfb 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [19de 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1b26 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e55 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1bfc 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [19df 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b27 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e57 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [1bfd 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [19e0 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b28 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1e58 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1bfe 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [19e1 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b29 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4798 bytes, seq: 5}, Envelope: 4828 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e56 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1bff 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [19e2 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b2a 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e59 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c00 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1b2b 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [19e3 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e5a 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1c01 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1b2c 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [19e4 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e5b 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c02 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1b2d 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc428520ec0 env 0xc4284cd7d0 txn 0 -peer1.org1.example.com | [19e5 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1e5c 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c03 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1b2e 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4284cd7d0 -peer1.org1.example.com | [19e6 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1e5d 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c04 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1b2f 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -peer1.org1.example.com | [19e7 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e5e 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c05 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1c06 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1b30 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [19e8 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e5f 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c07 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1b31 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [19e9 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [19ea 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [19eb 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [19ec 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [19ed 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [19ee 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1e60 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [19ef 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1e62 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c08 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1b32 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org1.example.com | [19f0 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1e63 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c09 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b33 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [1b34 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [19f1 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c0a 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e64 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1b35 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42848d000, header channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -peer1.org1.example.com | [19f2 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c0b 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1e61 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b36 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [19f3 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1c0c 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1e65 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1b37 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [19f4 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c0d 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1e66 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1b38 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [19f5 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e67 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1c0e 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1b39 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org1.example.com | [19f6 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1e68 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1c0f 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1b3a 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -peer1.org1.example.com | [19f7 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e69 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1c10 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1b3b 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [19f8 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e6a 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1c11 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1b3c 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc4238af000 -peer1.org1.example.com | [19f9 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1e6b 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1c12 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b3d 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [5fda861a-3928-40fc-aee5-0882cc4e1c53] -peer1.org2.example.com | [1e6c 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [19fa 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1c13 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [1b3e 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [1e6d 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [19fb 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1c14 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b3f 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [5fda861a-3928-40fc-aee5-0882cc4e1c53] -peer1.org2.example.com | [1e6e 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [19fc 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c16 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b40 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin -peer1.org2.example.com | [1e6f 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1e70 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e71 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1e72 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e73 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [19fe 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1e74 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1a00 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1c15 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1b41 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [1e75 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [19ff 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c17 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [1b42 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: -peer1.org2.example.com | [1e76 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1a01 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c18 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1b43 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 appears to be valid -peer1.org2.example.com | [1e77 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [19fd 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c19 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1b44 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc4238af000 -peer1.org2.example.com | [1e78 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1a02 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c1a 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1b45 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc428520ec0 env 0xc4284cd7d0 txn 0 -peer1.org2.example.com | [1e79 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1a03 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c1b 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1b46 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [1e7a 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1a04 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c1c 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1b47 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [1e7b 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a05 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c1d 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1c1e 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1e7c 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a06 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [1a07 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c1f 05-31 05:22:55.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1e7d 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e7e 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1e7f 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1a08 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a09 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1e80 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1a0a 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c20 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1b48 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer1.org2.example.com | [1e81 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1a0b 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c21 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1b49 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [1e82 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1a0c 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1c22 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b4a 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -peer1.org2.example.com | [1e83 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1a0d 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1c24 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b4b 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [1e84 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [1a0e 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1c23 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1b4c 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [1e85 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1a0f 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1c25 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1b4d 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [1e86 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1c26 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 110 but got ts: inc_num:1527744091618763800 seq_num:109 -peer1.org1.example.com | [1a10 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1b4e 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [1e87 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1c27 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1a11 05-31 05:22:51.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1b4f 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org2.example.com | [1e88 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1a12 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1c28 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1b50 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [1e89 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1a13 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1c29 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1b51 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [1e8a 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1a14 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1c2a 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1e8b 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b52 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org1.example.com | [1a15 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org2.example.com | [1c2b 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1e8c 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b53 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] marked as valid by state validator -peer1.org1.example.com | [1a16 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1c2c 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1e8d 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b54 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [1a17 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020i" signature:"0E\002!\000\313R\252\374\212\320~\344\312&'\222\252\245M\037\203\314\252E-\344\r\277\235[P\206\023J\310\374\002 +\342E4\244H\030'F\177\245\371_\324Qd\277A}\327.\034\273,\"\267Ctl\272\\\237" > alive: alive: alive: -peer0.org2.example.com | [1c2d 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1e8e 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b55 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [1a18 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c2e 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1e8f 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1b56 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [1a19 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c2f 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1e90 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 132 but got ts: inc_num:1527744091840124700 seq_num:131 -peer0.org1.example.com | [1b57 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -peer1.org1.example.com | [1a1a 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c30 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1e91 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1b58 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] -peer1.org1.example.com | [1a1b 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c31 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1e92 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b59 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x45, 0x52, 0x18, 0xd7, 0x37, 0x89, 0x65, 0x1a, 0xb0, 0x67, 0x41, 0xba, 0xca, 0x59, 0x80, 0x29, 0xb2, 0xe6, 0xf9, 0xbe, 0xb4, 0x2b, 0x95, 0xd6, 0x5d, 0xd7, 0x85, 0x87, 0x85, 0xf9, 0xd7, 0xcc} txOffsets= -peer1.org1.example.com | [1a1c 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c32 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1e93 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | txId=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 locPointer=offset=70, bytesLength=2922 -peer1.org1.example.com | [1a1d 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1c33 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1e94 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [13b2 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [ff2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org1.example.com | [160d 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [145b 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [14ba 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to index +peer0.org2.example.com | [13b3 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [ff3 06-12 02:16:13.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35922: rpc error: code = Canceled desc = context canceled +peer1.org1.example.com | [160e 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [145c 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [14bb 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx number:[0] ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to blockNumTranNum index +peer0.org2.example.com | [13b4 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [ff4 06-12 02:16:13.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org1.example.com | [160f 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [145d 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [14bc 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 78 but got ts: inc_num:1528769653227426900 seq_num:76 +peer0.org2.example.com | [13b5 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [ff5 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org1.example.com | [1610 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [145e 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [14bd 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [13b6 06-12 02:15:12.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [ff6 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35924 +peer1.org1.example.com | [1611 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [145f 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [14be 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [13b7 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [ff7 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35924 +peer1.org1.example.com | [1612 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1460 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [14bf 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [13b8 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [ff8 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org1.example.com | [1613 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1461 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [14c0 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org2.example.com | [13b9 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [ff9 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1614 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1462 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [14c1 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] +peer0.org2.example.com | [13ba 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [ffa 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org1.example.com | [1615 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1463 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [14c2 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [13bb 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [ffb 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1616 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [1464 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14c3 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [13bc 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [ffc 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer1.org1.example.com | [1617 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1465 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [14c4 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [13bd 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [ffd 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0e0 gate 1528769773766069600 evaluation starts +peer1.org1.example.com | [1618 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1466 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [14c6 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] +peer0.org2.example.com | [13be 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [ffe 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e0 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [1619 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1467 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [14c7 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +peer0.org2.example.com | [13bf 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [fff 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [161a 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1468 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14c8 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +peer0.org2.example.com | [13c0 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1000 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer1.org1.example.com | [161b 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1469 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [14c9 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [13c1 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1001 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e0 principal evaluation fails +peer1.org1.example.com | [161c 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [146a 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [13c2 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [14ca 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +orderer.example.com | [1002 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0e0 gate 1528769773766069600 evaluation fails +peer1.org1.example.com | [161d 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [146b 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [13c3 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [14cb 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +orderer.example.com | [1003 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer1.org1.example.com | [161e 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [146c 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [13c4 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14c5 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [1004 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer1.org1.example.com | [161f 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" secret_envelope: > alive:p\230\254'\316h\025Q(\\c\371\247\375\027&\251\323P\332\356~y\000\347" secret_envelope: > +peer1.org2.example.com | [146d 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [13c5 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [14cc 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [1005 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer1.org1.example.com | [1620 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [13c6 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [146e 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [14cd 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1006 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0e8 gate 1528769773768210800 evaluation starts +peer1.org1.example.com | [1621 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [13c7 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [146f 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [14ce 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1007 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e8 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [1622 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [13c8 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1470 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [14cf 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +orderer.example.com | [1008 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [1623 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [13c9 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1471 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [14d1 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1009 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer1.org1.example.com | [1624 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [13ca 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1472 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [14d0 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [100a 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e8 principal evaluation fails +peer1.org1.example.com | [1625 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [13cb 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1473 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [14d4 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [100b 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0e8 gate 1528769773768210800 evaluation fails +peer1.org1.example.com | [1626 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [13cc 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1474 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [14d3 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [100c 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [1627 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [13cd 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1475 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [14d5 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [100d 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [1628 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [13ce 06-12 02:15:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1476 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [14d7 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [100e 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer1.org1.example.com | [1629 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [13cf 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [1477 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [14d6 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [100f 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f0 gate 1528769773770252900 evaluation starts +peer1.org1.example.com | [162a 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [13d0 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1478 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14d9 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [1010 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f0 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [162b 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [13d2 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1479 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [14da 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +orderer.example.com | [1011 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [162c 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [13d3 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [147a 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [14db 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [1012 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer1.org1.example.com | [162d 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [13d1 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [147b 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [14dc 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1013 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f0 principal evaluation fails +peer1.org1.example.com | [162e 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [13d4 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [147c 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [14d8 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1014 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f0 gate 1528769773770252900 evaluation fails +peer1.org1.example.com | [162f 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [13d5 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [147d 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [14dd 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [1015 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [1630 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [13d7 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [147e 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [14d2 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +orderer.example.com | [1016 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [1631 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [13d8 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [147f 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [14de 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 80 but got ts: inc_num:1528769652429776900 seq_num:79 +orderer.example.com | [1017 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer1.org1.example.com | [1632 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [13d6 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1480 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [14df 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1018 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer1.org1.example.com | [1633 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [13d9 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1481 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [14e2 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1019 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org1.example.com | [1634 06-12 02:15:20.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [13da 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1482 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org1.example.com | [14e3 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [101a 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer1.org1.example.com | [1635 06-12 02:15:20.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [13db 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org2.example.com | [1483 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [14e1 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [101b 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1636 06-12 02:15:20.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [13dc 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1484 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:8\236\256\272\347N\200o\333@)\324\226\036\027F@B~\030\355\002 3]\213\002\215\352\204\361\262\304\214\360\3348\177\267Y,\023|\355\205\371U\315V\375\215\243n\343\003" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > alive: +peer0.org1.example.com | [14e4 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [101c 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org1.example.com | [1637 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [13dd 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer1.org2.example.com | [1485 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [101d 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769773773162100 evaluation starts +peer0.org1.example.com | [14e5 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1638 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [13de 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [1486 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [101e 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [14e6 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 78 but got ts: inc_num:1528769653227426900 seq_num:77 +peer1.org1.example.com | [1639 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [13df 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1487 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [101f 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [14e7 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [163a 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [13e0 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1488 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1020 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal matched by identity 0 +peer0.org1.example.com | [14e8 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [163b 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [13e1 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1489 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1021 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 18 77 37 9b 56 34 da 8d 8b 8c 34 e4 21 d5 5f 25 |.w7.V4....4.!._%| +peer0.org1.example.com | [14e9 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [163c 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [13e2 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [148a 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +orderer.example.com | 00000010 13 46 17 f7 e0 57 e8 ee 0f da 0c 59 bc 62 37 21 |.F...W.....Y.b7!| +peer0.org1.example.com | [14ea 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [163d 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [13e3 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [148b 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +orderer.example.com | [1022 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7d 9f e8 36 5b 95 ed da b3 22 d2 c3 |0D. }..6[...."..| +peer0.org1.example.com | [14eb 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [163e 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [13e4 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [148c 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000010 41 98 37 4b 22 44 ad b7 c5 e6 e9 0c cf 68 47 32 |A.7K"D.......hG2| +peer0.org1.example.com | [14ec 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [163f 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [13e5 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [148d 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | 00000020 b4 0f c7 bc 02 20 74 48 d2 dc 32 aa b8 f3 3a 8b |..... tH..2...:.| +peer0.org1.example.com | [14ed 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [13e6 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1640 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [148e 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | 00000030 fc ce 4a e4 06 de 4e 43 6b c5 a2 64 cc c7 5b ad |..J...NCk..d..[.| +peer0.org1.example.com | [14ee 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [13e7 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1641 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [148f 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +orderer.example.com | 00000040 12 71 40 bf f0 2d |.q@..-| +peer0.org1.example.com | [14ef 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [13e8 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1642 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1490 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1023 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [14f0 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [13e9 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1643 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1491 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [14f1 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1024 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769773773162100 evaluation succeeds +peer0.org2.example.com | [13ea 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [1025 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1492 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [14f2 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [13eb 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [1026 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1644 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1493 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [14f3 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [1027 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org2.example.com | [13ec 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1645 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1494 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [14f4 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [1028 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org2.example.com | [13ed 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1646 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1495 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [14f5 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [1029 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org2.example.com | [13ee 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1647 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1496 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [14f6 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [14f7 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [102a 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org1.example.com | [1648 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [14f8 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1497 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [102b 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420347540) start: > stop: > from 172.18.0.7:35924 +peer0.org2.example.com | [13ef 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1649 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [14f9 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1498 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [102c 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org2.example.com | [13f0 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [164a 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [14fa 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1499 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [102d 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45419] +peer0.org2.example.com | [13f1 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [164b 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [14fb 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [149a 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [102e 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[36145], Going to peek [8] bytes +peer0.org2.example.com | [13f2 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > alive: alive: +orderer.example.com | [102f 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5321], placementInfo={fileNum=[0], startOffset=[45419], bytesOffset=[45421]} +peer1.org1.example.com | [164c 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [14e0 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [5] +peer1.org1.example.com | [164d 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [13f3 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +orderer.example.com | [1030 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5321] read from file [0] +peer0.org1.example.com | [14fd 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [149b 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [164e 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [13f4 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1031 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420347540) for 172.18.0.7:35924 +peer0.org1.example.com | [14fe 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [149c 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [164f 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [13f5 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +orderer.example.com | [1032 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35924 for (0xc420347540) +peer1.org2.example.com | [149d 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [14fc 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] +peer1.org1.example.com | [1650 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [13f6 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +orderer.example.com | [1033 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35924 +peer1.org2.example.com | [149e 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1502 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [5] +peer1.org1.example.com | [1651 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org2.example.com | [13f7 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +orderer.example.com | [1034 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35924 +peer1.org2.example.com | [14a0 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer0.org1.example.com | [1500 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +peer1.org1.example.com | [1652 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [13f8 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +orderer.example.com | [1035 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org2.example.com | [149f 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\246\304\315\351\327\356)q\003@E\331Z\202\002\230-\260\214\264\324\325\010\"\356\252\335j\002\037S\037\"q\255\321Jo\241\303*,,\221A\002\321\033\267\212\332k\372\250\201]\332\221\205\276\245" secret_envelope: > +peer0.org1.example.com | [1503 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org2.example.com | [13f9 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4203e2c40 env 0xc4203d8a80 txn 0 +peer1.org1.example.com | [1653 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > alive: alive: +orderer.example.com | [1036 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [14a1 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1504 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org2.example.com | [13fa 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4203d8a80 +peer1.org1.example.com | [1654 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +orderer.example.com | [1037 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer1.org2.example.com | [14a2 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1501 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [13fb 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +peer1.org1.example.com | [1655 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1038 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer1.org2.example.com | [14a3 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1505 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [13fc 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [1656 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1039 06-12 02:16:13.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35924: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [14a4 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [150a 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [13fd 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [1657 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [103a 06-12 02:16:13.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org2.example.com | [14a5 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1507 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [13fe 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer1.org1.example.com | [1658 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [103b 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org2.example.com | [14a6 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [14ff 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [13ff 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [1659 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [103c 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35926 +peer1.org2.example.com | [14a7 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [150b 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org2.example.com | [1400 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [165a 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [103d 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35926 +peer1.org2.example.com | [14a8 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [150c 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1401 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4229cea80, header channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +peer1.org1.example.com | [165b 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +orderer.example.com | [103e 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org2.example.com | [14a9 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [150d 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1402 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [165c 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [103f 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [14aa 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [150e 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1403 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [165d 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +orderer.example.com | [1040 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer1.org2.example.com | [14ab 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1509 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1404 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [165f 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [1041 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org2.example.com | [14ac 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1510 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1405 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org1.example.com | [165e 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [14ad 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1042 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org1.example.com | [1508 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer0.org2.example.com | [1406 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +peer1.org1.example.com | [1660 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org2.example.com | [14ae 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1043 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e160 gate 1528769773917784900 evaluation starts +peer0.org1.example.com | [1511 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [1407 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [1661 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [14af 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [1044 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e160 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [150f 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1408 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc422a42000 +peer1.org1.example.com | [1663 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [14b0 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [1045 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e160 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +orderer.example.com | [1046 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e160 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer0.org2.example.com | [1409 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin +peer1.org1.example.com | [1664 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [14b1 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1047 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e160 principal evaluation fails +peer0.org1.example.com | [1514 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [140a 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1665 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [14b2 06-12 02:15:16.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [1048 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e160 gate 1528769773917784900 evaluation fails +peer0.org1.example.com | [1513 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [140b 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes +peer1.org1.example.com | [1662 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [14b3 06-12 02:15:16.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1049 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [140c 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1515 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1667 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [14b4 06-12 02:15:16.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +orderer.example.com | [104a 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [140d 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [1516 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1666 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [14b5 06-12 02:15:16.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [104b 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org2.example.com | [140e 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +peer0.org1.example.com | [1512 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 +peer1.org1.example.com | [1668 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [14b6 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +orderer.example.com | [104c 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e168 gate 1528769773920062300 evaluation starts +peer0.org2.example.com | [140f 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [1517 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [1669 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [14b7 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [104d 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e168 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [1410 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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 | [1518 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [166b 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14b8 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [104e 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e168 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [1411 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +peer0.org1.example.com | [1519 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [166a 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [14b9 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [104f 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e168 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org2.example.com | [1412 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +peer0.org1.example.com | [151a 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [166c 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [14ba 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +orderer.example.com | [1050 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e168 principal evaluation fails +peer0.org2.example.com | [1413 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [1b95fcc0-b215-4303-9484-eeb8fb5e9f7e] +peer0.org1.example.com | [151b 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [166d 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [14bb 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +orderer.example.com | [1051 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e168 gate 1528769773920062300 evaluation fails +peer0.org2.example.com | [1414 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [151c 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [166e 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14bc 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1052 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [1415 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [1b95fcc0-b215-4303-9484-eeb8fb5e9f7e] +peer0.org1.example.com | [151d 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [166f 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [14bd 06-12 02:15:16.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | [1053 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [1416 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +peer0.org1.example.com | [151e 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [1670 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [14be 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [1054 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer0.org2.example.com | [1417 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +peer0.org1.example.com | [151f 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [1671 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14bf 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [1055 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e170 gate 1528769773922082900 evaluation starts +peer0.org2.example.com | [1418 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated +peer0.org1.example.com | [1506 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1672 06-12 02:15:21.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [14c0 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [1056 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e170 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [1419 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 appears to be invalid: Chaincode exp02 is already instantiated +peer0.org1.example.com | [1520 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1673 06-12 02:15:21.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [14c1 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1057 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e170 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [141a 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc422a42000 +peer0.org1.example.com | [1521 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1675 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [14c2 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1058 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e170 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer0.org2.example.com | [141b 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 returned error: Chaincode exp02 is already instantiated +peer0.org1.example.com | [1522 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1674 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [14c4 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1059 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e170 principal evaluation fails +peer0.org2.example.com | [141d 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +peer0.org1.example.com | [1523 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1676 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [14c3 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [105a 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e170 gate 1528769773922082900 evaluation fails +peer0.org2.example.com | [141e 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [1524 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1679 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [14c5 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [105b 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [141f 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +peer0.org1.example.com | [1525 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1677 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [14c6 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [105c 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [1420 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [1526 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1678 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [14c7 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [105d 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] +peer0.org2.example.com | [1421 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +peer0.org1.example.com | [1528 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [167a 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [105e 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer1.org2.example.com | [14c8 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1422 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [1529 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [167b 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +orderer.example.com | [105f 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer1.org2.example.com | [14c9 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1423 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +peer0.org1.example.com | [152a 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\177Ng\325y 6~\241D\236\373\242\257\224\316\251\215" > alive: alive: DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1685 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [14d2 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000010 b5 2c ad 63 df 94 c1 87 24 ab 53 6d 01 d0 b5 47 |.,.c....$.Sm...G| +peer0.org2.example.com | [1429 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1532 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1682 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [14d3 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1068 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 34 8d 46 6d d0 19 7a 4b 60 d8 f6 a4 |0D. 4.Fm..zK`...| +peer0.org2.example.com | [142b 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to index +peer0.org1.example.com | [1534 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1686 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [14d4 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | 00000010 dd 29 4e d0 32 af 46 d5 05 7a d0 da 28 1a 12 1a |.)N.2.F..z..(...| +peer0.org2.example.com | [142c 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx number:[0] ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to blockNumTranNum index +peer0.org1.example.com | [1535 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1687 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [14d5 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | 00000020 d9 55 7d e6 02 20 65 a6 f1 8c 70 49 7b e4 d8 e1 |.U}.. e...pI{...| +peer0.org2.example.com | [142d 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1536 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1688 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [14d6 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | 00000030 4d f5 6e 88 0b a3 a1 e0 2b 99 a9 ff e9 eb ac be |M.n.....+.......| +peer0.org2.example.com | [142e 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +peer0.org1.example.com | [1533 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1689 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [14d7 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | 00000040 c2 64 6f e0 28 c9 |.do.(.| +peer0.org2.example.com | [142f 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] +peer0.org1.example.com | [1537 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [168a 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [14d8 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1069 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e178 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [1430 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] +peer0.org1.example.com | [1538 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [168b 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [14d9 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [106a 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e178 gate 1528769773925181900 evaluation succeeds +peer0.org2.example.com | [1431 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +peer0.org1.example.com | [1539 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [168c 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [14da 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [106b 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1432 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +peer0.org1.example.com | [153a 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [168d 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [14db 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [106c 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1433 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [153b 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [168e 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [14dc 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [106d 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org2.example.com | [1434 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org1.example.com | [153c 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [168f 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [14dd 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [106e 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org2.example.com | [1435 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [153d 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1690 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [14df 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [106f 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [153e 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [1436 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [1691 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [14de 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1070 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [153f 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +peer0.org2.example.com | [1437 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [5] +peer1.org1.example.com | [1692 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [14e1 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1071 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202b2860) start: > stop: > from 172.18.0.7:35926 +peer0.org1.example.com | [1540 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [1439 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] +peer1.org1.example.com | [1693 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [14e0 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [1072 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org1.example.com | [1541 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [143a 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [5] +peer1.org1.example.com | [1694 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [14e2 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1073 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50742] +peer0.org2.example.com | [1438 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +peer0.org1.example.com | [1542 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [1695 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14e3 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1074 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[30822], Going to peek [8] bytes +peer0.org2.example.com | [143b 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer0.org1.example.com | [1543 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [14e4 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1697 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +orderer.example.com | [1075 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +peer0.org2.example.com | [143c 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer0.org1.example.com | [1544 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14e5 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1696 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [143d 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +orderer.example.com | [1076 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] +peer0.org1.example.com | [1545 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [14e6 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1698 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [143e 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +orderer.example.com | [1077 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202b2860) for 172.18.0.7:35926 +peer0.org1.example.com | [1546 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [14e7 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1699 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 91 but got ts: inc_num:1528769651824440500 seq_num:90 +peer0.org2.example.com | [143f 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 +orderer.example.com | [1078 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35926 for (0xc4202b2860) +peer0.org1.example.com | [1547 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14e8 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [169a 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1440 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +orderer.example.com | [1079 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35926 +peer0.org1.example.com | [1548 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [14e9 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [169b 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1441 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [107b 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [1549 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [14ea 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [169c 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1442 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [107c 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [154a 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [14eb 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [169d 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1443 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [107d 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [154b 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14ec 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [169e 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1444 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [107e 06-12 02:16:13.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [154c 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [14ed 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [169f 06-12 02:15:21.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1445 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +orderer.example.com | [107a 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35926 +peer0.org1.example.com | [154d 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14ee 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [16a0 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1446 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +orderer.example.com | [107f 06-12 02:16:13.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35926: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [154e 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [14ef 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [16a1 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1447 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +orderer.example.com | [1080 06-12 02:16:13.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [154f 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [14f0 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [16a2 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1448 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +orderer.example.com | [1081 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [1550 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [14f1 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [16a3 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1449 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | [1082 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35928 +peer0.org1.example.com | [1551 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [14f2 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [16a4 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [144a 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +orderer.example.com | [1083 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35928 +peer0.org1.example.com | [1552 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [14f3 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [16a5 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [144c 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1084 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [1553 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [14f4 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [16a6 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [144d 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1085 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1554 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [14f5 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16a7 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [144b 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [1086 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer0.org1.example.com | [1555 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [14f6 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [16a8 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [144e 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +orderer.example.com | [1087 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1556 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16a9 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [14f7 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [144f 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1088 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org1.example.com | [1557 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [16aa 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [14f8 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1450 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1089 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769774069037700 evaluation starts +peer0.org1.example.com | [1558 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [16ab 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [14fa 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1452 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [108a 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1559 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [16ac 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [14fb 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1451 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [108b 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [16ad 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [155a 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020R" signature:"0E\002!\000\230+\2051\254\270\214#\214\302\004\250\250\227\212b47\222j\333\241\002\313\0340#\t\323q@\344\002 i\2029hF5\270\273)r\341:\256\342\243\304Vs\267\336\246mRA\225\252\331\333\335\267\354\323" secret_envelope: > +peer1.org2.example.com | [14f9 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020V" signature:"0E\002!\000\364\347q\2269\005\177\\\340,@]\267\016\227\235\020AN\244\374\201X\370\371\262\203\205\343\272Ff\002 R\205\264\307\253\257\021E\177\\N\305\t_$\205\363\3264\277\017\245Ie\207\221[\247\005\260S\235" > alive: +peer0.org2.example.com | [1453 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +orderer.example.com | [108c 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer0.org1.example.com | [155b 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [16ae 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [14fc 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1454 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [108d 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 principal evaluation fails +peer0.org1.example.com | [155c 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [16af 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [14fd 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1455 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +orderer.example.com | [108e 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769774069037700 evaluation fails +peer0.org1.example.com | [155d 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16b0 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [14fe 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1456 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [108f 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [155e 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [16b2 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [14ff 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1457 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +orderer.example.com | [1090 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [155f 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [16b1 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1500 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1458 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [1091 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org1.example.com | [1560 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16b3 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1501 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1459 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [1092 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1528769774070836700 evaluation starts +peer0.org1.example.com | [1561 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16b4 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1502 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [145a 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1093 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1562 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [16b5 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1503 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [145b 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [1094 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [1563 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [16b6 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1504 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [145c 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1095 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org1.example.com | [1564 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [16b7 06-12 02:15:21.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1505 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [145d 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [1096 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal evaluation fails +peer0.org1.example.com | [1565 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [16b8 06-12 02:15:21.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [1506 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [145e 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1097 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1528769774070836700 evaluation fails +peer0.org1.example.com | [1566 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [16b9 06-12 02:15:21.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1507 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [145f 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [1098 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [1567 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [16ba 06-12 02:15:21.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1508 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1460 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [1099 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [1568 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16bb 06-12 02:15:21.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1509 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1461 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +orderer.example.com | [109a 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer0.org1.example.com | [1569 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [16bc 06-12 02:15:21.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [150a 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1463 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [109b 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1528769774072741700 evaluation starts +peer0.org1.example.com | [156a 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [16bd 06-12 02:15:21.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1464 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [150b 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [109c 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [156b 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [16be 06-12 02:15:21.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1465 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [150c 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [156c 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [109d 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [16bf 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1466 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [16c0 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [156d 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [109e 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer0.org2.example.com | [1467 06-12 02:15:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [16c1 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [150d 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [156e 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [109f 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation fails +peer0.org2.example.com | [1462 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [16c2 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [150e 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [156f 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [10a0 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1528769774072741700 evaluation fails +peer1.org1.example.com | [16c3 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1468 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [150f 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10a1 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [1570 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16c4 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [146a 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1510 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10a2 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [1571 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16c5 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1469 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1511 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [10a3 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers Org3MSP.Readers ] +peer0.org1.example.com | [1572 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [16c6 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [146b 06-12 02:15:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1512 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10a4 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer0.org1.example.com | [1573 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [146c 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [16c7 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [146d 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [10a5 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer0.org1.example.com | [1574 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16c8 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [146e 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1513 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10a6 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [1575 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [16c9 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [146f 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1514 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [10a7 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1576 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16ca 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1470 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1515 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10a8 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [1577 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16cb 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1471 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1516 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [10a9 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1528769774075328700 evaluation starts +peer0.org1.example.com | [1578 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [16cc 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1472 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [1517 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10aa 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [1579 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [16cd 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1473 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [1518 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10ab 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [157a 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16cf 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1474 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1519 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [10ac 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal matched by identity 0 +peer0.org1.example.com | [157b 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [16d0 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1475 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [151a 06-12 02:15:17.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +orderer.example.com | [10ad 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 85 4f 01 cf fa 6b d0 be 73 bd a5 69 5d 9a 5c ae |.O...k..s..i].\.| +peer0.org1.example.com | [157c 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [16ce 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1476 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [151b 06-12 02:15:17.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000010 63 3b e8 e0 4f 30 cb 66 bc be 03 45 a1 ce 43 ff |c;..O0.f...E..C.| +peer0.org1.example.com | [157d 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [16d1 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1477 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [151c 06-12 02:15:17.61 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +orderer.example.com | [10ae 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a2 0a d7 7a be 87 8c ac 50 65 6a |0E.!....z....Pej| +peer0.org1.example.com | [157e 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [16d2 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [151d 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1478 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | 00000010 a1 77 c7 b3 2e f3 92 4a d7 ce 3a 63 f3 6e a0 5e |.w.....J..:c.n.^| +peer0.org1.example.com | [157f 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [16d3 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [151e 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1479 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000020 b7 4c 88 e2 ba 02 20 45 28 50 6c 17 59 dd 35 b8 |.L.... E(Pl.Y.5.| +peer0.org1.example.com | [1580 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [16d4 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [151f 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [147a 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | 00000030 fb 72 ab 3e c0 30 05 ad 56 e9 95 c2 31 8b 90 22 |.r.>.0..V...1.."| +peer0.org1.example.com | [1581 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [16d5 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1520 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [147b 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | 00000040 03 2b 27 66 3b b6 93 |.+'f;..| +peer0.org1.example.com | [1582 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [16d6 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1522 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [147c 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [10af 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal evaluation succeeds for identity 0 +peer0.org1.example.com | [1583 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [16d7 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1523 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [147d 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | [10b0 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1528769774075328700 evaluation succeeds +peer0.org1.example.com | [1584 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [16d8 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [147e 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1521 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10b1 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [1585 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [16d9 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [147f 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [16da 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [10b2 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [1586 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1480 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [16db 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1524 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10b3 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org1.example.com | [1587 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1481 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [16dc 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1525 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [10b4 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org1.example.com | [1588 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1482 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16dd 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1526 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [10b5 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org1.example.com | [1589 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1483 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [16de 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1527 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [10b6 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [158a 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [158b 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org1.example.com | [16df 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1528 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [10b7 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c0a2e0) start: > stop: > from 172.18.0.7:35928 +peer0.org1.example.com | [158c 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1484 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [16e0 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1529 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [10b8 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org1.example.com | [158d 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1486 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [16e1 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [152a 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [10b9 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55527] +peer0.org1.example.com | [158e 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1487 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [16e2 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [152b 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [10ba 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[26037], Going to peek [8] bytes +peer0.org1.example.com | [158f 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1485 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [16e3 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [152c 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [10bb 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +peer0.org1.example.com | [1590 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1488 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [16e4 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [152d 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10bc 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +peer0.org1.example.com | [1591 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1489 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16e5 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [152e 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [10bd 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0a2e0) for 172.18.0.7:35928 +peer0.org1.example.com | [1592 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [148a 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [16e6 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [152f 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10be 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35928 for (0xc420c0a2e0) +peer0.org1.example.com | [1593 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [148b 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [16e7 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1530 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [10bf 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35928 +peer0.org1.example.com | [1594 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [148c 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16e8 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1531 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [10c0 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35928 +peer0.org1.example.com | [1595 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [148d 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [16e9 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1532 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10c1 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [1596 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [148e 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [16ea 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1533 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [10c2 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [1597 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [148f 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 81 but got ts: inc_num:1528769651824440500 seq_num:79 +peer1.org1.example.com | [16eb 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1534 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10c3 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [1598 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1490 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16ec 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1535 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [10c4 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [1599 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [16ee 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1536 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1491 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10c5 06-12 02:16:14.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35928: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [159a 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [16ef 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1537 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1493 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +orderer.example.com | [10c6 06-12 02:16:14.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [159b 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [16ed 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1538 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1492 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [10c7 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [159c 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [16f0 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1539 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1494 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [10c8 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35930 +peer0.org1.example.com | [159d 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16f1 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org2.example.com | [153a 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1495 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [10c9 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35930 +peer0.org1.example.com | [159e 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [16f2 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org2.example.com | [153b 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1496 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [159f 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | [10ca 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org1.example.com | [16f3 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org2.example.com | [153c 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1497 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [15a0 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [10cb 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [16f4 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [153d 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [153e 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1540 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1541 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1543 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1498 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [15a1 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\r\0337\2450\024P\264\013\216\251:}\225@r\340\354\030|\026:oj\177\007\005\373\017\177\002 z\210\001\343Rt\212P\255\025\351\312\374p\031\3268Q\263I?\234nA9\317\242\253-\370\273\201" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020S" signature:"0D\002 yB\321JV\211zIx~\013~n\364W@\007\031qZ\362& \031\354]\te\337|P\200\002 I\346\305\253\217\373Zex\363k\031\370\315;\026\350'\020\345\200\201\240z\375\214K\327\353\"\033\017" > +peer1.org2.example.com | [153f 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [16f5 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [10cc 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +peer0.org2.example.com | [1499 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [15a2 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1544 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [16f6 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [10cd 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org2.example.com | [149a 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [15a4 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1542 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [16f7 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10ce 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +peer0.org2.example.com | [149b 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +peer0.org1.example.com | [15a5 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1545 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [16f8 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [10cf 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e240 gate 1528769774235307800 evaluation starts +peer0.org2.example.com | [149c 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [15a6 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1546 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [16f9 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [10d0 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e240 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [149d 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [15a7 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [1547 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [16fa 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +orderer.example.com | [10d1 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e240 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [149e 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [15a3 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1548 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [16fb 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +orderer.example.com | [10d2 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e240 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +peer0.org2.example.com | [149f 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [15a8 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1549 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [16fc 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10d3 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e240 principal evaluation fails +peer0.org2.example.com | [14a0 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [15a9 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [154a 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [16fd 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +orderer.example.com | [10d4 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e240 gate 1528769774235307800 evaluation fails +peer0.org2.example.com | [14a1 06-12 02:15:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [15aa 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [154b 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [16fe 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [10d5 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [14a2 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [15ab 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [154c 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [16ff 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [10d6 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [14a3 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [15ac 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [154d 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1700 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [10d7 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +peer0.org2.example.com | [14a4 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [15ad 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org2.example.com | [154e 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1701 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10d8 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1528769774237370700 evaluation starts +peer0.org2.example.com | [14a6 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [15ae 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [154f 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1702 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [10d9 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [14a5 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers +peer0.org1.example.com | [15af 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1703 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1550 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [14a7 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [10da 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [14a8 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [15b0 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1551 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +orderer.example.com | [10db 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +peer0.org2.example.com | [14a9 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [15b1 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1704 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1552 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [10dc 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation fails +peer0.org1.example.com | [15b2 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [14aa 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 79 but got ts: inc_num:1528769653227426900 seq_num:78 +peer1.org1.example.com | [1705 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1553 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [10dd 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1528769774237370700 evaluation fails +peer0.org1.example.com | [15b3 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [14ac 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1706 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1554 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [10de 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [15b4 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [14ad 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1707 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1556 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [10df 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [15b5 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [14ae 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1708 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1555 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +orderer.example.com | [10e0 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +peer0.org1.example.com | [15b6 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [14af 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1709 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1557 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +orderer.example.com | [10e1 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1528769774239998300 evaluation starts +peer0.org2.example.com | [14b0 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [170a 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [15b7 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1559 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [10e2 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 signed by 0 principal evaluation starts (used [false]) +peer0.org2.example.com | [14b1 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [14b2 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [170b 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [15b8 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [155a 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +orderer.example.com | [10e3 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org2.example.com | [14b3 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 81 but got ts: inc_num:1528769651824440500 seq_num:80 +peer1.org1.example.com | [170c 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [15b9 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [155b 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [10e4 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +peer0.org2.example.com | [14b4 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [170d 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [15ba 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [155c 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +orderer.example.com | [10e5 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 principal evaluation fails +peer0.org2.example.com | [14b5 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [170e 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [15bb 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1558 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10e6 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1528769774239998300 evaluation fails +peer0.org2.example.com | [14b6 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [170f 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [15bc 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" secret_envelope:\002 q\253\221\346\3441b,\204\007O*\2136\270\215\274\326be=*\217\362\204S\032l|\240:\362" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [155d 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [10e7 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [14b7 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [15be 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [15bf 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [155e 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +orderer.example.com | [10e8 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [14b8 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [14b9 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [155f 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1560 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1710 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [14ba 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [15bd 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [15c0 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1711 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [10e9 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +peer0.org2.example.com | [14bb 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [15c1 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1561 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [15c3 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1712 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [14bc 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1562 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [15c5 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1563 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1714 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [10ea 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +peer0.org2.example.com | [14bd 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [14ab 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [14be 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14bf 06-12 02:15:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [15c6 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [10eb 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +peer0.org2.example.com | [14c0 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +orderer.example.com | [10ec 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer1.org2.example.com | [1564 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [1713 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [15c4 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [15c7 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [14c1 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1565 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1715 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [15c2 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [14c2 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [14c3 06-12 02:15:12.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [10ed 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +orderer.example.com | [10ee 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +orderer.example.com | [10ef 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1528769774242849400 evaluation starts +peer1.org1.example.com | [1716 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1717 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1718 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [14c4 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer1.org1.example.com | [1719 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1567 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [15c8 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [14c5 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +orderer.example.com | [10f0 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 signed by 0 principal evaluation starts (used [false]) +orderer.example.com | [10f1 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [1568 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [15c9 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [1569 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | [10f2 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal matched by identity 0 +orderer.example.com | [10f3 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 03 26 80 13 cc b2 5c 9a db c9 03 bc a5 6e 5d 59 |.&....\......n]Y| +peer1.org1.example.com | [171b 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [15ca 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [156b 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [156d 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [14c6 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [14c7 06-12 02:15:12.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [14c8 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [14c9 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [14ca 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [14cb 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [14cc 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [14cd 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [14ce 06-12 02:15:12.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [14cf 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14d0 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [14d1 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14d2 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [14d3 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14d4 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [14d5 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14d6 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [14d7 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [14d8 06-12 02:15:12.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14d9 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [14da 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [14db 06-12 02:15:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14dc 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [14dd 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [14de 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [14df 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [14e0 06-12 02:15:12.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14e1 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [14e2 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [14e3 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [14e4 06-12 02:15:13.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14e5 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [14e7 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [14e6 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14e8 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [14e9 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [14ea 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [14eb 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [14ec 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [14ed 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [14ee 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [14ef 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [14f1 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [171a 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [171c 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [14f2 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [171d 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [171e 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [15cb 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [15cc 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer1.org2.example.com | [156e 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [171f 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [14f3 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Q" signature:"0E\002!\000\312\304\354#x\321S:8\356{\363\002C\374\332\025\225\302\"\366\226\247f\267\264\366\t\230*\024\r\002 L\271k\240\261\230T\373;kh\257/y^t\202\337#f\232\212\234\264\021\254$N\367?\365\002" > alive: +peer0.org2.example.com | [14f4 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [15cd 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [15ce 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [156f 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1720 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14f5 06-12 02:15:13.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [14f0 06-12 02:15:13.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [15cf 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1570 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000010 9c 7f 3e 61 1c 22 71 ab 2b 80 e3 98 11 c3 87 5d |..>a."q.+......]| +peer1.org1.example.com | [1721 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [14f6 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [14f7 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [15d0 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [15d1 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | [10f4 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 43 02 1f 2e 1a 61 6c 74 6e ec 20 c7 70 a3 8f |0C....altn. .p..| +peer1.org2.example.com | [1572 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [14f9 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [15d2 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000010 1d a1 6e 7d a3 93 84 09 8b 75 44 0f 51 2d 53 e3 |..n}.....uD.Q-S.| +peer1.org2.example.com | [156c 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1722 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1723 06-12 02:15:23.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [14fa 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | 00000020 ba f0 4d 02 20 40 78 28 b4 1f 07 4e 7a f8 3d 8a |..M. @x(...Nz.=.| +peer1.org2.example.com | [1573 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1724 06-12 02:15:23.32 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [14fb 06-12 02:15:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [15d3 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | 00000030 81 ce 16 51 a0 f9 f1 95 e2 28 4a b4 41 19 ef 97 |...Q.....(J.A...| +peer1.org2.example.com | [1566 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1725 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [14fc 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [15d4 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [15d5 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | 00000040 0e 05 b4 4b a6 |...K.| +peer1.org1.example.com | [1727 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [15d6 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [10f5 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [156a 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1726 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [14f8 06-12 02:15:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [14fe 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [10f6 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1528769774242849400 evaluation succeeds +peer1.org2.example.com | [1571 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [14ff 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1729 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [15d7 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [15d8 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1574 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [14fd 06-12 02:15:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1500 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [172a 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1575 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10f7 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1501 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [172b 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [15d9 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1576 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [10f8 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1502 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1728 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [15da 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1577 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10f9 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org2.example.com | [1503 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [172c 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [15db 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [10fa 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org2.example.com | [1504 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [172d 06-12 02:15:24.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [15dc 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1578 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [10fb 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org2.example.com | [1505 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [172e 06-12 02:15:24.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [15dd 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1579 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [10fc 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org2.example.com | [1507 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [15de 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [157a 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [1506 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [172f 06-12 02:15:24.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10fd 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c0b7a0) start: > stop: > from 172.18.0.7:35930 +peer0.org1.example.com | [15df 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [157b 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [157c 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1508 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1730 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [10fe 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +peer0.org1.example.com | [15e0 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [157d 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1509 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1731 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [10ff 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +peer0.org1.example.com | [15e1 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [157e 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [150a 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1732 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [1100 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +peer0.org1.example.com | [15e2 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [157f 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [150c 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1733 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1101 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +peer0.org1.example.com | [15e3 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1580 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [150b 06-12 02:15:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1734 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [1102 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +peer0.org1.example.com | [15e4 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [150d 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1581 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1735 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [1103 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0b7a0) for 172.18.0.7:35930 +peer0.org1.example.com | [15e5 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [150e 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1582 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 88 but got ts: inc_num:1528769652088169500 seq_num:87 +peer1.org1.example.com | [1736 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [1104 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35930 for (0xc420c0b7a0) +peer0.org1.example.com | [15e6 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [150f 06-12 02:15:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1583 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1737 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [1105 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35930 +peer0.org1.example.com | [15e7 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1510 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1584 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1738 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [1106 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35930 +peer0.org1.example.com | [15e8 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1511 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1585 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1739 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [1107 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [15ea 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1512 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1586 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [173a 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1108 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [15eb 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1513 06-12 02:15:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1588 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [173b 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1109 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +peer0.org1.example.com | [15e9 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1514 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1589 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [173c 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +orderer.example.com | [110a 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +peer0.org1.example.com | [15ec 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1515 06-12 02:15:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [158a 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [173d 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [110b 06-12 02:16:14.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35930: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [15ed 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1516 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1587 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [110c 06-12 02:16:14.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [15ee 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [173e 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\\" signature:"0E\002!\000\347\224\302\346m\356'mp\3323\260\025\255VL\205\333x\273d\205\262\210\030\332\000\366Rb \207\002 Z\211\025`\247\361<\204\345s\366D\205\340\314\357\236A\024\207/\226\334\330\351\206\341,\354\021\224z" > alive: alive:O\177\036/\372b\322\3301\024\272t\250\320\245\377\366{" > +peer0.org2.example.com | [1517 06-12 02:15:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [158b 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [110d 06-12 02:16:14.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [15ef 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [173f 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [1518 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [158c 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [110e 06-12 02:16:14.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35932 +peer0.org1.example.com | [15f0 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1740 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1519 06-12 02:15:16.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [158d 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [110f 06-12 02:16:14.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35932 +peer0.org1.example.com | [15f1 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1741 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [151a 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [158e 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [1110 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [15f2 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1742 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [151b 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [158f 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [1111 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [15f3 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1743 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [151c 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1590 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1112 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [15f4 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1744 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1591 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [151d 06-12 02:15:16.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +orderer.example.com | [1113 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [15f5 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1745 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1592 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [151e 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +orderer.example.com | [1114 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [15f6 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1746 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1593 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [151f 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [1115 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d0 gate 1528769774390524000 evaluation starts +peer0.org1.example.com | [15f7 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1747 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1594 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1520 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +orderer.example.com | [1116 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [15f8 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1748 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [1595 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [1117 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [1596 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [15f9 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1749 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1118 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 principal matched by identity 0 +peer0.org2.example.com | [1522 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1597 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [174a 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [15fa 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 85 but got ts: inc_num:1528769652429776900 seq_num:84 +orderer.example.com | [1119 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ec 3c e2 7e 29 25 6a 80 c0 7f c6 6c b2 b5 3f 58 |.<.~)%j....l..?X| +peer0.org2.example.com | [1523 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1598 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [174b 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [15fb 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000010 2a bd e6 f8 54 e7 ed ce 9a e1 25 4b 05 07 ae 12 |*...T.....%K....| +peer0.org2.example.com | [1524 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1599 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [174c 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [15fc 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [111a 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a1 3b 97 01 ec 28 f4 11 0a 33 34 |0E.!..;...(...34| +peer0.org2.example.com | [1525 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [159a 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [174d 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [15fd 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | 00000010 32 6d 54 a9 b8 20 33 e1 32 e1 a6 28 04 c8 28 41 |2mT.. 3.2..(..(A| +peer0.org2.example.com | [1526 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [159b 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [174e 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3 4] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [15fe 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 83 but got ts: inc_num:1528769653227426900 seq_num:82 +orderer.example.com | 00000020 5e f8 fd 3a f2 02 20 4b 17 1d bc 89 aa 44 e4 66 |^..:.. K.....D.f| +peer0.org2.example.com | [1527 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [159c 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [174f 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [15ff 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | 00000030 69 e8 89 cd 71 b4 75 86 f0 d2 77 a5 42 0e 6b 60 |i...q.u...w.B.k`| +peer0.org2.example.com | [1528 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org2.example.com | [159d 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1750 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1600 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000040 16 51 71 43 2b 52 32 |.QqC+R2| +orderer.example.com | [111b 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 principal evaluation succeeds for identity 0 +orderer.example.com | [111c 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d0 gate 1528769774390524000 evaluation succeeds +orderer.example.com | [111d 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1521 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [111e 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [152a 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [159e 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1751 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1601 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [111f 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org2.example.com | [152b 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [159f 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1602 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1120 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [1752 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [152c 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [15a1 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [15a0 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1121 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org1.example.com | [1753 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [152d 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15a2 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1603 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1122 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org1.example.com | [1754 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1529 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1755 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [152e 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:8\236\256\272\347N\200o\333@)\324\226\036\027F@B~\030\355\002 3]\213\002\215\352\204\361\262\304\214\360\3348\177\267Y,\023|\355\205\371U\315V\375\215\243n\343\003" secret_envelope: > +peer1.org2.example.com | [15a3 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\020m\212\357\037" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > alive:^\203'.R\026\252\356i\266\303;\221g\225\016\033\3625k\325\025\361" > +peer0.org1.example.com | [1604 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1123 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420518c20) start: > stop: > from 172.18.0.7:35932 +orderer.example.com | [1124 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +peer1.org1.example.com | [1756 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [15a4 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [15a5 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1605 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1757 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [152f 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [15a6 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1606 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [1125 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +peer1.org1.example.com | [1758 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1759 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [175a 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [175b 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [175c 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [175d 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [175e 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" secret_envelope: > alive: > +peer1.org1.example.com | [175f 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [1760 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1761 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1762 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [15a7 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [15a8 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1763 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15a9 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [1126 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +peer1.org1.example.com | [1764 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1607 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1530 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15aa 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [1127 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +peer1.org1.example.com | [1766 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1608 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1531 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1532 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [15ab 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1765 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1609 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1533 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [15ac 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1128 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +peer1.org1.example.com | [1767 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [160a 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1534 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15ad 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +orderer.example.com | [1129 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420518c20) for 172.18.0.7:35932 +peer1.org1.example.com | [1768 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [160b 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1535 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [15ae 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [112a 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35932 for (0xc420518c20) +peer0.org1.example.com | [160c 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1769 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1536 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15af 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +orderer.example.com | [112b 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35932 +peer0.org1.example.com | [160d 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [176a 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1537 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [15b0 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +orderer.example.com | [112c 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35932 +peer0.org1.example.com | [160e 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [176b 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1538 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [15b1 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [112d 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35932: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [160f 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [176c 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1539 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [15b2 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +orderer.example.com | [112e 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [1610 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [176d 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [153a 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [15b3 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [112f 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer0.org1.example.com | [1611 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [176e 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [153b 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [15b4 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [1130 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35934 +peer0.org1.example.com | [1612 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [176f 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [153c 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [15b5 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [1131 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35934 +peer0.org1.example.com | [1613 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org1.example.com | [1770 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [153d 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [15b6 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [1132 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [1614 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1771 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [153e 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [15b7 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1133 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1615 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1772 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [153f 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [15b9 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +orderer.example.com | [1134 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [1616 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1773 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1540 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [15ba 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [1135 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1617 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1774 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [1541 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +orderer.example.com | [1136 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org2.example.com | [15bb 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\205\316\234\\\245v\030\232\246\304s\337\037\255\373\210\364\263\r\020\2529p\202|\251R%\032\351\002 \034<\032\317i\3139\0170\r\r\3374\1775\234\265\261\3412\027\376\271\222^\257,s\371\301\272L" > > +peer0.org1.example.com | [1618 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1775 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [1542 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1544 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +orderer.example.com | [1137 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150408 gate 1528769774540551400 evaluation starts +peer0.org1.example.com | [1619 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1776 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [1545 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1138 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [15bc 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org1.example.com | [161a 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1777 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1543 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > alive:\r\0337\2450\024P\264\013\216\251:}\225@r\340\354\030|\026:oj\177\007\005\373\017\177\002 z\210\001\343Rt\212P\255\025\351\312\374p\031\3268Q\263I?\234nA9\317\242\253-\370\273\201" > alive: +orderer.example.com | [1139 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [15bd 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [161b 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1778 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1546 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [113a 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 principal matched by identity 0 +peer1.org2.example.com | [15b8 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [161c 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1779 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [113b 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 96 f9 9b 89 5d 4b 29 99 27 d0 1a a5 53 e3 44 24 |....]K).'...S.D$| +peer0.org2.example.com | [1547 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15be 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [161d 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [177a 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | 00000010 c4 49 9b 69 f8 69 06 95 a1 0d 8a ed f3 a5 d5 6f |.I.i.i.........o| +peer0.org2.example.com | [1548 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [15bf 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [161e 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [177b 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +orderer.example.com | [113c 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 04 14 fb f9 c5 7c ec d7 73 2f 01 |0D. ".....|..s/.| +peer0.org2.example.com | [1549 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15c0 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [161f 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [177c 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000010 c8 56 4d 45 df 8d 18 68 3a 63 55 45 29 65 a1 dd |.VME...h:cUE)e..| +peer0.org2.example.com | [154a 06-12 02:15:16.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org2.example.com | [15c1 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1620 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [177d 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | 00000020 18 a6 9e d4 02 20 7f b3 c8 6d 0a 4e 09 02 5d 50 |..... ...m.N..]P| +peer0.org2.example.com | [154b 06-12 02:15:16.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [15c2 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [1621 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [177e 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | 00000030 23 39 f3 d1 09 7e ae f4 86 7d 99 4b fa 7f dd 1e |#9...~...}.K....| +peer0.org2.example.com | [154c 06-12 02:15:16.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [15c3 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1622 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [177f 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000040 81 a7 8a 77 9e 81 |...w..| +peer0.org2.example.com | [154d 06-12 02:15:16.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [15c4 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1623 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1780 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [113d 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [154e 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [15c5 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1624 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1781 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [113e 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150408 gate 1528769774540551400 evaluation succeeds +peer0.org2.example.com | [154f 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [15c8 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1625 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [113f 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1782 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1550 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [15c6 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1627 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +orderer.example.com | [1140 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [1783 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1551 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15c9 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1628 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [1141 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org1.example.com | [1784 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1552 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [15c7 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1629 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\312Rh\216\256\007s\243!?d>v\177\r\201v\252~\344\002 >\273\310\341~\006\3112\250{\001\212\271\000\333\337\302\005\376\217k\304n',\001/\267q\r\264\260" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020U" signature:"0D\002 m\337\364\022\333\261\214\244\334\363\000\312\240\3351D,-\007\213^\272xz\231\245\237\203\227\244\232\013\002 <\200,F\023\277\242\n\330\372Y\251\031V\231\340\013\221@\220\177~\360\\\340O\0177\345)CC" > +orderer.example.com | [1142 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org1.example.com | [1785 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1555 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15ca 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [162a 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +orderer.example.com | [1143 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org1.example.com | [1786 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1553 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [15cb 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [162b 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1144 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org1.example.com | [1787 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1554 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [15cc 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1626 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1145 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420bd0a80) start: > stop: > from 172.18.0.7:35934 +peer1.org1.example.com | [1788 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1556 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15cd 06-12 02:15:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [162c 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1146 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +peer1.org1.example.com | [1789 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1557 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [15ce 06-12 02:15:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [162d 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1147 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +peer1.org1.example.com | [178a 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org2.example.com | [1558 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15cf 06-12 02:15:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [162e 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1148 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +peer1.org1.example.com | [178b 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1559 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [15d0 06-12 02:15:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [162f 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [1149 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +peer1.org1.example.com | [178d 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [155a 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [15d1 06-12 02:15:20.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1630 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [114a 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +peer1.org1.example.com | [178e 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [155c 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15d2 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1631 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [114b 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420bd0a80) for 172.18.0.7:35934 +peer1.org1.example.com | [178c 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > alive: alive: +peer0.org2.example.com | [155b 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [15d3 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1632 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [114c 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35934 for (0xc420bd0a80) +peer1.org1.example.com | [178f 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [155d 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [15d4 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1633 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [114d 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35934 +peer1.org1.example.com | [1790 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [155e 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [15d5 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1634 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [114e 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35934 +peer1.org1.example.com | [1791 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [155f 06-12 02:15:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15d6 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org1.example.com | [1636 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [114f 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org1.example.com | [1792 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1560 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1637 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15d7 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +orderer.example.com | [1150 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1793 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1561 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1638 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [15d8 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1151 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer1.org1.example.com | [1794 06-12 02:15:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org2.example.com | [1563 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1639 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [15d9 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [1152 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [1795 06-12 02:15:25.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1562 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [163a 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [15da 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [1153 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org1.example.com | [1796 06-12 02:15:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [1566 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [163b 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [15db 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | [1154 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150450 gate 1528769774550591000 evaluation starts +peer1.org1.example.com | [1797 06-12 02:15:25.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1564 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [163c 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [15dc 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [1155 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150450 signed by 0 principal evaluation starts (used [false]) +peer1.org1.example.com | [1798 06-12 02:15:25.27 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1565 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [163d 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [15dd 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1156 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150450 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org1.example.com | [1799 06-12 02:15:25.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1567 06-12 02:15:16.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [163e 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [15de 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +orderer.example.com | [1157 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150450 principal matched by identity 0 +peer1.org1.example.com | [179b 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1568 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [163f 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [15df 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [179c 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1158 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 22 c7 f8 47 07 91 3e 6c 6f f0 db 9f 98 aa d2 87 |"..G..>lo.......| +peer0.org2.example.com | [1569 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [1640 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [15e0 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [179d 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | 00000010 4f d8 51 75 b3 09 75 00 4c b6 5c 2e 8c 7b 0e 0a |O.Qu..u.L.\..{..| +peer0.org2.example.com | [156a 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1641 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [15e1 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [179e 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [1159 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d4 cf 51 95 a0 db 05 d2 a6 e7 33 |0E.!...Q.......3| +peer0.org2.example.com | [156b 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org1.example.com | [1642 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15e2 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [179f 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | 00000010 ab c4 da f5 2c a3 17 a6 51 5c ce 49 be c3 7b a4 |....,...Q\.I..{.| +peer0.org2.example.com | [156c 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1643 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15e3 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [179a 06-12 02:15:25.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +orderer.example.com | 00000020 a6 c2 9a 16 f3 02 20 06 33 95 2d e8 d2 4a b5 4d |...... .3.-..J.M| +peer0.org2.example.com | [156d 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1644 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15e4 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [17a1 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | 00000030 c4 dc f0 9f 7b 1b b6 ff 4d c3 32 a9 95 c5 99 d2 |....{...M.2.....| +peer0.org2.example.com | [156e 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1645 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15e5 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [17a2 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +orderer.example.com | 00000040 33 43 9a 78 8a f1 dc |3C.x...| +peer0.org2.example.com | [156f 06-12 02:15:16.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1646 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15e6 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [17a0 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [115a 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150450 principal evaluation succeeds for identity 0 +peer0.org2.example.com | [1571 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1635 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15e7 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [17a3 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [115b 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150450 gate 1528769774550591000 evaluation succeeds +peer0.org2.example.com | [1572 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1647 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15e8 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [17a4 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [115c 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1573 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1648 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [15e9 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [17a5 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [115d 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [1574 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1649 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15ea 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [17a6 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [115e 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer0.org2.example.com | [1570 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [164a 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [15eb 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org1.example.com | [17a7 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [115f 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer0.org2.example.com | [1575 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [164b 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15ec 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [17a8 06-12 02:15:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [1160 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer0.org2.example.com | [1577 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [164c 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15ed 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > alive: +peer1.org1.example.com | [17a9 06-12 02:15:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +orderer.example.com | [1161 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org2.example.com | [1576 06-12 02:15:16.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer0.org1.example.com | [164d 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [15ee 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [17aa 06-12 02:15:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1162 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420bd1c40) start: > stop: > from 172.18.0.7:35934 +peer0.org2.example.com | [1578 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [164e 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [15ef 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [17ab 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [1163 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +peer0.org2.example.com | [157a 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [164f 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15f0 06-12 02:15:21.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +orderer.example.com | [1164 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer1.org1.example.com | [17ac 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [157b 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1650 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [15f1 06-12 02:15:21.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [1165 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24013], Going to peek [8] bytes +peer1.org1.example.com | [17ad 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [157c 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1651 06-12 02:15:17.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [15f2 06-12 02:15:21.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [1166 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org1.example.com | [17ae 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1579 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1652 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [15f3 06-12 02:15:21.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1167 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +peer1.org1.example.com | [17b0 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [157e 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1653 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [15f4 06-12 02:15:21.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +orderer.example.com | [1168 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420bd1c40) for 172.18.0.7:35934 +peer1.org1.example.com | [17b1 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1581 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1654 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [15f5 06-12 02:15:21.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1169 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35934 for (0xc420bd1c40) +peer1.org1.example.com | [17b2 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [157f 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1655 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15f6 06-12 02:15:21.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [116a 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35934 +peer1.org1.example.com | [17af 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1582 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1656 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15f7 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [116b 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35934 +peer1.org1.example.com | [17b3 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [157d 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1657 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15f8 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [116c 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35934: rpc error: code = Canceled desc = context canceled +peer1.org1.example.com | [17b4 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1580 06-12 02:15:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1658 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15f9 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [116d 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org1.example.com | [17b5 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1584 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1659 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [15fa 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [116e 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org1.example.com | [17b7 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1585 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [165a 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [15fb 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [116f 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35936 +peer1.org1.example.com | [17b8 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1583 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [165b 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer1.org2.example.com | [15fc 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1170 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35936 +peer1.org1.example.com | [17b9 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1586 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [165c 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer1.org2.example.com | [15fd 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1171 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer1.org1.example.com | [17ba 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1587 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [165d 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer1.org2.example.com | [15fe 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1172 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [17bb 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1588 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [165e 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [15ff 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [1173 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer1.org1.example.com | [17bc 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1589 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [165f 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [1600 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [1174 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer1.org1.example.com | [17bd 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [158a 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1660 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1175 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer1.org2.example.com | [1601 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [17be 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [158b 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1661 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [1176 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e340 gate 1528769774668566700 evaluation starts +peer1.org2.example.com | [1602 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [17bf 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [158c 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1662 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +orderer.example.com | [1177 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e340 signed by 0 principal evaluation starts (used [false]) +peer1.org2.example.com | [1603 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [17c0 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [158d 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1663 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +orderer.example.com | [1178 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e340 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer1.org2.example.com | [1604 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [158e 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [17c1 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1664 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1179 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e340 principal matched by identity 0 +peer1.org2.example.com | [1605 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [158f 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [17b6 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1665 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [117a 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 c7 f2 84 3a d6 2f b3 46 3e 45 5a 17 d7 fd a1 85 |...:./.F>EZ.....| +peer1.org2.example.com | [1606 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1590 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [17c2 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [1666 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000010 8d 52 d6 ac 08 d7 33 96 e2 05 c4 67 0f a3 f7 c1 |.R....3....g....| +peer1.org2.example.com | [1607 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1591 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [17c3 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1667 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +orderer.example.com | [117b 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b6 8e ed 4b 13 ac 8a 6c 69 77 d6 |0E.!....K...liw.| +peer1.org2.example.com | [1608 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1592 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [17c4 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1668 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000010 c2 c2 3d 53 cc 93 6b 49 04 24 24 38 66 07 d6 04 |..=S..kI.$$8f...| +peer1.org2.example.com | [1609 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1593 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17c5 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1669 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | 00000020 4a 3d 6d 7c 13 02 20 27 20 7f 64 72 cd 00 bb 17 |J=m|.. ' .dr....| +peer1.org2.example.com | [160a 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1594 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer1.org1.example.com | [17c6 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [166a 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | 00000030 58 8d 46 5b 6b c4 60 cc 52 ad 0c d5 d1 2b 22 75 |X.F[k.`.R....+"u| +peer1.org2.example.com | [160b 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1595 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [17c7 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [166b 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | 00000040 47 20 82 50 c8 86 20 |G .P.. | +peer1.org2.example.com | [160c 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1596 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [17c8 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [166c 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [117c 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e340 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [160d 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1597 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [17c9 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [166d 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [117d 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e340 gate 1528769774668566700 evaluation succeeds +peer1.org2.example.com | [160e 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1598 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [17ca 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [166e 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [166f 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1670 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1671 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +orderer.example.com | [117e 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [17cb 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1672 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +orderer.example.com | [117f 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [160f 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1599 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [17cc 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1673 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020W" signature:"0E\002!\000\231q\252\273\3112\177\010\315\346#\226\221w\rs\375z\273\273>\324\007\206\326n\220\200`J\002\341\002 d&\343\303\361\007\221$\221\340\234\276\236\213\346\337[Y\021~n\024\361V\237\024\233a\333\31306" secret_envelope:\317\3002hyQzG" > > +orderer.example.com | [1180 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org2.example.com | [1610 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [159a 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [17cd 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1674 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +orderer.example.com | [1181 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org2.example.com | [1611 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [159b 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [17ce 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1675 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [1182 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [1612 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [159c 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 85 but got ts: inc_num:1528769652088169500 seq_num:84 +peer1.org1.example.com | [17cf 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1676 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1183 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer1.org2.example.com | [1613 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [159d 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [17d0 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1677 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1614 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [1184 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420c7e2c0) start: > stop: > from 172.18.0.7:35936 +peer0.org2.example.com | [159e 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [17d1 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [159f 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1615 06-12 02:15:22.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [1185 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +peer1.org1.example.com | [17d2 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [15a0 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 84 but got ts: inc_num:1528769651824440500 seq_num:83 +peer0.org1.example.com | [1678 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1616 06-12 02:15:22.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1186 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +peer1.org1.example.com | [17d3 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [15a1 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1679 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1617 06-12 02:15:22.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [1187 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24013], Going to peek [8] bytes +peer1.org1.example.com | [17d4 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [15a2 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [167a 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1618 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1188 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +peer1.org1.example.com | [17d5 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [15a3 06-12 02:15:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [167b 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1189 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +peer1.org2.example.com | [1619 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [17d6 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [15a4 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [167c 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +orderer.example.com | [118a 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420c7e2c0) for 172.18.0.7:35936 +peer1.org2.example.com | [161a 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17d7 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [15a5 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [167d 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [118b 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35936 for (0xc420c7e2c0) +peer1.org2.example.com | [161b 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [17d8 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [15a6 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [167e 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [118c 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35936 +peer1.org2.example.com | [161c 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15a7 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [17d9 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [167f 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [118d 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35936 +peer1.org2.example.com | [161d 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [15a8 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [17da 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 97 but got ts: inc_num:1528769652429776900 seq_num:96 +peer0.org1.example.com | [1680 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +orderer.example.com | [118e 06-12 02:16:14.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35936: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [161e 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [15a9 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [17db 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1681 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +orderer.example.com | [118f 06-12 02:16:14.68 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer1.org2.example.com | [161f 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [15aa 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [17dc 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1682 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1190 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +peer1.org2.example.com | [1620 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [15ac 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17dd 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [17de 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1683 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1621 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [15ad 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [17df 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1684 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1191 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35938 +peer1.org2.example.com | [1622 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [15ae 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17e0 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [1192 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35938 +peer0.org1.example.com | [1685 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1623 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [15af 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [17e1 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +orderer.example.com | [1193 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +peer0.org1.example.com | [1686 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1624 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [15b0 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17e2 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 95 but got ts: inc_num:1528769652088169500 seq_num:94 +orderer.example.com | [1194 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1688 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1625 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [15b1 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [17e3 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +orderer.example.com | [1195 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +peer0.org1.example.com | [1687 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1626 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15b2 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17e4 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [1196 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +peer0.org1.example.com | [1689 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1628 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [15ab 06-12 02:15:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes +peer1.org1.example.com | [17e5 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +orderer.example.com | [1197 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +peer0.org1.example.com | [168b 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1627 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [15b3 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [17e6 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +orderer.example.com | [1198 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e388 gate 1528769774828961900 evaluation starts +peer0.org1.example.com | [168e 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1629 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15b4 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [17e7 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [1199 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e388 signed by 0 principal evaluation starts (used [false]) +peer0.org1.example.com | [168a 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [162a 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [15b5 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [17e8 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +orderer.example.com | [119a 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e388 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +peer0.org1.example.com | [168f 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [162b 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15b6 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [17e9 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +orderer.example.com | [119b 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e388 principal matched by identity 0 +peer0.org1.example.com | [168c 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [162c 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15b7 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [17ea 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1690 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | [119c 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 fa aa 56 95 5d 99 d5 39 58 3f 0d 28 1e c7 ef 7d |..V.]..9X?.(...}| +peer1.org2.example.com | [162d 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [15b8 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [17eb 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [168d 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000010 e7 8b af 22 3c b4 1e 83 74 13 67 0c ed 2d 85 34 |..."<...t.g..-.4| +peer1.org2.example.com | [162e 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [15b9 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [17ec 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1691 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +orderer.example.com | [119d 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 13 be ee 32 4b 95 5e 3c 2b 06 93 77 |0D. ...2K.^<+..w| +peer1.org2.example.com | [162f 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15ba 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [17ed 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1692 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | 00000010 bb e0 69 32 5c a2 cb f4 e2 8e cd ca 8e fe 3d 0c |..i2\.........=.| +peer1.org2.example.com | [1630 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [15bb 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [17ee 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [1693 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000020 c3 02 2a 2a 02 20 2d f0 f8 a3 40 83 0f 86 a6 e8 |..**. -...@.....| +peer1.org2.example.com | [1631 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [17ef 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [15bc 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1694 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +orderer.example.com | 00000030 d6 d2 e3 a7 3a 5f 9b 46 f0 c2 df 61 2b af 4f f6 |....:_.F...a+.O.| +peer1.org2.example.com | [1632 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [17f0 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [15bd 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1695 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | 00000040 29 a7 f1 39 1d 4d |)..9.M| +peer1.org2.example.com | [1633 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17f1 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [15be 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1696 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [119e 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e388 principal evaluation succeeds for identity 0 +peer1.org2.example.com | [1634 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [17f2 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [15bf 06-12 02:15:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1697 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [119f 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e388 gate 1528769774828961900 evaluation succeeds +peer1.org2.example.com | [1635 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [17f3 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [15c0 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1698 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [11a0 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1636 06-12 02:15:22.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org1.example.com | [17f4 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [15c1 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1699 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +orderer.example.com | [11a1 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [1637 06-12 02:15:22.59 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org1.example.com | [17f5 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [15c2 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [169a 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +orderer.example.com | [11a2 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +peer1.org2.example.com | [1638 06-12 02:15:22.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org1.example.com | [17f6 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [15c3 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [169b 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +orderer.example.com | [11a3 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +peer1.org2.example.com | [1639 06-12 02:15:22.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [17f7 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [15c4 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [169c 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +orderer.example.com | [11a4 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +peer1.org2.example.com | [163b 06-12 02:15:22.62 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org1.example.com | [17f8 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [15c5 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +orderer.example.com | [11a5 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +peer0.org1.example.com | [169d 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [163a 06-12 02:15:22.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17f9 06-12 02:15:25.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [15c6 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +orderer.example.com | [11a6 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420c7f440) start: > stop: > from 172.18.0.7:35938 +peer0.org1.example.com | [169e 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [163c 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [17fa 06-12 02:15:25.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [15c7 06-12 02:15:16.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [11a7 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +peer0.org1.example.com | [169f 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [163d 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [17fb 06-12 02:15:25.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [15c8 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [11a8 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +peer0.org1.example.com | [16a0 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [163e 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [17fc 06-12 02:15:25.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [15c9 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +orderer.example.com | [11a9 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +peer0.org1.example.com | [16a1 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [163f 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [17fd 06-12 02:15:25.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [15ca 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [11aa 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +peer0.org1.example.com | [16a2 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1640 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [17fe 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15cb 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [11ab 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +peer0.org1.example.com | [16a3 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1641 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [17ff 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [15cc 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [11ac 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420c7f440) for 172.18.0.7:35938 +peer0.org1.example.com | [16a4 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1642 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1800 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [15cd 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +orderer.example.com | [11ad 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35938 for (0xc420c7f440) +peer0.org1.example.com | [16a5 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1643 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1801 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15ce 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +orderer.example.com | [11ae 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35938 +peer0.org1.example.com | [16a6 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1644 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1802 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15cf 06-12 02:15:16.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +orderer.example.com | [11af 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35938 +peer0.org1.example.com | [16a7 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1645 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1803 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [15d0 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [11b0 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35938: rpc error: code = Canceled desc = context canceled +peer0.org1.example.com | [16a8 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1646 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1804 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [15d1 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +orderer.example.com | [11b1 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +peer0.org1.example.com | [16a9 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1648 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1805 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [15d2 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [16aa 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1647 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1806 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [15d3 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16ab 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1649 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1807 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [15d4 06-12 02:15:16.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16ac 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [164a 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1808 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [15d5 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16ad 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [164b 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1809 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [15d6 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [16ae 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [164c 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [180a 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [16af 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [15d7 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [164e 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [180b 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [16b0 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [15d8 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [164f 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [180c 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [16b1 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [15d9 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [164d 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [180d 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16b2 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [15da 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1650 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [180e 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [16b3 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [15db 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1651 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [180f 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16b4 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [15dc 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1652 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1810 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [16b5 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [15dd 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1653 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1811 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16b6 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [15de 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1654 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1812 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15df 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [16b7 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1655 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1813 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [15e0 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16b8 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1656 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1814 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [15e1 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16b9 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1657 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1815 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15e2 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [16ba 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1658 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1816 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [15e3 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [16bb 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1659 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1817 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15e4 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [16bd 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [165a 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1818 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15e6 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16be 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [165b 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1819 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [15e5 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16bc 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [165c 06-12 02:15:24.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [181a 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [15e7 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [16c0 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [165d 06-12 02:15:24.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [181b 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15e8 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [16bf 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [165e 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [181c 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [15e9 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16c1 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [165f 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [181d 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [15ea 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [16c2 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [181e 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1660 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [15eb 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16c3 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [181f 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1661 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [15ec 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16c4 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1820 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1662 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [15ed 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [16c5 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1821 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1663 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [15ee 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16c6 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1822 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1664 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [15ef 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [16c7 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1665 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [1823 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [15f0 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16c8 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1666 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [1824 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [16c9 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [15f1 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1668 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [1825 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16ca 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [15f2 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1669 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1826 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16cb 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [15f3 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [166a 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [1827 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16cc 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [15f4 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [166b 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1828 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [16cd 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [15f5 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [166c 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1829 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [16ce 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [15f6 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [166d 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [182a 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [16cf 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [15f7 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1667 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [182b 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [16d0 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [15f8 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [166e 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [182c 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [16d1 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [15f9 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [166f 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [182d 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [16d2 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [15fa 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1670 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [182e 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [16d3 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [15fb 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1671 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [182f 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [16d4 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [15fc 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1672 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1830 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [16d5 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [15fd 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1673 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1831 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [16d6 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [15fe 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1674 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1832 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16d7 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\016L\215\260P\210[\031\000\301\035d\351\347\265}\325wP\321\003\002 <\001\255S[\317\275\016\001\243o\261\303&\246J\026\315S\323A\237a\236\252@H\361\357\2653\005" > alive:\001\231m\r\367WZ\251\237\302\234\316\274\227R\360\363" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020X" signature:"0D\002 Q\3164\224\261]vR\242\327)\361\307?\235'\307]\243\\TPX\312[\031>]\372\215\255\275\002 E)~\313\262\327\332\n\361\362n\206\305cgp*\263\344Hh\227\373\232\310\353\232\037;.\034\016" > +peer0.org2.example.com | [15ff 06-12 02:15:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1675 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1833 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [16d8 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer0.org2.example.com | [1600 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1676 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1834 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16d9 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1601 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1677 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1835 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [16da 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1602 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1678 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1836 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16db 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1603 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1679 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1837 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16dc 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1604 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [167a 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1838 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [16dd 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1605 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1839 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [167b 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [16de 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1606 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [167c 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [183a 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16df 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org2.example.com | [1607 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [167d 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [183b 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [16e0 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1608 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [167e 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [183c 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16e1 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1609 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [167f 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [183d 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [16e2 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [160a 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1680 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [183e 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16e3 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [160b 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1681 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [183f 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [16e4 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [160c 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1682 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1840 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [16e6 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [160d 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1683 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1841 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [16e7 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [160e 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1684 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1842 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [16e8 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [160f 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1685 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1843 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16e9 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1610 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1686 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org1.example.com | [1844 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer0.org1.example.com | [16e5 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1611 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1687 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1845 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16ea 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1612 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1688 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org1.example.com | [1846 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16eb 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1613 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1689 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [1847 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [16ec 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1614 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [168a 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1848 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16ed 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1615 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [168b 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [1849 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16ee 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1616 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [168c 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [184a 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16ef 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1617 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [168d 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [184b 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [16f0 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1618 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [168e 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [184c 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [16f1 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1619 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [168f 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [184d 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [16f2 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [161a 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1690 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [184e 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [16f3 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [161b 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1691 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [184f 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [16f4 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [161c 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [1692 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1850 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [16f5 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [161d 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1693 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1851 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [16f6 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [161e 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020V" signature:"0E\002!\000\364\347q\2269\005\177\\\340,@]\267\016\227\235\020AN\244\374\201X\370\371\262\203\205\343\272Ff\002 R\205\264\307\253\257\021E\177\\N\305\t_$\205\363\3264\277\017\245Ie\207\221[\247\005\260S\235" > alive: alive:\301)\211" > +peer1.org2.example.com | [1694 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1852 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [161f 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [16f7 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1696 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1620 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1853 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [16f9 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1695 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1621 06-12 02:15:17.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [1854 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [16fa 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1697 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1622 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1855 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16f8 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1698 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1623 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1856 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [16fb 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1699 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [169a 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1625 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [16fc 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [169c 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1627 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1857 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [16fe 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [169d 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1624 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1858 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [16ff 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [169e 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1626 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1859 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1700 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [169f 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1628 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [185a 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1701 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16a0 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1629 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [185b 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [16fd 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [16a1 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [162a 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [185c 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1702 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16a2 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [162b 06-12 02:15:17.60 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer1.org1.example.com | [185d 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1703 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [169b 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [162c 06-12 02:15:17.61 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer1.org1.example.com | [185e 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1704 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16a3 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [162d 06-12 02:15:17.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer1.org1.example.com | [185f 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1705 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [16a4 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [162e 06-12 02:15:17.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [162f 06-12 02:15:17.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [1860 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [16a6 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1630 06-12 02:15:17.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1861 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1706 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [16a5 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1631 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1862 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1707 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [16a7 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1632 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1863 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1708 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [16a8 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [1633 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1864 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1709 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [16a9 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1634 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1865 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [170a 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [16aa 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1866 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1635 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1636 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1637 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [16ab 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [16ac 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16ad 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [16ae 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1638 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [16af 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [170b 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1639 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1867 06-12 02:15:28.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [16b0 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [170c 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [170d 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [163a 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1868 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [16b1 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [163b 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [170e 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1869 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16b2 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [163c 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1712 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [186a 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [16b4 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [163d 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1713 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [186b 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [16b5 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [163e 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [170f 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [186c 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [16b3 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [163f 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1710 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [186d 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [16b7 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1640 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1714 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [186e 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [16b6 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1641 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1715 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [186f 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [16b8 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1642 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1717 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1870 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [16b9 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1643 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1718 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [1871 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [16ba 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1644 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1711 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1872 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [16bb 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1645 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1716 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1873 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [16bc 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1646 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1719 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [1874 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org2.example.com | [16bd 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1647 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [171a 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1875 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [16be 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1648 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [171b 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1876 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\321\254}\223\036\353\303\rD~M\212\030\365\272\2159\223B\226\311E\002 \023\362\3330\271*\000\300#~\304+\275\002S\274\027\343\204\312\224?\313\263p\235\266L\315\302\213\344" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020a" signature:"0D\002 e\"\345Y\203\013Z#\303\367Y\023\326\360u\337h\201:\256\332w*u\250\253\211\221\265-JS\002 ?\237\251\355\030\266\316\242_\354\005_\330\031M9G\323\203\tz8=\031Q\304\020I}\023\037\371" > alive: alive: +peer1.org2.example.com | [16bf 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [1649 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [171c 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1877 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [16c0 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [164a 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [171d 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1878 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16c1 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:O\177\036/\372b\322\3301\024\272t\250\320\245\377\366{" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > alive: +peer0.org2.example.com | [164b 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [171e 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1879 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [16c2 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [164c 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [171f 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [187a 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [16c3 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [164d 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1720 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [187b 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org2.example.com | [16c4 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [164e 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1721 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [187c 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16c5 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [164f 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1722 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [187d 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [16c6 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org2.example.com | [1650 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [1723 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [187e 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [16c7 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1651 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org1.example.com | [1724 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [187f 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [16c8 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [16c9 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1653 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org1.example.com | [1880 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [16ca 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [1652 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1725 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1881 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16cb 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [1654 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1726 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1882 06-12 02:15:28.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [16cc 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1655 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1727 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1883 06-12 02:15:28.32 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [16cd 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [1656 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [1728 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1884 06-12 02:15:28.32 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [16ce 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1657 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1729 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1886 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [16cf 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [16d0 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1658 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1888 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [16d1 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1659 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [172a 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [188a 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16d2 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [165a 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [172b 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1885 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [16d3 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [165b 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [172c 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [188b 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16d4 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org2.example.com | [165c 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [172d 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1889 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [16d5 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [165d 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [172e 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [188c 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [16d7 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [165e 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [172f 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1887 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [16d6 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org2.example.com | [165f 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\020m\212\357\037" secret_envelope:\343q\202a\213\356]~\363yQ}\001" > > +peer0.org1.example.com | [1730 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 90 but got ts: inc_num:1528769652429776900 seq_num:89 +peer1.org1.example.com | [188e 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16d8 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1660 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [1731 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [188d 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [16d9 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1661 06-12 02:15:20.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1732 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [188f 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [16da 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1662 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1733 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1890 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [16db 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1663 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1664 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org1.example.com | [1734 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 88 but got ts: inc_num:1528769653227426900 seq_num:87 +peer1.org2.example.com | [16dc 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1665 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1735 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1891 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16dd 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 1] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org2.example.com | [1666 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1736 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1892 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [16de 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1667 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1737 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1893 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16df 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [1668 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1738 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1894 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [16e0 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1669 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [1739 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1895 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16e1 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [166a 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [173a 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1896 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [16e2 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [166b 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [173b 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1897 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3 4] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [16e3 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [166c 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [173c 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [16e4 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1898 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" secret_envelope:\332[\010\226\3673\342\005\022\353\341\343\253\255\0372\336*\351\246\214{\036\024\240\2320\004\001\010\034\002 X(\311*\362@\350\333\210\315]\377\222\260\356\016\217\031N\241O\274\324\275g}\220\276 :\260\024" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [166d 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [166e 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [173d 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1899 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [166f 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [173e 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [16e5 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [189a 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1670 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [173f 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [16e6 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [189b 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1671 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1740 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [16e7 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [189d 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1672 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1741 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [16e8 06-12 02:15:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [16e9 06-12 02:15:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1673 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [189e 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [16ea 06-12 02:15:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1674 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1742 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [189f 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [16eb 06-12 02:15:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1743 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1675 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [18a0 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [16ec 06-12 02:15:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1744 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1677 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [18a1 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [16ed 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1745 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1678 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18a2 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [16ee 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1746 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1679 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > alive:\016L\215\260P\210[\031\000\301\035d\351\347\265}\325wP\321\003\002 <\001\255S[\317\275\016\001\243o\261\303&\246J\026\315S\323A\237a\236\252@H\361\357\2653\005" > alive: +peer1.org1.example.com | [18a3 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [16ef 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1747 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [167a 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +peer1.org1.example.com | [18a4 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [16f0 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1748 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [167b 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [18a5 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [16f1 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [1749 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1676 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [18a6 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16f2 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [174a 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [167c 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [18a7 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [16f3 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [174b 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [167d 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18a8 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [16f4 06-12 02:15:25.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [174c 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org2.example.com | [167e 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org1.example.com | [18a9 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16f5 06-12 02:15:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [174d 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [167f 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18aa 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [16f6 06-12 02:15:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [174e 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1680 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [18ab 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [16f7 06-12 02:15:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [174f 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1681 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [189c 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16f8 06-12 02:15:25.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1750 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1682 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [18ad 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [16f9 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1751 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1683 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18ae 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [16fa 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1752 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1684 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [18ac 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [16fb 06-12 02:15:25.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1753 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1685 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [18af 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16fc 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1754 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1686 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [18b0 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [16fd 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1755 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1687 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [18b1 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [16fe 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1756 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1688 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [16ff 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [18b2 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" secret_envelope:\332[\010\226\3673\342\005\022\353\341\343\253\255\0372\336*\351\246\214{\036\024\240\2320\004\001\010\034\002 X(\311*\362@\350\333\210\315]\377\222\260\356\016\217\031N\241O\274\324\275g}\220\276 :\260\024" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1757 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1689 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1700 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [18b4 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" secret_envelope:\332[\010\226\3673\342\005\022\353\341\343\253\255\0372\336*\351\246\214{\036\024\240\2320\004\001\010\034\002 X(\311*\362@\350\333\210\315]\377\222\260\356\016\217\031N\241O\274\324\275g}\220\276 :\260\024" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1758 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [168a 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1701 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [18b5 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1759 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [168b 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1702 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [18b6 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [175a 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1703 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [168c 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18b7 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [175b 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [1704 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [168d 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18b8 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [18b9 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1706 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [168e 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18ba 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [175c 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1707 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [168f 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18bb 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [175e 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org2.example.com | [1708 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > alive:\366\344\346\357\374\347\334\342\002 ^C\027'\360\177\260P4\201Z\234K\334\036w\021\302,\351\000TM\274\343\035\246\203\357s\177\325" > +peer0.org2.example.com | [1690 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18bc 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [175d 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:p\230\254'\316h\025Q(\\c\371\247\375\027&\251\323P\332\356~y\000\347" > alive: alive:^\203'.R\026\252\356i\266\303;\221g\225\016\033\3625k\325\025\361" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Z" signature:"0E\002!\000\214\003.\261\232c\177\320\375\224\347ele=\336\320$b8)\376#3\325i|[\204|PA\002 q*_P\371\253\362c\327;\361\367\345\251\025dGs4f\305\024\245\350\251\0266\210\226]:[" > +peer1.org2.example.com | [1709 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1691 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18bd 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [175f 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [170a 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1705 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [170b 06-12 02:15:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [170c 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [170d 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [170e 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [170f 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1710 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1711 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1712 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1713 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1714 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1715 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1692 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1716 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1717 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1718 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1719 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [171a 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [171b 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [171c 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [171d 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [171e 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [171f 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1720 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1721 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1722 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1723 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1724 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1725 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1726 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1727 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1728 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1729 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [172a 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [172b 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [172c 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [172d 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1693 06-12 02:15:20.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1694 06-12 02:15:20.51 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1695 06-12 02:15:20.51 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1696 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1697 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1698 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1699 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [169a 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [172e 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [172f 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1730 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1731 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1732 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1733 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1735 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1734 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1736 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1737 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1738 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1739 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [173a 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [173b 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [173c 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [173d 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [173e 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [173f 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1740 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1741 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1742 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1743 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1744 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1745 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1746 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [169b 06-12 02:15:20.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [169c 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [169d 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [169e 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [169f 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [16a0 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [16a1 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [16a2 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [16a3 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16a4 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [16a5 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [16a6 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16a7 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [16a8 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [16a9 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [16aa 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [16ab 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16ac 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [16ad 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [16ae 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [16af 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [16b0 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [16b1 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [16b2 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [16b3 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16b4 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [16b6 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1747 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1748 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1749 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [174a 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [174b 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [174c 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [174d 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [174e 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [174f 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1750 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1751 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1752 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1754 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1755 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1753 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1756 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1757 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1758 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1759 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [175a 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [175b 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [175c 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [175d 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [175e 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1760 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1761 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1762 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1763 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1764 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1765 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1766 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1767 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1768 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1769 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [176a 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [176c 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [18be 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [18bf 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18c0 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" secret_envelope:\332[\010\226\3673\342\005\022\353\341\343\253\255\0372\336*\351\246\214{\036\024\240\2320\004\001\010\034\002 X(\311*\362@\350\333\210\315]\377\222\260\356\016\217\031N\241O\274\324\275g}\220\276 :\260\024" > > alive: > +peer1.org1.example.com | [18c1 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [18c2 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [16b7 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [16b5 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [16b8 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [16b9 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [16ba 06-12 02:15:20.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 89 but got ts: inc_num:1528769653227426900 seq_num:88 +peer0.org2.example.com | [16bb 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16bc 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [16bd 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [16be 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [16bf 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16c0 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [16c1 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [16c2 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [16c3 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [16c4 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [16c5 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [16c6 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [16c7 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16c8 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [16c9 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [16ca 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [16cb 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [16cc 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [16cd 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [16ce 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [175f 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1760 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1761 06-12 02:15:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [1762 06-12 02:15:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1763 06-12 02:15:27.62 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [1764 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1765 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1766 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1767 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1768 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1769 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [176a 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [176c 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [176b 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [176d 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [176e 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [176f 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1770 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1771 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1772 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1774 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1773 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1775 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1779 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [176d 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [176e 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [176f 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1770 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1771 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1772 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1773 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1774 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1775 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1776 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [1777 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1778 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020[" signature:"0D\002 \014\004\016\3123\014\3435\336/\001\374\264\035\342F9\315H4\205\202,\321\332\323\207\236&8\335b\002 \t\251\262\322\330\201\217\307\247\034n\310\222\223F\333\220\003N\"G\224\314\355\231[\371\262q\"6\356" secret_envelope: > +peer0.org1.example.com | [1779 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [177a 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [176b 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [177b 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [177c 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [177d 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [177e 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [177f 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1780 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1781 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1782 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1783 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1784 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1785 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1786 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1787 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [178a 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1788 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [178b 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1789 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [178c 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [178e 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [178d 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [178f 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1790 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1791 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1793 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1794 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1792 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1795 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1796 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1797 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1798 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1799 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [179a 06-12 02:15:22.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [179b 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer0.org2.example.com | [16cf 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [16d0 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [16d1 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [16d2 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [16d3 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [16d4 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [16d5 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [16d6 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [16d7 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16d8 06-12 02:15:20.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [16da 06-12 02:15:20.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [16db 06-12 02:15:20.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [16dc 06-12 02:15:20.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [16dd 06-12 02:15:20.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [16de 06-12 02:15:20.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [16df 06-12 02:15:20.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [16e0 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [16d9 06-12 02:15:20.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [16e1 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [16e2 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [16e3 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [16e4 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16e5 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [16e6 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [16e7 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [16e8 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1776 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1777 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1778 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [177a 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [177b 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [177d 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [177c 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [177e 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [177f 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1780 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1781 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1782 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1783 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1784 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [1785 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1786 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1787 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1788 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1789 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [178a 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [178b 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [178c 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [178d 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [178e 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [178f 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1790 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1791 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1792 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1794 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1795 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1796 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1797 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1798 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1799 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [179a 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [179b 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [179c 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [179d 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [179e 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [179f 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1793 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [17a1 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [17a2 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [17a3 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17a0 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 96 but got ts: inc_num:1528769653227426900 seq_num:95 +peer1.org2.example.com | [17a4 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [17a5 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [17a6 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [17a7 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [17a8 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [17a9 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17aa 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [17ab 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [17ad 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [17ae 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [17af 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [17b0 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [17b1 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [18c3 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [18b3 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18c4 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [18c5 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18c6 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [18c7 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [18c8 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18c9 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [18ca 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [18cb 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [18cc 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [18cd 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18ce 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [18cf 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [18d0 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18d1 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [18d2 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [18d3 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [18d4 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [18d5 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [18d6 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [18d7 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [18d8 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [179c 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [179d 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [179f 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [179e 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17a2 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17a1 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17a3 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17a0 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17a4 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [17a5 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [17a6 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [17a7 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [17a8 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [17a9 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17aa 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17ab 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17ac 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [17ad 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17ae 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17af 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17b0 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [17b1 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17b3 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [16e9 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [16ea 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [16eb 06-12 02:15:20.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [16ec 06-12 02:15:20.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [16ed 06-12 02:15:20.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [16ee 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [16ef 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [16f0 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [16f1 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [16f2 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [16f3 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [16f4 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [16f5 06-12 02:15:20.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [16f6 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [16f7 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [16f8 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [16f9 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [16fa 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [16fb 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [16fc 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 1 2 3] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [16fd 06-12 02:15:20.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [16fe 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [16ff 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1700 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [1701 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1702 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1703 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17b2 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [17ac 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [17b3 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [17b4 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [17b5 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [17b6 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17b7 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [17b8 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [17b9 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17ba 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [17bb 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [18d9 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [18da 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [18db 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [18dc 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18dd 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > alive: alive: +peer1.org1.example.com | [18de 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [18df 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [18e0 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [18e1 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [18e2 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18e3 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [18e4 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18e5 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [18e6 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18e7 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [18e9 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18ea 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [18ec 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18e8 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [18eb 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [18ed 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [18ee 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [18ef 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [18f0 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [18f1 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [17b2 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [17b4 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [17b6 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17b5 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [17b7 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [17b8 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [17b9 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [17ba 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [17bb 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17bd 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [17be 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17bc 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [17c0 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [17c1 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17bf 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17c2 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [17c3 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17c4 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17c5 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [17c6 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17c7 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17c8 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17c9 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17ca 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [17cb 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17cc 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1704 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1705 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1706 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1707 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1708 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1709 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [170a 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [170b 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [170c 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [170d 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [170e 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [170f 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1710 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Z" signature:"0E\002!\000\214\003.\261\232c\177\320\375\224\347ele=\336\320$b8)\376#3\325i|[\204|PA\002 q*_P\371\253\362c\327;\361\367\345\251\025dGs4f\305\024\245\350\251\0266\210\226]:[" > alive: alive:\354\t\333\027X\363\017\030v\304\242\303<\1775\0377\276" > +peer0.org2.example.com | [1711 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1712 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1713 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1714 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1715 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1716 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1717 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1718 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1719 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [171a 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [171b 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [171c 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [171d 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [171e 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [171f 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1720 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1721 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1723 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1722 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1724 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1725 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1726 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1727 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1728 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1729 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [172a 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [172b 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [172c 06-12 02:15:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [172d 06-12 02:15:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [172e 06-12 02:15:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [172f 06-12 02:15:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1730 06-12 02:15:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1731 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1732 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1733 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1734 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1735 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1736 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1737 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1738 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1739 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [173a 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [173c 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [173d 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [173e 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [173b 06-12 02:15:22.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [173f 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1741 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1742 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1743 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1740 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1744 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1745 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1746 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1747 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1748 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1749 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [174a 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [174b 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [174c 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [174d 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [174e 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [174f 06-12 02:15:22.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [1750 06-12 02:15:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1751 06-12 02:15:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1752 06-12 02:15:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1753 06-12 02:15:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1754 06-12 02:15:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1756 06-12 02:15:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1755 06-12 02:15:22.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1757 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1758 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1759 06-12 02:15:22.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [175a 06-12 02:15:22.61 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [175b 06-12 02:15:22.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [175c 06-12 02:15:22.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [175d 06-12 02:15:22.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [175e 06-12 02:15:22.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [175f 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1760 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1761 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1762 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1763 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1764 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1765 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1766 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1767 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1768 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1769 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [176a 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [176b 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [176c 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [176e 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [176d 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [176f 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1770 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1771 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1773 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1772 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1774 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1775 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1776 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1777 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1778 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1779 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [17bc 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [17bd 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17be 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17bf 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [17c0 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17c1 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17c2 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17c3 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [17c4 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [17c5 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [17c6 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [17c7 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [17c8 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [17c9 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [17ca 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [17cb 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17cc 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17cd 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [17ce 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17cf 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17d0 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [17d1 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [17d2 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [17d4 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17d5 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [17d3 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17d6 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [17d7 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [17d8 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17d9 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [17da 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [17db 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [17dc 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [17dd 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [17de 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [17df 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [17e0 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [17e1 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [17e2 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [17e3 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [17e4 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [17e5 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > alive: +peer1.org2.example.com | [17e6 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [17e7 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17cd 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17ce 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [17cf 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [17d0 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [17d1 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [17d2 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [17d3 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [17d4 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [17d5 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [17d6 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [17d7 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17d8 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17d9 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [17da 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [17dc 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17dd 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17db 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17df 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17e0 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17de 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [17e1 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17e2 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17e3 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17e4 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [17e5 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17e6 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [17e7 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [17e8 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [17e9 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [17ea 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17eb 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [17ed 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17ee 06-12 02:15:24.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [17ec 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [17ef 06-12 02:15:24.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [17f0 06-12 02:15:24.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [17f1 06-12 02:15:24.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17f2 06-12 02:15:24.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [17f3 06-12 02:15:24.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [17f4 06-12 02:15:24.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17f5 06-12 02:15:24.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [17f6 06-12 02:15:24.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17f7 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [17f8 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [17f9 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [17fa 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [17fb 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [17fc 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [17fd 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [17fe 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [17ff 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1800 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1801 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1802 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1803 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1804 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1805 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1806 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1807 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [1808 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1809 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [180a 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020]" signature:"0D\002 6]\337\362\035\345O\260%\007 /\301\240\030\352\302E\231\261(p>J\344\302%\206\321\337\301\"\002 3k1\356\022\351U\336\265S\313N\271\225\217\300\256c\353\363%bi\302\026?fe\036dW\326" > +peer0.org1.example.com | [180b 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [180c 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [180d 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [180e 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [180f 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1810 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1811 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1812 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1813 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [1814 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1815 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1816 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1818 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1817 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1819 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [181a 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [181b 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [181c 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [181d 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [181e 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [181f 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1820 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1821 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1823 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1822 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1824 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1825 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [177a 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [177b 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [177c 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [177d 06-12 02:15:24.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [177e 06-12 02:15:24.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [177f 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1780 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1781 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1783 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1782 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1784 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1785 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1786 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1787 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1788 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1789 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [178a 06-12 02:15:24.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [178c 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [178d 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18f3 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18f4 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18f2 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18f5 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18f6 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18f7 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18f8 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18f9 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18fa 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [18fb 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [18fc 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [18fe 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [18ff 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [18fd 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [17e8 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [17e9 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [17ea 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17eb 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17ec 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [17ed 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17ee 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [17ef 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [17f0 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [17f1 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [17f2 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [17f3 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17f4 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [17f5 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [17f6 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [17f7 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [17f8 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [17f9 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [17fa 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [17fb 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1826 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1828 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [178e 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org2.example.com | [178f 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [178b 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1790 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1791 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1792 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1793 06-12 02:15:24.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1794 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1795 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1796 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1797 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1798 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [1799 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [179a 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [179b 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [179c 06-12 02:15:24.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [179d 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [179e 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [179f 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [17a0 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [17a1 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1900 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1901 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1902 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1904 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1903 06-12 02:15:29.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1906 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1907 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1908 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1909 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [190a 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [190b 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [190c 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [190d 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [190e 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [190f 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1910 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1911 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1912 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1913 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1914 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1915 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1916 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1917 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1918 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [17fc 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [17fd 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [17fe 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [17ff 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1800 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [1801 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1802 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\270\233\014\356\326\002 ~\265\206G\023\231\321\316\352\243\206~\016Y\301{w*\332_{C~\324I\n\033\356\304\025\271\244" secret_envelope: > +peer1.org2.example.com | [1803 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [1804 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1805 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1806 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1807 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1808 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1809 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [180a 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [180b 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [180d 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [180e 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [180f 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [180c 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1812 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1810 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1813 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1811 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1814 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1815 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1816 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1829 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [182a 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [182b 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [182c 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1827 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [182d 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [182e 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1830 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [182f 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1831 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1832 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1833 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1834 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1835 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1836 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1837 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1838 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1839 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [183a 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [183c 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [183d 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [183b 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [183e 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1840 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1841 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1842 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [183f 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [1843 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1845 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1846 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1844 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1848 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [1847 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1849 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [184a 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [184c 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [184d 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [184e 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [184f 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [184b 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [1850 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1851 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1852 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1853 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1854 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1855 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1856 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [1857 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1858 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1859 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [185a 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [185b 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [185c 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [185e 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [185f 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1860 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1861 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1862 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [185d 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1863 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1864 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1865 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 95 but got ts: inc_num:1528769652429776900 seq_num:94 +peer0.org1.example.com | [1866 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [17a2 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [17a3 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [17a4 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [17a5 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [17a6 06-12 02:15:24.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [17a7 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [17a8 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > alive: alive: alive: +peer0.org2.example.com | [17a9 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [17aa 06-12 02:15:24.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17ab 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [17ac 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [17ad 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [17ae 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [17af 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [17b0 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [17b1 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [17b2 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [17b3 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [17b5 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [17b4 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [17b7 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17b6 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17b8 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1919 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [191a 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [191b 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [191c 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [191d 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [191e 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [191f 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1920 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1921 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1922 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1923 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1924 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1925 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1926 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1927 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1928 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1929 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [192a 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [192b 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [192c 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [192d 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [192e 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [192f 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [1930 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1931 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1932 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1905 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1933 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1935 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1936 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1934 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1937 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1938 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1939 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [193a 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [193b 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [193c 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 101 but got ts: inc_num:1528769652088169500 seq_num:99 +peer1.org1.example.com | [193d 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [193e 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [193f 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1940 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 102 but got ts: inc_num:1528769652429776900 seq_num:101 +peer1.org1.example.com | [1941 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1942 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1943 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1944 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1945 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1946 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1947 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1948 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1949 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1867 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1868 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1869 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 93 but got ts: inc_num:1528769653227426900 seq_num:92 +peer0.org1.example.com | [186a 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [186b 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [186c 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [186d 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [186e 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [186f 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1870 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1871 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1872 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1873 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1874 06-12 02:15:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1875 06-12 02:15:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1876 06-12 02:15:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1877 06-12 02:15:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1878 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1879 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [187a 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [187b 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [187c 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [187d 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [187e 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [187f 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1880 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1881 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1882 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1883 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1884 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1885 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1886 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1817 06-12 02:15:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1818 06-12 02:15:28.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1819 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [181a 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [181b 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [181c 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [181d 06-12 02:15:28.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer1.org2.example.com | [181e 06-12 02:15:28.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer1.org2.example.com | [181f 06-12 02:15:28.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1820 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1821 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1822 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1823 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1824 06-12 02:15:29.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1825 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1826 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1827 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1828 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1829 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [182a 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [182b 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [182c 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [182d 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [194a 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [194b 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [194c 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [194d 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [194e 06-12 02:15:29.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [194f 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1950 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1951 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1952 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1953 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1954 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1955 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1956 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1957 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1958 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1959 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [195a 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [195b 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [195c 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [195d 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [195e 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [195f 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1960 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1961 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17b9 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [17bb 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17ba 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [17bc 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [17bd 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [17be 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [17bf 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [17c0 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [17c1 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [17c2 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [17c3 06-12 02:15:24.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [17c4 06-12 02:15:24.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [17c5 06-12 02:15:24.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [17c6 06-12 02:15:24.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [17c7 06-12 02:15:24.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17c9 06-12 02:15:24.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [17ca 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17c8 06-12 02:15:24.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [17cb 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17cc 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [17cd 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [17ce 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [17cf 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [17d0 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [17d1 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [17d2 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [17d4 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [17d3 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [17d5 06-12 02:15:24.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [17d8 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [17d6 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [17d7 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [17d9 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [17da 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17db 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17dc 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [17dd 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [17de 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [17df 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [17e0 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [17e1 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [17e2 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [17e3 06-12 02:15:24.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [17e4 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [17e5 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [17e6 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [17e7 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [17e8 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [17e9 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [17ea 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [17eb 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [17ec 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [17ed 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [17ee 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [17ef 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [17f0 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [17f1 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [17f2 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [17f3 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [17f4 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [17f5 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [17f6 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [17f7 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1962 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1963 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1964 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1965 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1966 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1967 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1968 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1969 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [196a 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [196b 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [196c 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [196d 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [196e 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [196f 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1970 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1971 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1972 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1973 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1974 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1975 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1976 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1977 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1978 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1979 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1887 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1888 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1889 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [188a 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [188b 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [188d 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [188e 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [188c 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020_" signature:"0E\002!\000\224O\303\370\262\017y\231J\005t,\243\313\325W\3401\312\300\364\000\250\031\205,J\256J\223U\017\002 @\260k\022\3320Q\266\206AA\32138\352\234.\005<\372\361\\\232;\341\2369\271[\246\203\272" > +peer0.org1.example.com | [188f 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1890 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1891 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1892 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1893 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1894 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1895 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1896 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1897 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1898 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1899 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [189a 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [189b 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [189c 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [189d 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [189e 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [189f 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [18a0 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [18a1 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [18a2 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [18a3 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [18a4 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [18a5 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [18a6 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [18a8 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [18a9 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18a7 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020`" signature:"0E\002!\000\341\004\305\005\311\206`E\343\227z\002|l\374\322\322\367\351\250F\r\335u\275\030\032x\272\240\377\227\002 8j\335\230%\253\035\177\316\344O\214\007v\366X\021\3273\266\240\207Q\234s\305\254\364\343\363\033\024" secret_envelope:\236\271N > +peer0.org1.example.com | [18aa 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18ab 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18ac 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [18ad 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [18ae 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18af 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18b0 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [18b1 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [18b2 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [18b3 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [18b4 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [18b5 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [18b6 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [18b7 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [18b8 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [18b9 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [18ba 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18bc 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18bb 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18bd 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18be 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [18bf 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [18c1 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18c2 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [18c0 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18c3 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18c4 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18c5 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [18c6 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [18c7 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18c8 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [18c9 06-12 02:15:27.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [18ca 06-12 02:15:27.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [18cb 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer0.org1.example.com | [18cc 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [18cd 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [18ce 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [18cf 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [18d1 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18d0 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [18d2 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18d3 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18d4 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [18d5 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [18d6 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [18d7 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [18d8 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [18d9 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18da 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18db 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18dc 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [18dd 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [18de 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18df 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18e0 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [18e1 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [18e2 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [18e3 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [18e4 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [18e5 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [18e6 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [18e7 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [18e8 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [18e9 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [18ea 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18eb 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18ec 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18ed 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18ef 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18ee 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18f0 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [18f1 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [18f2 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18f4 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [18f3 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18f5 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [18f7 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [18f8 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [18f6 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [18f9 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [18fa 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [18fb 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [18fc 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [18fd 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [182e 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [182f 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1830 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1831 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1832 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [1833 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1834 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > alive: alive: alive:\325\002]\370,\235\347\311\223\266OfoW\344v\035\014\254\223\002 K^\226\344\017D\353_\372\236\345@\247\337\000x\005\340\010\221\207\007\231\n\201>\377\360\341\254V\215" > +peer1.org2.example.com | [1835 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1836 06-12 02:15:29.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1837 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1838 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1839 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [183a 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [183b 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [183c 06-12 02:15:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [183d 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [183e 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [183f 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1840 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1841 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1842 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1843 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [17f9 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [17f8 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [17fa 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [17fb 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [17fc 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [17fd 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [17fe 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [17ff 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 95 but got ts: inc_num:1528769652088169500 seq_num:94 +peer0.org2.example.com | [1800 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1801 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1802 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1803 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 94 but got ts: inc_num:1528769651824440500 seq_num:93 +peer0.org2.example.com | [1804 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1805 06-12 02:15:24.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1806 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1807 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1808 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1809 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [180a 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [180b 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [180c 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [180d 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [180e 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [1810 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [180f 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1812 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1813 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1811 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1815 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [1814 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1816 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1817 06-12 02:15:24.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1818 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1819 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [181a 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [181b 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [181c 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [181d 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [181e 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1820 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [181f 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1821 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1822 06-12 02:15:24.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1823 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1824 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1825 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1826 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1827 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [1828 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [1829 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [182a 06-12 02:15:24.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [182b 06-12 02:15:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [18fe 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [18ff 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1900 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1902 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1901 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1903 06-12 02:15:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1904 06-12 02:15:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1905 06-12 02:15:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1906 06-12 02:15:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1907 06-12 02:15:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1908 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1909 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [190a 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [190b 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [190c 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [190d 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [190e 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [190f 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1910 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1911 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1912 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1913 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1914 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1915 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [1916 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1917 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\321\254}\223\036\353\303\rD~M\212\030\365\272\2159\223B\226\311E\002 \023\362\3330\271*\000\300#~\304+\275\002S\274\027\343\204\312\224?\313\263p\235\266L\315\302\213\344" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020b" signature:"0D\002 %\206P\313\363r\326\357\223\r\312\326\303\273B\020\025\344l\273\344\"D\242\371\245B\337_0\222\006\002 D\203\336\3712\022\214\302\236\265:\177Y\030\000g\236i\177\237rM\316\325\267l\274\242CW5\010" > +peer0.org1.example.com | [1918 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1919 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [191a 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [191b 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [191c 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [191d 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [191e 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [191f 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1920 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1921 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1922 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1923 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1924 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1925 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1927 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1928 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1926 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1929 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [192a 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [192c 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [192d 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [192e 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [192b 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [192f 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1930 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1931 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1932 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1933 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1934 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1935 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1936 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1937 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1938 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1939 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [193a 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" secret_envelope:\332[\010\226\3673\342\005\022\353\341\343\253\255\0372\336*\351\246\214{\036\024\240\2320\004\001\010\034\002 X(\311*\362@\350\333\210\315]\377\222\260\356\016\217\031N\241O\274\324\275g}\220\276 :\260\024" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [193b 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [193c 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [193d 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [193e 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [193f 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1940 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1941 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1945 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1942 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1946 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1943 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1944 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1947 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1949 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [194a 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [194b 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [194c 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [194d 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [194e 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [194f 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1950 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1951 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1952 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1948 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1953 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1954 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1955 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1956 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1957 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1958 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1959 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [195a 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [195b 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [195c 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [195d 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [195e 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [195f 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1960 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1961 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org1.example.com | [1962 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org1.example.com | [1963 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1964 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1965 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1966 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1967 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1968 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1969 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [196a 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [196b 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [196c 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [196d 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [196e 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [196f 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1970 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1971 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1972 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1973 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1974 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1975 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1976 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1977 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1978 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1979 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [197a 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [197b 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [197c 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [197d 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [197e 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [197f 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1980 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1981 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1982 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1983 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1984 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1985 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [197a 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [197b 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [197c 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [197d 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [197e 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [197f 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1980 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1982 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1981 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1983 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1984 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org1.example.com | [1985 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [1986 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [1987 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1988 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1989 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [198a 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [198b 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [198c 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [198d 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [198e 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [198f 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1990 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1991 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1992 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [1993 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [1844 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1845 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1846 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1847 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1848 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1849 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [184a 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [184b 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [184c 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [184d 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [184e 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [184f 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1850 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1851 06-12 02:15:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1852 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1853 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1854 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1855 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1856 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1857 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1858 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1859 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [185a 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [1986 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1988 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1987 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1989 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [198a 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [198b 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 99 but got ts: inc_num:1528769651824440500 seq_num:98 +peer0.org1.example.com | [198c 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [198d 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [198e 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [198f 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1990 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1991 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1992 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1993 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1994 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1995 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1996 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1997 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1998 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1999 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [199a 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [199b 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [199c 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 1] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [199d 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [199e 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [199f 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19a0 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [182c 06-12 02:15:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [182d 06-12 02:15:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [182e 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [182f 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1830 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1831 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1832 06-12 02:15:24.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1833 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1834 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1835 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [1836 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1837 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1838 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1839 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [183a 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [183b 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [183c 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [183d 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [183e 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [183f 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1840 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1841 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1843 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [1842 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [185b 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [185c 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [185d 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [185e 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [185f 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1860 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1861 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1862 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1863 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1864 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1865 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1866 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1867 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1868 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1869 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [186a 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [186b 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [186c 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [186d 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [186e 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [186f 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1870 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1871 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [19a1 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [19a2 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [19a3 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [19a4 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [19a5 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [19a6 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [19a7 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [19a8 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [19a9 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [19aa 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [19ab 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [19ac 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [19ad 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [19ae 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [19af 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [19b0 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [19b1 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [19b2 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19b3 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [19b4 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [19b5 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19b6 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [19b7 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19b8 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [19b9 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [19ba 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [19bb 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [19bc 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [19bd 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [19be 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [19bf 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [19c0 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [19c1 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [19c2 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020d" signature:"0E\002!\000\271\310\313\027\334\030u#\301M_\023W\007\005j\320\307\321\242\2573}\250>c,\010\265J\213\332\002 #\304\265\353,\346\275z\357\270E+\347\333;\360F\334\347\256q\303\204K\r\211\025:Z\340\262\376" > +peer0.org1.example.com | [19c3 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [19c4 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [19c5 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [19c6 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [19c7 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19c8 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [19c9 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [19ca 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19cb 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [19cc 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [19cd 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [19ce 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19cf 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [19d0 06-12 02:15:29.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19d1 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [19d2 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [19d3 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [19d4 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [19d5 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [19d6 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [19d7 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [19d8 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [19d9 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [19da 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [19db 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [19dc 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [19dd 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020e" signature:"0E\002!\000\277fQx\tMP\200.\274\224V\337w\365\032\265\375\353O\224_\311>\307NN\225\266\330\006\004\002 J\036\032\3535\022\371\301\373g\024\024\"\303\251\206\356z\037\301B\304 \326&p\221\210\207\313\177\276" secret_envelope: > +peer0.org1.example.com | [19de 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [19df 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [19e0 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19e1 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19e2 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [19e3 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19e5 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19e6 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [19e4 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19e7 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19e8 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [19e9 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [19ea 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [19eb 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [19ec 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [19ed 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [19ee 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [19ef 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [19f1 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19f0 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19f2 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [19f3 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19f4 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19f5 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [19f6 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [19f7 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19f8 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [19f9 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1844 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1845 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020_" signature:"0E\002!\000\224O\303\370\262\017y\231J\005t,\243\313\325W\3401\312\300\364\000\250\031\205,J\256J\223U\017\002 @\260k\022\3320Q\266\206AA\32138\352\234.\005<\372\361\\\232;\341\2369\271[\246\203\272" > alive: +peer0.org2.example.com | [1846 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1847 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1848 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1849 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [184a 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [184b 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [184c 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [184d 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [184e 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [184f 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1850 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1851 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1852 06-12 02:15:26.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1853 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1854 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1855 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1856 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1857 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1858 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1859 06-12 02:15:26.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [185a 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [185b 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [185c 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [185d 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [185e 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [185f 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1860 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1861 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1862 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1863 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1864 06-12 02:15:26.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1865 06-12 02:15:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1866 06-12 02:15:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1867 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1868 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1869 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [186a 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [186b 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [186c 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [186d 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [186e 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [186f 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org1.example.com | [19fb 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [19fa 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19fc 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [19fd 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [19fe 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [19ff 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a00 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a01 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1a02 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a03 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a04 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1a05 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1a06 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a07 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a08 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a09 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a0a 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a0b 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a0c 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a0d 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a0e 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a0f 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a10 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a11 06-12 02:15:32.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a12 06-12 02:15:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a13 06-12 02:15:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a14 06-12 02:15:32.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [1a15 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1872 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1873 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1874 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1875 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [1876 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1877 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1878 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1879 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [187a 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [187b 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [187c 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [187d 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [187e 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [187f 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1880 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1881 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1882 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1883 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1884 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1885 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1886 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1888 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1887 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1994 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1995 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [1996 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1998 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1999 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [199a 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [199b 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [199c 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [199d 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [199e 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [199f 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [19a0 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [19a1 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [19a2 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [19a3 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [19a4 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\352N\351\210\302Ba\002\003\263\310\002 z\201\302\3630\340\366\223B\332\034\3552\373\021\232\354\336\324\037\337\205r\347~\337.~:\207\276_" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020f" signature:"0E\002!\000\301\252\327\035\205|\222@*R\230\256\340\213.P\375\355`\377j\331+\372\031\000\357\224\243\017(\022\002 \t\202`\300\033\350\233\264x\251\340I\024]\247.\377K]\365\n\023\210\235X\240\276\270Ed\373\202" > alive: alive: +peer1.org1.example.com | [19a5 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [19a6 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1997 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19a7 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1870 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1871 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1872 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1873 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1874 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1875 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1876 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1877 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1878 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1879 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [187a 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [187b 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [187c 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [187d 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [187f 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1880 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [187e 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1881 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1882 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1883 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1884 06-12 02:15:27.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1885 06-12 02:15:27.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org2.example.com | [1886 06-12 02:15:27.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [1887 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1889 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1a16 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1a17 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1a18 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1a19 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a1a 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1a1b 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a1c 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1a1d 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a1e 06-12 02:15:32.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [1a1f 06-12 02:15:32.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [1a20 06-12 02:15:32.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [1a21 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1a22 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [1a23 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a24 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a25 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a26 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a27 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a28 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1a29 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1a2a 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1889 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [188a 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [188b 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [188c 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [188d 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [188e 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [188f 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1890 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1891 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1892 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1893 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1894 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1895 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1896 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1897 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1898 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1899 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [189a 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [189b 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [189c 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [189d 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [189e 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [189f 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [18a0 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [18a1 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [18a2 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [18a3 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [18a4 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [18a5 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [18a6 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [18a7 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18a8 06-12 02:15:32.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [18a9 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18aa 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [18ab 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [18ac 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [18ad 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [18ae 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [18af 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [18b0 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [18b1 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [18b2 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [18b3 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [18b4 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [18b5 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [18b6 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [18b7 06-12 02:15:32.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [18b8 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [18b9 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [18ba 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [18bb 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [18bc 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [18bd 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [18be 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [18bf 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [18c0 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [18c1 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [18c2 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [18c3 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [18c4 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [18c5 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [18c6 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18c7 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [18c8 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [18c9 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [18ca 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18cb 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [18cc 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [18cd 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18ce 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [18cf 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [18d0 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [18d1 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18d2 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [18d3 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [18d4 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18d5 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [18d6 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18d7 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [18d8 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18d9 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [18da 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [18db 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [18dc 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [18dd 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [18de 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [18df 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [18e0 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [18e1 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [18e2 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1888 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [188b 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [188a 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [188d 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [188e 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [188c 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [188f 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1890 06-12 02:15:27.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [1891 06-12 02:15:27.61 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [1892 06-12 02:15:27.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [1893 06-12 02:15:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1894 06-12 02:15:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [1895 06-12 02:15:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1896 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1897 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1898 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1899 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [189a 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [189b 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [189c 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [189d 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [189e 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [189f 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1a2b 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1a2c 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1a2d 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1a2e 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1a2f 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a30 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1a31 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [1a32 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1a33 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020g" signature:"0D\002 P\303\370?}1\272\321v\240\200\277\356\344\303\2335CX\350\313\353\001\232\231\267\263\225;L\315\321\002 6\221\214\007n\262u3\032\024\306\355\270\230\331q\305\361\200\010\366\231\222\252\233\nv\273\304\356\242\300" > +peer0.org1.example.com | [1a34 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a35 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a36 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1a37 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1a38 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1a3a 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1a3b 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1a3d 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1a39 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a3f 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a3c 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a40 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a3e 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a43 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a41 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a42 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a44 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a45 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a46 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a47 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a48 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a49 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a4a 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a4b 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a4c 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [1a4d 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a4e 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1a4f 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1a50 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a51 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a52 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a53 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a54 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a55 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a56 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a57 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a58 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a59 06-12 02:15:32.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1a5a 06-12 02:15:32.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1a5b 06-12 02:15:32.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1a5c 06-12 02:15:32.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a5d 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a5e 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a5f 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a60 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a61 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1a62 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a63 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a64 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a65 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a66 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a67 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a68 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [18a0 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [18a1 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [18a2 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [18a3 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [18a4 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [18a5 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [18a6 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer0.org2.example.com | [18a7 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [18a8 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18a9 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [18aa 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [18ab 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [18ac 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [18ad 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18ae 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [18af 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [18b0 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [18b1 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [18b2 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18b3 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18b4 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [18b5 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18b6 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18b7 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18b8 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [18b9 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [18ba 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [18bb 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [18bc 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [18bd 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [18be 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [18bf 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [18c0 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [18c1 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [18c2 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18c3 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18c4 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18c5 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18c6 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [18c7 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18c8 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [18ca 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [18cb 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [18cc 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [18cd 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [18ce 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [18cf 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [18d0 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [18d1 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [18d2 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [18d3 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [18d4 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [18d5 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [18d6 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > alive: alive: alive: +peer0.org2.example.com | [18d7 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [18d8 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18c9 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18d9 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18da 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [18db 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18dc 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18dd 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [18de 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18df 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [18e0 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18e1 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [18e2 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [18e3 06-12 02:15:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [18e4 06-12 02:15:28.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [18e5 06-12 02:15:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [18e6 06-12 02:15:28.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [18e7 06-12 02:15:28.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [18e8 06-12 02:15:28.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [18e9 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [18ea 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [18eb 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18ec 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18ed 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [18ee 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [18ef 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [18f0 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18f1 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [18f2 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [18f3 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [18f4 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [18f5 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18f6 06-12 02:15:28.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [18f7 06-12 02:15:28.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [18f8 06-12 02:15:28.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18e3 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > alive:4\272\372_\335z 3\314I\361`\211&\003b\000S\213" > alive: +peer1.org2.example.com | [18e4 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [18e5 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [18e6 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18e7 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [18e8 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18e9 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18ea 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18eb 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [18ed 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18ee 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18ef 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [18ec 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [18f0 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [18f1 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [18f2 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [18f3 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [18f4 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [18f5 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [18f6 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18f7 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [18f8 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18f9 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18fa 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [18fb 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [18fc 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [18fd 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [18fe 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [18ff 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1900 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1901 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1902 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1903 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1904 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1905 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1906 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1907 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1908 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [1909 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [190a 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [190b 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [190c 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [190d 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [190e 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [190f 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1910 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1911 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1912 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1913 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1914 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [1915 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1916 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer1.org2.example.com | [1917 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [1918 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1919 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [191a 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [191b 06-12 02:15:32.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org2.example.com | [191c 06-12 02:15:32.59 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org2.example.com | [191d 06-12 02:15:32.59 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org2.example.com | [191e 06-12 02:15:32.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [191f 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1920 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [1921 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1922 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1923 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 1 2 3] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1924 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1925 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1926 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1927 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1928 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1929 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18f9 06-12 02:15:28.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [18fa 06-12 02:15:28.52 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [18fb 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [18fc 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [18fd 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [18fe 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [18ff 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1901 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1902 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1900 06-12 02:15:28.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1903 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1904 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1905 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1906 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1907 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1908 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1909 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [190a 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [190b 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [190c 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [190d 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [19a8 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [19a9 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [19aa 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [19ab 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19ac 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [19ad 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [19ae 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [19af 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19b0 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [19b1 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [19b2 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [19b3 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3 4] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [19b4 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19b5 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [19b6 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [19b7 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [19b8 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [19b9 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [19ba 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [19bb 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [19bc 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [19bd 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [19be 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19bf 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [19c0 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a69 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1a6a 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a6b 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1a6c 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1a6d 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a6e 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a6f 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a70 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1a71 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a72 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a73 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a74 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1a75 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1a76 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1a77 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1a78 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1a79 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1a7a 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a7b 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1a7c 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a7d 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a7e 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a7f 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a80 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a81 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [192a 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [192b 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [192c 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [192d 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [192e 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [192f 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1930 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1931 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1932 06-12 02:15:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1933 06-12 02:15:32.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1934 06-12 02:15:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1935 06-12 02:15:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1936 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1937 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer1.org2.example.com | [1938 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer1.org2.example.com | [1939 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [193a 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [193b 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [193c 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [193d 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [193e 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [193f 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1940 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1941 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1942 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1943 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1944 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1945 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1946 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1947 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1948 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1949 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [194a 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [194b 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [194c 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [194d 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [194e 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [194f 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1951 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1950 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1952 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1953 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1954 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1955 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1956 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1957 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1958 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1959 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [195a 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [195b 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [195c 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [195d 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [195e 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [195f 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1960 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [1961 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1962 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > alive: +peer1.org2.example.com | [1963 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1964 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1965 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1966 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1967 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1968 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1969 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [196a 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [196b 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [196c 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [196d 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [196e 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [196f 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1970 06-12 02:15:33.81 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d +peer1.org1.example.com | [19c1 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [19c2 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19c3 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [19c4 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [19c5 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19c6 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [19c7 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [19c8 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [19c9 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [19ca 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [19cc 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19cb 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [19cd 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [19ce 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [19cf 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [19d0 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [19d1 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > alive:\023\002 y\374@\350h\243\270\303B\351\340\376\203\200\266\253`3h\006\203t\004c\013\330o\344\364Xg\226" secret_envelope: > +peer1.org1.example.com | [19d2 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +peer1.org1.example.com | [19d3 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [19d4 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [19d5 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19d6 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [19d7 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [19d8 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [19d9 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [19da 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [19db 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [19dc 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [19dd 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19de 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19df 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19e0 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [19e1 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19e2 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19e3 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19e4 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [19e5 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [19e6 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [19e7 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [19e8 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [19e9 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [19ea 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [19eb 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [19ec 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [19ed 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19ee 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [19ef 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [19f0 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [19f1 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [19f2 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [19f3 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19f4 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [19f5 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [19f6 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19f7 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19f8 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19f9 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [19fa 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [19fb 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19fc 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [19fd 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [19fe 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [19ff 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a00 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1a01 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1a02 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a03 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a04 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a05 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a06 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a07 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1a08 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1a09 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1a0a 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1a0b 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1a0c 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1a0d 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a0e 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1a0f 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [1a10 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1a11 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > alive: alive:\216\014\027X\332`z\264y\277\361" > +peer1.org1.example.com | [1a12 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a13 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a14 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a15 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a16 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a17 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a18 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a82 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a83 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a84 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1a85 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1a86 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [1a87 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1a88 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1a89 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1a8a 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1a8b 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a8c 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1a8d 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1a8e 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1a8f 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1a90 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1a91 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 102 but got ts: inc_num:1528769653227426900 seq_num:101 +peer0.org1.example.com | [1a92 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a93 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a94 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1a95 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a96 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a97 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1a98 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1a99 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 104 but got ts: inc_num:1528769652429776900 seq_num:103 +peer0.org1.example.com | [1a9a 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1a9b 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [190e 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [190f 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1910 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1911 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1912 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1913 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1914 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1915 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1916 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1917 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1918 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1919 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [191a 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [191b 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [191c 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [191d 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [191e 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [191f 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1920 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1921 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1922 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1923 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1924 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1971 06-12 02:15:33.81 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully +peer1.org2.example.com | [1972 06-12 02:15:33.81 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 | [1973 06-12 02:15:33.91 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer1.org2.example.com-exp02-1.0-ac79f954ea10befb402e8d87d56741bcfae7738c8fd82aee62f22874f759e30d +peer1.org2.example.com | [1974 06-12 02:15:34.56 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 | [1975 06-12 02:15:34.56 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) +peer1.org2.example.com | [1976 06-12 02:15:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +peer1.org2.example.com | [1977 06-12 02:15:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org2.example.com | [1978 06-12 02:15:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org2.example.com | [1979 06-12 02:15:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org2.example.com | [197a 06-12 02:15:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org2.example.com | [197b 06-12 02:15:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org2.example.com | [197c 06-12 02:15:34.59 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" +peer1.org2.example.com | [197d 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" +peer1.org2.example.com | [197e 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" +peer1.org2.example.com | [197f 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org2.example.com | [1980 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer1.org2.example.com | [1981 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [1982 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e28e27b8] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [1983 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e28e27b8] handling GET_STATE from chaincode +peer1.org2.example.com | [1984 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [e28e27b8] getting state for chaincode exp02, key a, channel businesschannel +peer1.org2.example.com | [1985 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [1986 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [e28e27b8] Completed GET_STATE. Sending RESPONSE +peer1.org2.example.com | [1987 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e28e27b8] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [1988 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [e28e27b8] notifying Txid:e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247, channelID:businesschannel +peer1.org2.example.com | [1989 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [198a 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247] Exit +peer1.org2.example.com | [198b 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [198c 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247] +peer1.org2.example.com | [198d 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][e28e27b8] Exit +peer1.org2.example.com | [198e 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][e28e27b8] Entry chaincode: name:"exp02" +peer1.org2.example.com | [198f 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][e28e27b8] escc for chaincode name:"exp02" is escc +peer1.org2.example.com | [1990 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247, chaincode: exp02} +peer1.org2.example.com | [1991 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247, chaincode: exp02} +peer1.org2.example.com | [1992 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][e28e27b8] Exit +peer1.org2.example.com | [1993 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [e28e27b8b299d189fa41dfcf1407e863890dadf6030c6e4dfd339461e0a13247] +peer1.org2.example.com | [1994 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49392 +peer1.org2.example.com | [1995 06-12 02:15:34.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [1996 06-12 02:15:34.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [1997 06-12 02:15:34.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [5] +peer1.org2.example.com | [1998 06-12 02:15:34.61 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] +peer1.org2.example.com | [1999 06-12 02:15:34.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [5] +peer1.org2.example.com | [199a 06-12 02:15:34.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +peer1.org2.example.com | [199b 06-12 02:15:34.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +peer1.org2.example.com | [199c 06-12 02:15:34.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +peer1.org2.example.com | [199d 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +peer1.org2.example.com | [199e 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [199f 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 +peer1.org2.example.com | [19a0 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [19a1 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [19a2 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [19a3 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [19a4 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [19a5 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [19a6 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [19a7 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [19a8 06-12 02:15:34.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [19a9 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [19aa 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [19ab 06-12 02:15:36.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [19ac 06-12 02:15:36.26 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [19ae 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [19b0 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [19b1 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [19ad 06-12 02:15:36.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [19af 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [19b2 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [19b3 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [19b4 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [19b5 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a19 06-12 02:15:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [1a1a 06-12 02:15:33.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1a1b 06-12 02:15:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1a1d 06-12 02:15:33.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1a1c 06-12 02:15:33.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a1f 06-12 02:15:33.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a20 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a21 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a22 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a23 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a25 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a1e 06-12 02:15:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [1a26 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1a24 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a28 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a27 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a29 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a2b 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a2c 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a2a 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a2d 06-12 02:15:33.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a2e 06-12 02:15:33.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a2f 06-12 02:15:33.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a30 06-12 02:15:33.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [1a31 06-12 02:15:33.32 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1925 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1926 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1927 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1928 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1929 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [192a 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [192b 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [192c 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [192d 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [192e 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 99 but got ts: inc_num:1528769653227426900 seq_num:98 +peer0.org2.example.com | [1930 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [192f 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [1932 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1933 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1934 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1935 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1936 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1937 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1938 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1939 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [193a 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [193b 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [193c 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [193d 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [193e 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1931 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [193f 06-12 02:15:28.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1940 06-12 02:15:28.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1941 06-12 02:15:28.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1942 06-12 02:15:28.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19b6 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19b7 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [19b8 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19bb 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [19bc 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [19b9 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [19ba 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19bd 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [19be 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [19bf 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [1a9c 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1a9d 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1a9e 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1a9f 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1aa0 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1aa1 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1aa2 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1aa3 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1aa4 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1aa5 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1aa6 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1aa7 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1aa8 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1aa9 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1aaa 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1aab 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1aac 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1aad 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1aae 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1aaf 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1ab0 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1ab1 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1ab2 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1ab3 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1a32 06-12 02:15:33.32 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1a33 06-12 02:15:33.32 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1a34 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a35 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a36 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a37 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a38 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a39 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a3a 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1a3b 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1a3c 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1a3d 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a3e 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a3f 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a40 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a41 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a42 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a43 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a44 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a45 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a46 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [19c0 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [19c1 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [19c2 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [19c3 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [19c4 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19c5 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [19c6 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [19c8 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [19c9 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [19ca 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 108 but got ts: inc_num:1528769652429776900 seq_num:107 +peer1.org2.example.com | [19c7 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [19cc 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [19cb 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19cd 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19ce 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [19cf 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [19d0 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [19d1 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [19d2 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [19d3 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [19d4 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19d5 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19d6 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [19d7 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19d8 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19d9 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19da 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [19db 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [19dc 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [19dd 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [19de 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [19df 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [19e0 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19e1 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [19e2 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [19e3 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [19e4 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19e5 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [19e6 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 106 but got ts: inc_num:1528769653227426900 seq_num:105 +peer1.org2.example.com | [19e7 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19e8 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19e9 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [19ea 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 108 but got ts: inc_num:1528769652429776900 seq_num:106 +peer1.org2.example.com | [19eb 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19ec 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19ed 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [19ee 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [19ef 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19f0 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [19f1 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [19f2 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [19f3 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [19f4 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [19f5 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [19f6 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [19f7 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [19f8 06-12 02:15:36.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [19f9 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [19fa 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [19fb 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [19fc 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [19fd 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [19fe 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [19ff 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1a01 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1a02 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1a03 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1a00 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a04 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a05 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a06 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a07 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a08 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a09 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a0a 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a0b 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a0c 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a0d 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a0e 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a0f 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a10 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a11 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a12 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a13 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a14 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a15 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a16 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a17 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a18 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a19 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a1a 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1a1b 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1a1c 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1a1d 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1a1e 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1a1f 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1a20 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1a21 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1a22 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [1a23 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1a24 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > alive: alive:\002;\210q\245\323l:\246\324\207\261u\333Xr[\270\363\007v\201\002 \001\003Sc\r\224[\377\033x\017\204\365\0260O\311\345\250\246<\304\r\237\337!\331?\316\333\342/" > +peer1.org2.example.com | [1a25 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a26 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a27 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a28 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a29 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1a2a 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a2b 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a2c 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a2d 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a2e 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1a2f 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1a30 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1a31 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1a32 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1a33 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1a34 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1a35 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1a36 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1a37 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [1a38 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1a39 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\333\320\002 <\250\201\332\355\\\306iM\350j\020\201\322\205\261Jl\214$\323P\254\267\337f\247\305\323\303\264\031" > > +peer1.org2.example.com | [1a3a 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a3b 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a3c 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a3d 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a3e 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a3f 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a40 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1a41 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a42 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1a43 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a45 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a44 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a47 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a46 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a48 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a49 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a4a 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a4c 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a4b 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org2.example.com | [1a4d 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1a4e 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1a4f 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a50 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a51 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1a52 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a53 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a54 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a55 06-12 02:15:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a56 06-12 02:15:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a57 06-12 02:15:36.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1a58 06-12 02:15:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1a59 06-12 02:15:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a5a 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a5b 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a5c 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a5d 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a5e 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1a5f 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1a60 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1a61 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a62 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1a64 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a65 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1a47 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a48 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1a49 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a4a 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a4b 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [1a4c 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1a4d 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [1a4e 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1a4f 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1a50 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1a51 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1a52 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a53 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1a54 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a55 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a56 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a57 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a58 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1a59 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a5a 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a5b 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1a5c 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a5d 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a5e 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1ab4 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ab5 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ab6 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1ab7 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1ab8 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1ab9 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1aba 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1abb 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1abc 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1abd 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1abe 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1abf 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1ac0 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ac1 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ac2 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ac3 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ac4 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [1ac5 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ac6 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1ac7 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1ac8 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1ac9 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1aca 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1acb 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1acc 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1acd 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ace 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1acf 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ad0 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ad1 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1ad2 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1ad3 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1ad4 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1ad5 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1ad6 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1ad7 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ad8 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ad9 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [1ada 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1adc 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1add 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1adb 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\023\002 y\374@\350h\243\270\303B\351\340\376\203\200\266\253`3h\006\203t\004c\013\330o\344\364Xg\226" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020i" signature:"0E\002!\000\365\375\237\371\321G\271\207\2714\233\005{u}\3229\222\"\245\333\317\301\037)\344\314}t\265x\325\002 r\2543\347\212\264\250\311A\000|\232\363\303\275\277\373/3\365\223\247\221aJ\022\324\377\335uj\350" > +peer0.org1.example.com | [1ade 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1adf 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ae0 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ae1 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ae2 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ae3 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ae4 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ae5 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ae6 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1ae7 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ae8 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ae9 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1aeb 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1aec 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1aed 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1aee 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1aef 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1af0 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1af1 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1af2 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1af3 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1af4 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1aea 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1af5 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1af6 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1af7 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1af8 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a60 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a5f 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a61 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a62 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1a63 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1a64 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 106 but got ts: inc_num:1528769652088169500 seq_num:104 +peer1.org1.example.com | [1a65 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a66 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a67 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1a68 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1a69 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1a6a 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1a6b 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1a6c 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1a6d 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a6e 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1a6f 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a71 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a72 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1a70 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a73 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a74 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a75 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a76 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1a77 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1a78 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1a79 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1a7a 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1a7b 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 106 but got ts: inc_num:1528769651824440500 seq_num:105 +peer1.org1.example.com | [1a7c 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a7d 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a7e 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1a7f 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 106 but got ts: inc_num:1528769652088169500 seq_num:105 +peer1.org1.example.com | [1a80 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a81 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a82 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1a83 06-12 02:15:33.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a84 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a85 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1a86 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1a87 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1a88 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1a89 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1a8a 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1a8b 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1a8c 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1a8e 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1a8d 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1a8f 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1a90 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a92 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a91 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1a93 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1a94 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:45982 +peer1.org1.example.com | [1a95 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42451ef90 +peer1.org1.example.com | [1a96 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [1a97 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [1a98 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org1.example.com | [1a99 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [1a9a 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [1a9b 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424502d20, header 0xc42451f2f0 +peer1.org1.example.com | [1a9c 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org1.example.com | [1a9d 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][dfcfb301] processing txid: dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47 +peer1.org1.example.com | [1a9e 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47] +peer1.org1.example.com | [1a9f 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer1.org1.example.com | [1aa0 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [1aa1 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47] +peer1.org1.example.com | [1aa2 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][dfcfb301] Entry chaincode: name:"exp02" +peer1.org1.example.com | [1aa3 06-12 02:15:35.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47,syscc=true,proposal=0xc424502d20,canname=lscc:1.2.0) +peer1.org1.example.com | [1aa4 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org1.example.com | [1aa5 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [1aa6 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcfb301]Received message TRANSACTION from peer +peer1.org1.example.com | [1aa7 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfcfb301] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [1aa8 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfcfb301] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [1aa9 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer1.org1.example.com | [1aaa 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dfcfb301] Sending GET_STATE +peer1.org1.example.com | [1aab 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfcfb301] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [1aac 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfcfb301] handling GET_STATE from chaincode +peer1.org1.example.com | [1aad 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [dfcfb301] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [1af9 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1afa 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1afb 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1afc 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1afd 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1afe 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1aff 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1b00 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b01 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b02 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b03 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b04 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1b05 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1b06 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1b07 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1b08 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1b09 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1b0a 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1b0b 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1b0c 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1b0d 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [1b0e 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1b0f 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020j" signature:"0E\002!\000\351\256/Q\220\000\234\000\004\253\022o\024\"\007D\326\223\261\354\200BG8\3637\372\350\273\211n\337\002 \002}7\225\376\260y\217\374\002\034,rR[z\0374\355k6\002v\337m/\245'~\353\017q" secret_envelope: > +peer0.org1.example.com | [1b10 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b11 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b12 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1b13 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1b14 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1b15 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b16 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1b17 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1b18 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1b19 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1b1a 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b1b 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1b1c 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1b1d 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44264 +peer0.org1.example.com | [1b1e 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428665350 +peer0.org1.example.com | [1b1f 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1b20 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [1b21 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [1b22 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [1b23 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [1b24 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428577c20, header 0xc4286656b0 +peer0.org1.example.com | [1b25 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [1b26 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][40ed21f2] processing txid: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad +peer0.org1.example.com | [1b27 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +peer0.org1.example.com | [1b28 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer0.org1.example.com | [1b29 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [1b2a 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +peer0.org1.example.com | [1b2b 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][40ed21f2] Entry chaincode: name:"exp02" +peer0.org1.example.com | [1b2c 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad,syscc=true,proposal=0xc428577c20,canname=lscc:1.2.0) +peer0.org1.example.com | [1b2d 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [1b2e 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [1b2f 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40ed21f2]Received message TRANSACTION from peer +peer0.org1.example.com | [1b30 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40ed21f2] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [1b31 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [40ed21f2] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [1b32 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer0.org1.example.com | [1b33 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40ed21f2] Sending GET_STATE +peer0.org1.example.com | [1b34 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [1b35 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling GET_STATE from chaincode +peer0.org1.example.com | [1b36 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [40ed21f2] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [1b37 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [1b38 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [1b39 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40ed21f2]Received message RESPONSE from peer +peer0.org1.example.com | [1b3a 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40ed21f2] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [1b3b 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [40ed21f2] before send +peer0.org1.example.com | [1b3c 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [40ed21f2] after send +peer0.org1.example.com | [1b3e 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40ed21f2] GetState received payload RESPONSE +peer0.org1.example.com | [1b3f 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40ed21f2] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [1b40 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [40ed21f2] send state message COMPLETED +peer0.org1.example.com | [1b41 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1b42 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [40ed21f2] notifying Txid:40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, channelID:businesschannel +peer0.org1.example.com | [1b43 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [1b44 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org1.example.com | [1b45 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] Entry chaincode: name:"exp02" version: 1.0 +peer0.org1.example.com | [1b46 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad,syscc=false,proposal=0xc428577c20,canname=exp02:1.0) +peer0.org1.example.com | [1b47 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer0.org1.example.com | [1b48 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [1b49 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [1b4a 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling GET_STATE from chaincode +peer0.org1.example.com | [1b4b 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [40ed21f2] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [1b4c 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [1b3d 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [40ed21f2] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [1b4d 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [1b4e 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [1b4f 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling GET_STATE from chaincode +peer0.org1.example.com | [1b50 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [40ed21f2] getting state for chaincode exp02, key b, channel businesschannel +peer0.org1.example.com | [1b51 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [1b52 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [1b53 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [1b54 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling PUT_STATE from chaincode +peer0.org1.example.com | [1b55 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [1b56 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer0.org1.example.com | [1b57 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling PUT_STATE from chaincode +peer0.org1.example.com | [1b58 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed PUT_STATE. Sending RESPONSE +peer0.org1.example.com | [1b59 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [1b5a 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [40ed21f2] notifying Txid:40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, channelID:businesschannel +peer0.org1.example.com | [1b5b 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [1b5c 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] Exit +peer0.org1.example.com | [1b5d 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [1b5e 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +peer0.org1.example.com | [1b5f 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][40ed21f2] Exit +peer0.org1.example.com | [1b60 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][40ed21f2] Entry chaincode: name:"exp02" +peer0.org1.example.com | [1b61 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][40ed21f2] escc for chaincode name:"exp02" is escc +peer0.org1.example.com | [1b62 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, chaincode: exp02} +peer0.org1.example.com | [1b63 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, chaincode: exp02} +peer0.org1.example.com | [1b64 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][40ed21f2] Exit +peer0.org1.example.com | [1b65 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +peer1.org2.example.com | [1a66 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a63 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a67 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a68 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a69 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1a6a 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a6b 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a6c 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a6d 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1a6e 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a6f 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1a70 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1a71 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a72 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a73 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1a74 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a75 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a76 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1a77 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1a78 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a79 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1a7b 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1a7a 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a7c 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1a7d 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes +peer1.org2.example.com | [1a7e 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a7f 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [1943 06-12 02:15:28.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1944 06-12 02:15:28.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 100 but got ts: inc_num:1528769651824440500 seq_num:99 +peer0.org2.example.com | [1945 06-12 02:15:28.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1946 06-12 02:15:28.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1947 06-12 02:15:28.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1948 06-12 02:15:28.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1949 06-12 02:15:28.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [194a 06-12 02:15:28.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [194b 06-12 02:15:28.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [194c 06-12 02:15:28.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [194d 06-12 02:15:28.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [194e 06-12 02:15:28.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [194f 06-12 02:15:28.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1950 06-12 02:15:28.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1951 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1952 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1953 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [1954 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [1955 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [1956 06-12 02:15:28.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1957 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1958 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1959 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [195a 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [195b 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [195c 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [195d 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [1b66 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44264 +peer0.org1.example.com | [1b67 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1b68 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b6b 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b69 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b6a 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b6c 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b6d 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b6e 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b6f 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b70 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b72 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b71 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b73 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b74 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b75 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b76 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b77 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b78 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b79 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b7a 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1b7b 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1b7c 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1b7d 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1aae 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [1aaf 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfcfb301] Completed GET_STATE. Sending RESPONSE +peer1.org1.example.com | [1ab0 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcfb301]Received message RESPONSE from peer +peer1.org1.example.com | [1ab1 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfcfb301] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [1ab2 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfcfb301] before send +peer1.org1.example.com | [1ab3 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfcfb301] after send +peer1.org1.example.com | [1ab5 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dfcfb301] GetState received payload RESPONSE +peer1.org1.example.com | [1ab6 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcfb301] Transaction completed. Sending COMPLETED +peer1.org1.example.com | [1ab7 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [dfcfb301] send state message COMPLETED +peer1.org1.example.com | [1ab8 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfcfb301] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1ab9 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [dfcfb301] notifying Txid:dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47, channelID:businesschannel +peer1.org1.example.com | [1aba 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [1abb 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [1abc 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47] Entry chaincode: name:"exp02" version: 1.0 +peer1.org1.example.com | [1abd 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47,syscc=false,proposal=0xc424502d20,canname=exp02:1.0) +peer1.org1.example.com | [1abe 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47,syscc=true,proposal=0xc424502d20,canname=lscc:1.2.0) +peer1.org1.example.com | [1abf 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org1.example.com | [1ac0 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [1ab4 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfcfb301] Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [1ac1 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcfb301]Received message TRANSACTION from peer +peer1.org1.example.com | [1ac2 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfcfb301] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [1ac3 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfcfb301] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [1ac4 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetDeploymentSpec +peer1.org1.example.com | [1ac5 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dfcfb301] Sending GET_STATE +peer1.org1.example.com | [1ac6 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfcfb301] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [1ac7 06-12 02:15:35.12 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfcfb301] handling GET_STATE from chaincode +peer1.org1.example.com | [1ac8 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [dfcfb301] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [1ac9 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [1aca 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfcfb301] Completed GET_STATE. Sending RESPONSE +peer1.org1.example.com | [1acb 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcfb301]Received message RESPONSE from peer +peer1.org1.example.com | [1acc 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfcfb301] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [1acd 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfcfb301] before send +peer1.org1.example.com | [1ace 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfcfb301] after send +peer1.org1.example.com | [1acf 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfcfb301] Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [1ad0 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [dfcfb301] GetState received payload RESPONSE +peer1.org1.example.com | [1ad1 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfcfb301] Transaction completed. Sending COMPLETED +peer0.org2.example.com | [195e 06-12 02:15:28.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [195f 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1960 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1961 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [1962 06-12 02:15:29.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1963 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1964 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1965 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1966 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1967 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1968 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1969 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [196a 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [196b 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [196c 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [196d 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [196e 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [196f 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [1970 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1972 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1973 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b7e 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1b7f 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1b80 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1b81 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1b82 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1b83 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [1b84 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1b85 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020k" signature:"0D\002 h\017O3V\374B\302\360\316v\374J\037\260\036\372\232\275}M\"\237\371a\024\037|;j\214\334\002 \004z?\313\\\212\354\270\311\374\232p\361c\256\234Z\236\030?\207\254\357\177H\363\202\333v\354i/" > +peer0.org1.example.com | [1b86 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b87 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b88 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1b89 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1b8a 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1b8b 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1b8c 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1b8d 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1b8e 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b8f 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b91 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b93 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b90 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b92 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1b94 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b95 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b97 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a81 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42351e840 env 0xc422a06ab0 txn 0 +peer1.org2.example.com | [1a82 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422a06ab0 +peer1.org2.example.com | [1a83 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +peer1.org2.example.com | [1a84 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [1a85 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [1a86 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org2.example.com | [1a87 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [1a88 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [1a89 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422e2c800, header channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +peer1.org2.example.com | [1a8a 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [1a8b 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [1a8c 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [1a8d 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org2.example.com | [1a8e 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +peer1.org2.example.com | [1a8f 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [1a90 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc422ef8400 +peer1.org2.example.com | [1a91 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [e72f5b32-f710-4872-81d0-af513fd2a697] +peer1.org2.example.com | [1a92 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [1a93 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [e72f5b32-f710-4872-81d0-af513fd2a697] +peer1.org2.example.com | [1a94 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin +peer1.org2.example.com | [1a95 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [1a96 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: +peer1.org2.example.com | [1a97 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad appears to be valid +peer1.org2.example.com | [1a98 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc422ef8400 +peer1.org2.example.com | [1a80 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [1a99 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [1ad2 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [dfcfb301] send state message COMPLETED +peer1.org1.example.com | [1ad3 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfcfb301] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [1ad4 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [dfcfb301] notifying Txid:dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47, channelID:businesschannel +peer1.org1.example.com | [1ad5 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [1ad6 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched +peer1.org1.example.com | [1ad7 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +peer1.org1.example.com | [1ad8 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 +peer1.org1.example.com | [1ad9 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 +peer1.org1.example.com | [1ada 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +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 | CORE_CHAINCODE_ID_NAME=exp02:1.0 +peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true +peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key +peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt +peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt +peer1.org1.example.com | [1adb 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock +peer1.org1.example.com | [1adc 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock +peer1.org1.example.com | [1add 06-12 02:15:35.13 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [1ade 06-12 02:15:35.13 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 | [1adf 06-12 02:15:35.14 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) +peer1.org1.example.com | [1ae0 06-12 02:15:35.14 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.org1.example.com | [1ae1 06-12 02:15:35.14 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 | [1ae2 06-12 02:15:35.14 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +peer1.org1.example.com | [1ae3 06-12 02:15:35.14 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [1ae4 06-12 02:15:35.15 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 | [1ae5 06-12 02:15:35.15 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU +peer1.org1.example.com | FROM hyperledger/fabric-baseos:amd64-0.4.8 +peer1.org1.example.com | ADD binpackage.tar /usr/local/bin +peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ +peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ +peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ +peer1.org1.example.com | org.hyperledger.fabric.version="1.2.0" \ +peer1.org1.example.com | org.hyperledger.fabric.base.version="0.4.8" +peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.2.0 +peer1.org1.example.com | [1ae6 06-12 02:15:35.16 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +peer1.org1.example.com | [1ae7 06-12 02:15:35.16 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental +peer1.org1.example.com | [1ae8 06-12 02:15:35.16 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 +peer1.org1.example.com | [1ae9 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1aea 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1aeb 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1aec 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1aed 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1aee 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1aef 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1af0 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1af1 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1af2 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1af3 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1af4 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1af5 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1af6 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1af7 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1af8 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [1af9 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1afa 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\221E\023cEy\256\212\254*k\330Y\305\332I,2\356\232H:]y\357" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020j" signature:"0E\002!\000\351\256/Q\220\000\234\000\004\253\022o\024\"\007D\326\223\261\354\200BG8\3637\372\350\273\211n\337\002 \002}7\225\376\260y\217\374\002\034,rR[z\0374\355k6\002v\337m/\245'~\353\017q" > alive: alive: +peer1.org1.example.com | [1afb 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1afc 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1afd 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1afe 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1aff 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b00 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1b01 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b96 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b98 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b99 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b9a 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b9b 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b9c 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b9d 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1b9e 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1b9f 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ba0 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ba1 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ba2 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [1ba3 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ba4 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1ba5 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1ba6 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ba7 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1ba8 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ba9 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org1.example.com | [1baa 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1a9a 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [1a9b 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +peer1.org2.example.com | [1a9c 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [1a9d 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +peer1.org2.example.com | [1a9e 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [1a9f 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer1.org2.example.com | [1aa0 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [1aa1 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org2.example.com | [1aa2 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org2.example.com | [1aa3 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org2.example.com | [1aa4 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [1aa5 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org2.example.com | [1aa6 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] marked as valid by state validator +peer1.org2.example.com | [1aa7 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [1aa8 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [1aa9 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [1aaa 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +peer1.org2.example.com | [1aab 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42351e840 env 0xc422a06ab0 txn 0 +peer1.org2.example.com | [1aac 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] +peer1.org2.example.com | [1aad 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xda, 0xe3, 0x9f, 0x6f, 0xc0, 0x2e, 0x93, 0x8e, 0x90, 0xdd, 0xb5, 0x7a, 0xe0, 0x7e, 0xe4, 0x67, 0xd8, 0x63, 0xcf, 0x55, 0x28, 0x99, 0x61, 0x9, 0xe7, 0xbc, 0x78, 0x2a, 0x92, 0xa3, 0xa1, 0x77} txOffsets= +peer1.org2.example.com | txId=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad locPointer=offset=70, bytesLength=2921 +peer1.org2.example.com | ] +peer1.org2.example.com | [1aae 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to index +peer1.org2.example.com | [1aaf 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx number:[0] ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to blockNumTranNum index +peer1.org2.example.com | [1ab0 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55533], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org2.example.com | [1ab1 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] +peer1.org2.example.com | [1ab2 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +peer1.org2.example.com | [1ab3 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +peer1.org2.example.com | [1ab4 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +peer1.org2.example.com | [1ab5 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [1ab6 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org2.example.com | [1ab7 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [1ab8 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org2.example.com | [1ab9 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org2.example.com | [1aba 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [1abb 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [6] +peer1.org2.example.com | [1abc 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] +peer1.org2.example.com | [1abe 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [6] +peer1.org2.example.com | [1abd 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +peer1.org2.example.com | [1abf 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org2.example.com | [1ac0 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org2.example.com | [1ac1 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [1ac2 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad +peer1.org2.example.com | [1ac3 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [1ac4 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [1ac5 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [1ac6 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [1ac7 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [1ac8 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [1ac9 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [1aca 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [1acb 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [1acc 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1acd 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1ace 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1acf 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1b02 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b03 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b04 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [1b05 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b06 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b07 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b08 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b09 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 3 4 2] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1b0a 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b0b 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1b0c 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b10 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1b0d 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b0e 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b12 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1b0f 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b11 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b13 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b14 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1b15 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b16 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b17 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b18 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b1a 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bab 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1bad 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1bac 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1baf 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1bae 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1bb0 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bb1 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1bb2 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bb3 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1bb4 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bb5 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bb6 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1bb7 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bb8 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1bb9 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1bba 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1bbb 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1bbc 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1bbd 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1bbe 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1971 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\270\233\014\356\326\002 ~\265\206G\023\231\321\316\352\243\206~\016Y\301{w*\332_{C~\324I\n\033\356\304\025\271\244" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020d" signature:"0E\002!\000\271\310\313\027\334\030u#\301M_\023W\007\005j\320\307\321\242\2573}\250>c,\010\265J\213\332\002 #\304\265\353,\346\275z\357\270E+\347\333;\360F\334\347\256q\303\204K\r\211\025:Z\340\262\376" > alive: alive:\352N\351\210\302Ba\002\003\263\310\002 z\201\302\3630\340\366\223B\332\034\3552\373\021\232\354\336\324\037\337\205r\347~\337.~:\207\276_" > +peer0.org2.example.com | [1974 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1975 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1976 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1977 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1978 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [197a 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [197b 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [197c 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [197d 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [197e 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1979 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1980 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [197f 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1981 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1982 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1983 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1984 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1986 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1985 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1987 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1988 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1989 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [198a 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [198b 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [198c 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [198d 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [198e 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [198f 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1990 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1991 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1992 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1993 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1994 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1995 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1996 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1997 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1998 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1999 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [199a 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [199b 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [199c 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [199d 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [199e 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [199f 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [19a0 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [19a1 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1b19 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b1b 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b1c 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1b1d 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1b1e 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1b1f 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1b20 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1b21 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1b22 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1b23 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1b24 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [1b25 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1b26 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > alive: > +peer1.org1.example.com | [1b27 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b28 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1b29 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b2a 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b2b 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b2c 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1b2d 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1b2e 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b2f 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1b30 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b31 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b32 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b33 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1bbf 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1bc0 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1bc1 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1bc2 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1bc3 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1bc4 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1bc5 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1bc6 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1bc7 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1bc8 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1bc9 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1bca 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1bcb 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1bcc 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1bcd 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1bce 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bcf 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1bd1 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bd0 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1bd3 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1bd4 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1bd2 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bd5 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1bd6 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1bd7 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1bd8 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1bd9 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bdb 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1bda 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1bdc 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1bdd 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1bde 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1bdf 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1be0 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1be1 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 106 but got ts: inc_num:1528769653227426900 seq_num:105 +peer0.org1.example.com | [1be2 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1be3 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1be4 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1be5 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 108 but got ts: inc_num:1528769651824440500 seq_num:107 +peer0.org1.example.com | [1be6 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1be7 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1be8 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1be9 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bea 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1beb 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1bec 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1bed 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1bee 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1bef 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1bf0 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1bf1 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org1.example.com | [1bf2 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1bf3 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1bf4 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1bf5 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1bf6 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1bf7 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1bf8 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1bf9 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [1bfa 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1bfb 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1bfc 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1bfd 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1bfe 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1bff 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1c00 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c01 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c02 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1c03 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1c04 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c05 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c06 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c07 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [1c08 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1c09 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c0a 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c0c 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c0d 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1c0e 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1c0f 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1c10 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1c11 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1c12 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1c13 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1c14 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1c15 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1c16 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [1c17 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1c18 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\002;\210q\245\323l:\246\324\207\261u\333Xr[\270\363\007v\201\002 \001\003Sc\r\224[\377\033x\017\204\365\0260O\311\345\250\246<\304\r\237\337!\331?\316\333\342/" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020m" signature:"0D\002 \022\013\014R\000/\366J\236S\375\320s\002\303\321\032\345(\222\034\216\030{\030\274\310j\222\333\265\\\002 _1\016m\227#S\3432\261\336\275/s\274C\212w\340p\340\337\254\342\277.N\320\0303\205O" > +peer0.org1.example.com | [1c19 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c1a 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1c0b 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1c1b 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c1c 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c1d 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1c1e 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c1f 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c20 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1c21 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1c22 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1c23 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1c24 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c25 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c26 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1c27 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1c28 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c29 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c2a 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1c2b 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1c2c 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1c2d 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1c2e 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1c2f 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1c30 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1c31 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1c32 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1c33 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1c34 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c36 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1c35 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c37 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1c38 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c39 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c3a 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1c3b 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1c3c 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c3d 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1c3e 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer0.org1.example.com | [1c3f 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org1.example.com | [1c40 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [1c41 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [1c42 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4289154a0 env 0xc428845f80 txn 0 +peer0.org1.example.com | [1c43 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc428845f80 +peer0.org1.example.com | [1c44 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +peer0.org1.example.com | [1c45 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [1c46 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [1c47 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [1c49 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [1c48 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1c4a 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes +peer0.org1.example.com | [1c4b 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1c4c 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [1c4d 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4286b9800, header channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +peer0.org1.example.com | [1c4e 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [1c4f 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [1c50 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [1c51 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org1.example.com | [1c52 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +peer0.org1.example.com | [1c53 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org1.example.com | [1c54 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc42238b400 +peer0.org1.example.com | [1c55 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [56918186-005c-41f9-86a3-d81225acf1e4] +peer0.org1.example.com | [1c56 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [1c57 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [56918186-005c-41f9-86a3-d81225acf1e4] +peer0.org1.example.com | [1c58 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin +peer0.org1.example.com | [1c59 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [1c5a 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: +peer0.org1.example.com | [1c5b 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad appears to be valid +peer0.org1.example.com | [1c5c 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc42238b400 +peer0.org1.example.com | [1c5d 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4289154a0 env 0xc428845f80 txn 0 +peer0.org1.example.com | [1c5e 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [1c5f 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [1c60 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +peer0.org1.example.com | [1c61 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [1c62 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +peer0.org1.example.com | [1c63 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [1c64 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org1.example.com | [1c65 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [1c66 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [1c67 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [1c68 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [1c69 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [1c6a 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [1c6b 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] marked as valid by state validator +peer0.org1.example.com | [1c6c 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org1.example.com | [1c6d 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [1c6e 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [1c6f 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +peer0.org1.example.com | [1c70 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] +peer0.org1.example.com | [1c71 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xda, 0xe3, 0x9f, 0x6f, 0xc0, 0x2e, 0x93, 0x8e, 0x90, 0xdd, 0xb5, 0x7a, 0xe0, 0x7e, 0xe4, 0x67, 0xd8, 0x63, 0xcf, 0x55, 0x28, 0x99, 0x61, 0x9, 0xe7, 0xbc, 0x78, 0x2a, 0x92, 0xa3, 0xa1, 0x77} txOffsets= +peer0.org1.example.com | txId=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad locPointer=offset=70, bytesLength=2921 peer0.org1.example.com | ] -peer1.org1.example.com | [1a1e 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c34 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1b5a 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to index -peer1.org2.example.com | [1e95 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1a1f 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c35 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org1.example.com | [1b5b 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx number:[0] ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to blockNumTranNum index -peer1.org2.example.com | [1e96 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1a20 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c36 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org1.example.com | [1b5c 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55530], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org2.example.com | [1e97 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1a21 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c37 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org1.example.com | [1b5d 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -peer1.org2.example.com | [1e98 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1a22 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c38 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1b5e 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] -peer1.org2.example.com | [1e99 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1c39 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [1a23 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1b5f 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -peer1.org2.example.com | [1e9a 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1c3a 05-31 05:22:56.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c3b 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c3c 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1c3d 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c3e 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c3f 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1a24 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1c40 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1a25 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1b60 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -peer1.org2.example.com | [1e9b 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1a26 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1c41 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1b61 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [1e9c 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1a27 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1c42 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1b62 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [1e9d 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1a28 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1c43 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1b63 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org2.example.com | [1e9e 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1a29 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1c44 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1b64 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [1e9f 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a2a 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1c45 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1b65 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [1ea0 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a2b 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1c46 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1b66 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] -peer1.org2.example.com | [1ea1 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a2c 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [1c47 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1b67 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -peer1.org2.example.com | [1ea2 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a2d 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1c48 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1b68 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [1ea3 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a2f 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c49 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1b69 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org2.example.com | [1ea4 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a30 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c4a 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b6a 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [1ea5 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [1a2e 05-31 05:22:54.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020i" signature:"0E\002!\000\313R\252\374\212\320~\344\312&'\222\252\245M\037\203\314\252E-\344\r\277\235[P\206\023J\310\374\002 +\342E4\244H\030'F\177\245\371_\324Qd\277A}\327.\034\273,\"\267Ctl\272\\\237" > alive: alive: alive: -peer0.org2.example.com | [1c4c 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ea6 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b6b 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 -peer1.org1.example.com | [1a31 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c4b 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ea7 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b6c 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [1a32 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c4d 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ea8 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b6d 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [1a33 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c4e 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ea9 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1b6e 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [1a34 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c4f 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1eaa 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b6f 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [1a35 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c50 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1eab 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b70 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [1a36 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c51 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1eac 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b71 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [1a37 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 1 2 3] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1c52 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ead 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b72 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [1a38 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c53 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1eae 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b73 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [1a39 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [1c54 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1eaf 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1b74 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [1a3a 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c55 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1eb0 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1b75 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b76 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c56 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1eb1 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1b77 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a3b 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c57 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1eb2 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1b78 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [1b79 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c58 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1eb3 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1b7a 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a3c 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c59 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1eb4 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1b7b 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a3d 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c5a 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1eb5 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1eb6 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1a3e 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c5b 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1eb7 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org1.example.com | [1a3f 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b7c 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c5c 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1eb8 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1a40 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b7d 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c5d 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1eb9 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\203\001" signature:"0E\002!\000\212\241=\031\033\202eC\255\001\317\364]\344\273=\342\002=#\2073\371\375(4\021\0020\006\032\330\002 T\000\347\211\335\211S\246\22188\253\247\210/\236\336\250e\177\352\222\214\014\270\306N\234.\365\n\303" > alive: alive: -peer1.org1.example.com | [1a41 05-31 05:22:55.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b7e 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1c5f 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1eba 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a42 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b7f 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1c60 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ebb 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a43 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b80 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1c61 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1ebc 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1a44 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b81 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1c62 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1ebd 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a45 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b82 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1c63 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1ebe 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a46 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b83 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1b84 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1ebf 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a47 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c64 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1ec0 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b85 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1a48 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c65 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1ec1 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b86 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1a49 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1c66 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1ec2 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b87 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1a4a 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1c67 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1ec3 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b88 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1a4b 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c68 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1ec4 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ec5 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a4c 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c5e 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ec6 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b89 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020p" signature:"0D\002 P\235y!\215?o\373@\t\272\220\225\262\210\234\231\037 \010\t{\\\356Hh\203\016\326\347\202\314\002 V\016\006\353\207=\241\214=!\020\314\306\221\261X\362Gn\\\214\232Z\013)h\272\3539\037\341\361" > -peer1.org1.example.com | [1a4d 05-31 05:22:55.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c69 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1ec7 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b8a 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a4e 05-31 05:22:55.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c6a 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c6c 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ec8 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ec9 05-31 05:23:15.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [1b8b 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c6d 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1eca 05-31 05:23:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1b8c 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1a4f 05-31 05:22:55.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c6b 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ecb 05-31 05:23:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b8d 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a50 05-31 05:22:55.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ecc 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b8e 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a51 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a52 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c6f 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1c6e 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1c70 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1ecd 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b8f 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a53 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c71 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ece 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b90 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ecf 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [1ed0 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b91 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c72 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c73 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ed1 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b92 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a54 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1c74 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ed2 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b93 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a55 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1c75 05-31 05:22:56.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ed3 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b94 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer1.org1.example.com | [1a56 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1c76 05-31 05:22:56.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1ed4 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b95 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1a57 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1c77 05-31 05:22:56.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1ed5 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1b96 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a58 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org2.example.com | [1c78 05-31 05:22:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [1ed6 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1b97 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1a59 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1c79 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer1.org2.example.com | [1ed7 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1b98 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a5a 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c7a 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1ed8 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1b99 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1a5b 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c7b 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1ed9 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1b9a 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a5c 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c7c 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1eda 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1b9b 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a5d 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c7d 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1edb 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1b9c 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a5e 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c7f 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1edc 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1b9d 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a5f 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a60 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1edd 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1b9e 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a61 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ede 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1c80 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1b9f 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a62 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ee0 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1c7e 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ba0 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a63 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ee1 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1c81 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ba1 05-31 05:22:58.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer1.org1.example.com | [1a64 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ee2 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > alive: alive: -peer0.org2.example.com | [1c82 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer0.org1.example.com | [1ba2 05-31 05:22:58.97 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1a65 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ee3 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ee4 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c83 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer0.org1.example.com | [1ba3 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ba4 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a66 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1c84 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [1ba5 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a67 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1edf 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1c86 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422fb0cc0 env 0xc42326f380 txn 0 -peer0.org1.example.com | [1ba6 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ba7 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a68 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ee5 05-31 05:23:15.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [1c87 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42326f380 -peer0.org1.example.com | [1ba8 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a69 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ee6 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1c88 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -peer0.org1.example.com | [1ba9 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a6a 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ee7 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1c89 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [1baa 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a6b 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ee8 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1c8a 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [1bab 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a6c 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1ee9 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c8b 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [1bac 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 1] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org1.example.com | [1a6d 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1eea 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c85 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [1bad 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a6e 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1eeb 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c8c 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [1bae 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a6f 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1eec 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c8d 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [1baf 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a70 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1eed 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c8e 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42248e800, header channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -peer0.org1.example.com | [1bb0 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1a71 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1eee 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c8f 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [1bb1 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a72 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1eef 05-31 05:23:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c90 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [1bb2 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1a73 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ef0 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1c91 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [1bb3 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1a74 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1ef1 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1c92 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org1.example.com | [1bb4 05-31 05:22:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a75 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ef2 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c93 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -peer0.org1.example.com | [1bb5 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a76 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ef3 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c94 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [1a77 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1bb6 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ef4 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1c95 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423b16000 -peer1.org1.example.com | [1a78 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1bb7 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [1ef5 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c96 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [722dfc40-a7b7-4978-85da-d0defa3a8a9a] -peer1.org1.example.com | [1a79 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1bb8 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ef6 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1c97 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [1a7a 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1bb9 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ef7 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1c98 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [722dfc40-a7b7-4978-85da-d0defa3a8a9a] -peer1.org1.example.com | [1a7b 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1bba 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1ef8 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1c99 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin -peer1.org1.example.com | [1a7c 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1bbb 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1ef9 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1c9a 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [1a7d 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1bbc 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1efa 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c9b 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: -peer1.org1.example.com | [1a7e 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1bbd 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1efb 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c9c 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 appears to be valid -peer1.org1.example.com | [1a7f 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1bbe 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [1efc 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1c9e 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4798 bytes, seq: 5}, Envelope: 4828 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1bbf 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1a80 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1efd 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c9f 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4798 bytes, seq: 5}, Envelope: 4828 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ca0 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1c9d 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423b16000 -peer0.org2.example.com | [1ca1 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422fb0cc0 env 0xc42326f380 txn 0 -peer0.org2.example.com | [1ca2 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [1bc0 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1ca3 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [1bc1 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1a81 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1efe 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ca4 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer0.org1.example.com | [1bc2 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1a82 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1eff 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ca5 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [1bc3 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1a83 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1f00 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org2.example.com | [1ca6 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -peer0.org1.example.com | [1bc4 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1a85 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f01 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ca7 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [1bc5 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org1.example.com | [1a86 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f02 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org1.example.com | [1bc6 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1ca8 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org1.example.com | [1a87 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f03 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ca9 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [1bc7 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020q" signature:"0E\002!\000\257\304f\260\033Tu\224\303%c\311*U\213\263\304'\"\006`\235\221\001\231.\243xSJ\013\220\002 \030\352\342\002\347\202\370X\341C\245\315\224\334u\201,\344\331h\004\343\266\211\267(\324\2603\302\252\207" secret_envelope: > -peer1.org1.example.com | [1a84 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1f04 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [1caa 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org1.example.com | [1bc8 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a88 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1f05 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1cab 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -peer0.org1.example.com | [1bc9 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a89 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1cac 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [1f06 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1bca 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a8a 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1cad 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [1f07 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [1bcb 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a8b 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cae 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [1f08 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1bcc 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a8c 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1caf 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] marked as valid by state validator -peer1.org2.example.com | [1f09 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1bcd 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1a8d 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1cb0 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [1f0a 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1bce 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1a8e 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1cb1 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [1f0b 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1bcf 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1a8f 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1cb2 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [1f0c 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1bd0 05-31 05:22:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [1a90 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1cb3 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -peer1.org2.example.com | [1f0d 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1bd1 05-31 05:22:59.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1a91 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1cb4 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] -peer1.org2.example.com | [1f0e 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [1bd2 05-31 05:22:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org1.example.com | [1a92 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1cb5 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x45, 0x52, 0x18, 0xd7, 0x37, 0x89, 0x65, 0x1a, 0xb0, 0x67, 0x41, 0xba, 0xca, 0x59, 0x80, 0x29, 0xb2, 0xe6, 0xf9, 0xbe, 0xb4, 0x2b, 0x95, 0xd6, 0x5d, 0xd7, 0x85, 0x87, 0x85, 0xf9, 0xd7, 0xcc} txOffsets= -peer1.org2.example.com | [1f0f 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1bd3 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1a93 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | txId=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 locPointer=offset=70, bytesLength=2922 -peer1.org2.example.com | [1f10 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:x\264V.v\222$}\350\201\364\200\212\254\375" secret_envelope: > -peer0.org1.example.com | [1bd4 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [1a94 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | ] -peer1.org2.example.com | [1f11 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes -peer0.org1.example.com | [1bd6 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1a96 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1cb6 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to index -peer1.org2.example.com | [1f12 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1bd5 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a95 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cb7 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx number:[0] ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to blockNumTranNum index -peer1.org2.example.com | [1f13 05-31 05:23:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [1bd7 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a97 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [1cb8 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55530], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org2.example.com | [1f14 05-31 05:23:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1bd8 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1a98 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1cb9 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -peer1.org2.example.com | [1f15 05-31 05:23:16.43 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer0.org1.example.com | [1bd9 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1cba 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] -peer1.org1.example.com | [1a99 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1f16 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1bda 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1cbb 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -peer1.org1.example.com | [1a9a 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1f17 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1bdb 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1cbc 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -peer1.org1.example.com | [1a9b 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1f18 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1bdd 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1cbd 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [1a9c 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1f19 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [1a9d 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 109 but got ts: inc_num:1527744091840124700 seq_num:108 -peer1.org2.example.com | [1f1a 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cbe 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [1bdc 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a9e 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1f1b 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1bde 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1bdf 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1a9f 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cbf 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org2.example.com | [1f1c 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1aa0 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1be0 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1cc0 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [1f1d 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1aa1 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1be1 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1cc1 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [1f1e 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1be2 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1cc2 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] -peer1.org2.example.com | [1f1f 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1aa2 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1be3 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1cc3 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -peer1.org2.example.com | [1f20 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1aa3 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1be4 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1cc4 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org2.example.com | [1f21 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1aa4 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1be5 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1cc5 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org2.example.com | [1f22 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1aa5 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1be6 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1cc6 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [1f23 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1aa6 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1be7 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1cc7 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 -peer0.org2.example.com | [1cc8 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [1f24 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [1f25 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [1aa7 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1aa8 05-31 05:22:55.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1aa9 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1aaa 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1aab 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1cc9 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [1aac 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1be8 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1aad 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1f26 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1cca 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [1be9 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1bea 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1aae 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1f27 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ccb 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [1beb 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1aaf 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1f28 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1ccc 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [1bec 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ab1 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f29 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ccd 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [1bed 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ab0 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f2a 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1cce 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [1bee 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ab2 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1f2b 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ccf 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [1bef 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ab3 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1f2c 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cd0 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [1bf0 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ab4 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f2d 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1cd1 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1bf1 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ab5 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f2e 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ab6 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1bf2 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f2f 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1cd2 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ab7 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1bf3 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f30 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1cd3 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ab8 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1bf4 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1f31 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cd4 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [1ab9 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1bf5 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [1f32 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1cd5 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1aba 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1bf6 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1f33 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [1cd6 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1abb 05-31 05:22:55.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1bf7 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1cd7 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f34 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1abc 05-31 05:22:55.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1bf8 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1cd8 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f35 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1abd 05-31 05:22:55.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1abe 05-31 05:22:55.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1bf9 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1f36 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1abf 05-31 05:22:55.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1bfa 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1cd9 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f37 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1ac0 05-31 05:22:55.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1bfb 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f38 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1cda 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1ac1 05-31 05:22:55.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1bfc 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1f39 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1cdb 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1ac2 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1bfd 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f3a 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1cdc 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1ac3 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1bfe 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1f3b 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1cdd 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1ac4 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1bff 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1f3c 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1cde 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1ac5 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org1.example.com | [1c00 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1f3d 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1cdf 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1ac6 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c01 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1f3e 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ce0 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1ac7 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1c03 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f3f 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1ce1 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1c02 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1f40 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ce2 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c04 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1ac8 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ac9 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ce3 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org2.example.com | [1f41 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1c05 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1aca 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ce4 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1f42 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c06 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1acb 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ce5 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > -peer1.org2.example.com | [1f43 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c07 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1acc 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1ce6 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f44 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c08 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1acd 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1ce7 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f45 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c09 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1ace 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1acf 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1ad0 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1ad1 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1ad2 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ce8 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f46 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1c0a 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ad3 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1ce9 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f47 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c0b 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1ad4 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1cea 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f48 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c0c 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1c0d 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ad5 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1f49 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c0f 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ad6 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > alive:\312d`]\021\214NZD\332\331\256S\361U" secret_envelope: > -peer0.org2.example.com | [1ceb 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f4a 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1c0e 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1ad7 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ad8 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ad9 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cec 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c10 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1ada 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c11 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 113 but got ts: inc_num:1527744090808810100 seq_num:111 -peer0.org2.example.com | [1ced 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1adb 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1c12 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1cee 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [1f4b 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1adc 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c13 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c14 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1cf0 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c15 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1add 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1f4c 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [1cf1 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c16 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ade 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cef 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f4d 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c17 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1adf 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1cf2 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f4e 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c18 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1ae0 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1cf3 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f4f 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c19 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ae1 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1cf4 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f50 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c1a 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ae2 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1cf5 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f51 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1c1b 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1ae3 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1cf6 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f52 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c1c 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1ae4 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1cf7 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f53 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c1d 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1ae5 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ae6 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1ae7 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cf8 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ae8 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cf9 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f54 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c1e 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1ae9 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1cfa 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [1f55 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1c1f 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1aea 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1cfc 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f56 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1c20 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1aeb 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1cfd 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f57 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1c21 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1aec 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1cfe 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f58 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1c22 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1aed 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1cfb 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f59 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1c23 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [1aee 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1d00 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f5a 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1aef 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c24 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1cff 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f5b 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1af0 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c25 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d01 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f5c 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1af1 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c26 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1d02 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f5d 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1af2 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c27 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1d03 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f5e 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1af3 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c28 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1d04 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f5f 05-31 05:23:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1c29 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1af4 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1d05 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d06 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d07 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1af5 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1af6 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d08 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer0.org2.example.com | [1d09 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [1d0a 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c2a 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1af7 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c2b 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [1af8 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1f61 05-31 05:23:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d0b 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [1d0c 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c2c 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1af9 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1f60 05-31 05:23:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1d0d 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c2d 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1afa 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [1f63 05-31 05:23:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [1d0e 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d0f 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d10 05-31 05:22:59.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1d11 05-31 05:22:59.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d12 05-31 05:22:59.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d13 05-31 05:22:59.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d14 05-31 05:22:59.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d15 05-31 05:22:59.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d16 05-31 05:22:59.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d17 05-31 05:22:59.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d18 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d19 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d1a 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [1d1b 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d1c 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d1d 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d1e 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d1f 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d20 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1afb 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1afc 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1afd 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1afe 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1aff 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1b00 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1b01 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1b02 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [1b03 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1b04 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1b05 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1b06 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1b07 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1b08 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1b09 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1f62 05-31 05:23:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f64 05-31 05:23:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f66 05-31 05:23:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c2e 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1c2f 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1c30 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1c31 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c32 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1c33 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1c34 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1c35 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c36 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1c37 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c38 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1c39 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c3a 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1d21 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d22 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1d23 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1d24 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1d25 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1d26 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1d27 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1d28 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1d29 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1d2a 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1d2b 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [1d2c 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d2d 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020o" signature:"0E\002!\000\327$\024\355#.\000\215\374z4vH\2224\342\231\033A\223>?d\234\0025\027F\261T\262\332\002 v\317\217\200P\260\300\350\"\306s\313^\225L\215;K\307\240]\023\260\341\352V!$I\332*\204" > alive: alive: -peer0.org2.example.com | [1d2e 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d2f 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d30 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [1d31 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [1d32 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d33 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d34 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d35 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d36 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1d37 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d38 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d39 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d3a 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d3b 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1d3c 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d3d 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d3e 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d3f 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d40 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d41 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1d42 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1d43 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1d44 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1d45 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1d46 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1d47 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1d48 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1d49 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1d4a 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1d4b 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d4d 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d4c 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > alive: alive: -peer0.org2.example.com | [1d4e 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d4f 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1d50 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d51 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1d52 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d54 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [1d55 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d53 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d56 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d57 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d58 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d59 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d5a 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d5b 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d5c 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d5d 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d5e 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d5f 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes -peer0.org1.example.com | [1c3b 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1c3c 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1c3d 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1c3e 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1c3f 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1c40 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1c41 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c42 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [1c43 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1c44 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020s" signature:"0E\002!\000\356b\227\337\224z;\305}\3017!9\357\243N\322\007wd\303\274\246\244\236L \255\242\034\3773\002 ,\331F\302\233L\272&\347+\267\231)\321\2338\216\274%\265\301 +\215\000\212\257(:k\265\304" > -peer0.org1.example.com | [1c45 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1c46 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c47 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c48 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c49 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1c4a 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c4b 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c4c 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c4d 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1c4e 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1b0a 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1b0b 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1b0c 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1b0d 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1b0e 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1b0f 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1b10 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1b11 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [1b12 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1b13 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > alive: alive: alive:,\034\201\376u\2034\303PSjM/\002 J\256Kz\256r?k_U\302\201@\311\3118\326\3517EG\220\006`\262 X}k\2566\022" > -peer1.org1.example.com | [1b14 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1b15 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b16 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [1b17 05-31 05:22:55.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [1b18 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1b19 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1b1a 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b1b 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b1c 05-31 05:22:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [1b1d 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1b1e 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1b1f 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1b20 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b21 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b22 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b23 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b24 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b25 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b26 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b27 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b28 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1b29 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1b2a 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b2b 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b2c 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1b2d 05-31 05:22:56.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b2e 05-31 05:22:56.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1b2f 05-31 05:22:56.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1b30 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1b31 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1b33 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b32 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b34 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b35 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b36 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55382 -peer1.org1.example.com | [1b37 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422570600 -peer1.org1.example.com | [1b38 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [1b39 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [1b3a 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org1.example.com | [1b3b 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [1b3c 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [1b3d 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422de9180, header 0xc422570960 -peer1.org1.example.com | [1b3e 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org1.example.com | [1b3f 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][28e05e5c] processing txid: 28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16 -peer1.org1.example.com | [1b40 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16] -peer1.org1.example.com | [1b41 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer1.org1.example.com | [1b42 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [1b43 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16] -peer1.org1.example.com | [1b44 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][28e05e5c] Entry chaincode: name:"exp02" -peer1.org1.example.com | [1b45 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16,syscc=true,proposal=0xc422de9180,canname=lscc:1.2.0) -peer1.org1.example.com | [1b46 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org1.example.com | [1b47 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [1b48 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28e05e5c]Received message TRANSACTION from peer -peer1.org1.example.com | [1b49 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [28e05e5c] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [1b4a 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [28e05e5c] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org1.example.com | [1b4b 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer1.org1.example.com | [1b4c 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [28e05e5c] Sending GET_STATE -peer1.org1.example.com | [1b4d 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [28e05e5c] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [1b4e 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [28e05e5c] handling GET_STATE from chaincode -peer1.org1.example.com | [1b4f 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [28e05e5c] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org1.example.com | [1b50 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [1b51 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [28e05e5c] Completed GET_STATE. Sending RESPONSE -peer1.org1.example.com | [1b52 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28e05e5c]Received message RESPONSE from peer -peer1.org1.example.com | [1b53 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [28e05e5c] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [1b54 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [28e05e5c] before send -peer1.org1.example.com | [1b55 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [28e05e5c] after send -peer1.org1.example.com | [1b56 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [28e05e5c] Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [1b57 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [28e05e5c] GetState received payload RESPONSE -peer1.org2.example.com | [1f67 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f68 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1f65 05-31 05:23:16.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f69 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f6a 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f6b 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1f6c 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1f6d 05-31 05:23:18.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [1f6e 05-31 05:23:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1f6f 05-31 05:23:18.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [1f70 05-31 05:23:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1f71 05-31 05:23:18.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [1f72 05-31 05:23:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1f73 05-31 05:23:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f74 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f76 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f75 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f77 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f78 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f79 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f7a 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f7b 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f7c 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f7d 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f7e 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f7f 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f80 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f81 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f82 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f83 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f84 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1f86 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f87 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f85 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1f88 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f89 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f8a 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [1f8b 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f8c 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1f8d 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f8e 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f8f 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f90 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1f91 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1f92 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1f93 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1f94 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [1f95 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [1f96 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [1f97 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1f98 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [1f99 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1f9a 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1f9c 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1f9d 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1f9b 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [1f9e 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1f9f 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [1fa0 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1fa1 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1fa2 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1fa3 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1fa4 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [1fa5 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [1fa6 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1fa7 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [1fa8 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1d60 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d61 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d62 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d63 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d64 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d65 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d66 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d67 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d68 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1d69 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d6a 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d6b 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d6c 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d6d 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d6e 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1d6f 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d71 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d70 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d72 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d73 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d74 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d75 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1d76 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1d77 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1d78 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1d79 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1d7a 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1d7b 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1d7c 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1d7d 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1d7e 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1d7f 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1d80 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1d81 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1d82 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1d83 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1d84 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1d85 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1d86 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1d87 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1d88 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1c4f 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1c50 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1c51 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1c52 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1c53 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1c54 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c55 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1c56 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1c57 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c58 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c59 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c5a 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c5b 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c5c 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1c5d 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c5e 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c5f 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c60 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c61 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1c62 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c63 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c64 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c65 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c66 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c67 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [1c68 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org2.example.com | [1d89 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1d8a 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1d8b 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1d8c 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1d8d 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1d8e 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1d8f 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1d90 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1d91 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1d92 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d93 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1d94 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1d95 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1d96 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1d97 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1d98 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1d99 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1d9a 05-31 05:22:59.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1d9b 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [1d9c 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1d9d 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1d9e 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1d9f 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1da0 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1b58 05-31 05:22:56.67 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28e05e5c] Transaction completed. Sending COMPLETED -peer1.org1.example.com | [1b59 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [28e05e5c] send state message COMPLETED -peer1.org1.example.com | [1b5a 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [28e05e5c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1b5b 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [28e05e5c] notifying Txid:28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16, channelID:businesschannel -peer1.org1.example.com | [1b5c 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [1b5d 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org1.example.com | [1b5e 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16] Entry chaincode: name:"exp02" version: 1.0 -peer1.org1.example.com | [1b5f 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16,syscc=false,proposal=0xc422de9180,canname=exp02:1.0) -peer1.org1.example.com | [1b60 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16,syscc=true,proposal=0xc422de9180,canname=lscc:1.2.0) -peer1.org1.example.com | [1b61 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org1.example.com | [1b62 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [1b63 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28e05e5c]Received message TRANSACTION from peer -peer1.org1.example.com | [1b64 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [28e05e5c] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [1b65 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [28e05e5c] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org1.example.com | [1b66 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetDeploymentSpec -peer1.org1.example.com | [1b67 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [28e05e5c] Sending GET_STATE -peer1.org1.example.com | [1b68 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [28e05e5c] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [1b69 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [28e05e5c] handling GET_STATE from chaincode -peer1.org1.example.com | [1b6a 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [28e05e5c] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org1.example.com | [1b6b 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [1b6c 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [28e05e5c] Completed GET_STATE. Sending RESPONSE -peer1.org1.example.com | [1b6d 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28e05e5c]Received message RESPONSE from peer -peer1.org1.example.com | [1b6e 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [28e05e5c] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [1b6f 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [28e05e5c] before send -peer1.org1.example.com | [1b70 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [28e05e5c] after send -peer1.org1.example.com | [1b71 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [28e05e5c] Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [1b72 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [28e05e5c] GetState received payload RESPONSE -peer1.org1.example.com | [1b73 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [28e05e5c] Transaction completed. Sending COMPLETED -peer1.org1.example.com | [1b74 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [28e05e5c] send state message COMPLETED -peer1.org1.example.com | [1b75 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [28e05e5c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [1b76 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [28e05e5c] notifying Txid:28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16, channelID:businesschannel -peer1.org1.example.com | [1b77 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch.getDeploymentSpec.GetChaincodeDeploymentSpec.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [1b78 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched -peer1.org1.example.com | [1b79 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer1.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -peer1.org2.example.com | [1fa9 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [1faa 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1fab 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1fac 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1fad 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [1faf 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [1fae 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1fb0 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1fb1 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [1fb2 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [1fb3 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1fb4 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [1fb5 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [1fb6 05-31 05:23:18.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [1fb7 05-31 05:23:18.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1fb8 05-31 05:23:18.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [1fb9 05-31 05:23:18.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [1fba 05-31 05:23:18.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [1fbb 05-31 05:23:18.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [1fbc 05-31 05:23:18.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [1fbd 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1fbe 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1fbf 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1fc0 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1fc1 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [1fc2 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1fc3 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1fc4 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1fc5 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [1fc6 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [1fc7 05-31 05:23:19.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1fc8 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [1fc9 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1fca 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49128 -peer1.org2.example.com | [1fcb 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42390a360 -peer1.org2.example.com | [1fcc 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [1fcd 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [1fce 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer1.org2.example.com | [1fcf 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [1fd0 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [1fd1 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42429d090, header 0xc42390a6c0 -peer1.org2.example.com | [1fd2 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org2.example.com | [1fd3 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][0a003647] processing txid: 0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c -peer1.org2.example.com | [1fd4 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c] -peer1.org2.example.com | [1fd5 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer1.org2.example.com | [1fd6 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [1fd7 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c] -peer1.org2.example.com | [1fd8 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][0a003647] Entry chaincode: name:"exp02" -peer1.org2.example.com | [1fd9 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c,syscc=true,proposal=0xc42429d090,canname=lscc:1.2.0) -peer1.org2.example.com | [1fda 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org2.example.com | [1fdb 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [1fdc 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a003647]Received message TRANSACTION from peer -peer1.org2.example.com | [1fdd 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a003647] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [1fde 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [0a003647] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org2.example.com | [1fdf 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer1.org2.example.com | [1fe0 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0a003647] Sending GET_STATE -peer1.org2.example.com | [1fe1 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0a003647] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [1fe2 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0a003647] handling GET_STATE from chaincode -peer1.org2.example.com | [1fe3 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [0a003647] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [1fe4 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [1fe5 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0a003647] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [1fe6 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a003647]Received message RESPONSE from peer -peer1.org2.example.com | [1fe7 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0a003647] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [1fe8 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [0a003647] before send -peer1.org2.example.com | [1fe9 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [0a003647] after send -peer1.org2.example.com | [1fea 05-31 05:23:19.37 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [0a003647] Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [1feb 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [0a003647] GetState received payload RESPONSE -peer1.org2.example.com | [1fec 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0a003647] Transaction completed. Sending COMPLETED -peer1.org2.example.com | [1fed 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [0a003647] send state message COMPLETED -peer1.org2.example.com | [1fee 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0a003647] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1fef 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [0a003647] notifying Txid:0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c, channelID:businesschannel -peer1.org2.example.com | [1ff0 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [1ff1 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org2.example.com | [1ff2 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c] Entry chaincode: name:"exp02" version: 1.0 -peer1.org2.example.com | [1ff3 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c,syscc=false,proposal=0xc42429d090,canname=exp02:1.0) -peer1.org2.example.com | [1ff4 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer1.org2.example.com | [1ff5 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [1ff6 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0a003647] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [1ff7 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0a003647] handling GET_STATE from chaincode -peer1.org2.example.com | [1ff8 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [0a003647] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [1ff9 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [1ffa 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [0a003647] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [1ffb 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0a003647] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [1ffc 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [0a003647] notifying Txid:0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c, channelID:businesschannel -peer1.org2.example.com | [1ffd 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [1ffe 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c] Exit -peer1.org1.example.com | [1b7a 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 -peer1.org1.example.com | [1b7b 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer1.org1.example.com:7052 -peer1.org1.example.com | [1b7c 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: -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 | CORE_CHAINCODE_ID_NAME=exp02:1.0 -peer1.org1.example.com | CORE_PEER_TLS_ENABLED=true -peer1.org1.example.com | CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key -peer1.org1.example.com | CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt -peer1.org1.example.com | CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -peer1.org1.example.com | [1b7d 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock -peer1.org1.example.com | [1b7e 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock -peer1.org1.example.com | [1b7f 05-31 05:22:56.68 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Cleanup container dev-peer1.org1.example.com-exp02-1.0 -peer1.org1.example.com | [1b80 05-31 05:22:56.69 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 | [1b81 05-31 05:22:56.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.stopInternal -> DEBU Kill container dev-peer1.org1.example.com-exp02-1.0 (No such container: dev-peer1.org1.example.com-exp02-1.0) -peer1.org1.example.com | [1b82 05-31 05:22:56.69 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.org1.example.com | [1b83 05-31 05:22:56.69 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 | [1b84 05-31 05:22:56.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -peer1.org1.example.com | [1b85 05-31 05:22:56.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 -peer1.org1.example.com | [1b86 05-31 05:22:56.69 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 | [1b87 05-31 05:22:56.69 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU -peer1.org1.example.com | FROM hyperledger/fabric-baseos:amd64-0.4.8 -peer1.org1.example.com | ADD binpackage.tar /usr/local/bin -peer1.org1.example.com | LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ -peer1.org1.example.com | org.hyperledger.fabric.chaincode.id.version="1.0" \ -peer1.org1.example.com | org.hyperledger.fabric.chaincode.type="GOLANG" \ -peer1.org1.example.com | org.hyperledger.fabric.version="1.2.0" \ -peer1.org1.example.com | org.hyperledger.fabric.base.version="0.4.8" -peer1.org1.example.com | ENV CORE_CHAINCODE_BUILDLEVEL=1.2.0 -peer1.org1.example.com | [1b88 05-31 05:22:56.69 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -peer1.org1.example.com | [1b89 05-31 05:22:56.69 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental -peer1.org1.example.com | [1b8a 05-31 05:22:56.69 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 -peer1.org1.example.com | [1b8b 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b8c 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b8d 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1b8e 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1b8f 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b90 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b91 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1b92 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1b93 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1b94 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1b95 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1b96 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1b97 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1b98 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1b99 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1b9a 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1b9b 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b9c 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b9d 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1b9e 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1b9f 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ba0 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ba1 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1ba2 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ba3 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ba4 05-31 05:22:56.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1ba5 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ba6 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ba7 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1ba9 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1baa 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1ba8 05-31 05:22:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1bab 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bac 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bad 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1bae 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [1fff 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [2000 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c] -peer1.org2.example.com | [2001 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][0a003647] Exit -peer1.org2.example.com | [2002 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][0a003647] Entry chaincode: name:"exp02" -peer1.org2.example.com | [2003 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][0a003647] escc for chaincode name:"exp02" is escc -peer1.org2.example.com | [2004 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c, chaincode: exp02} -peer1.org2.example.com | [2005 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c, chaincode: exp02} -peer1.org2.example.com | [2006 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][0a003647] Exit -peer1.org2.example.com | [2007 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [0a0036472b18ef05d6f9f98d7ee38cf653c1f6f226513b376707e2414abfae0c] -peer1.org2.example.com | [2008 05-31 05:23:19.38 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49128 -peer1.org2.example.com | [2009 05-31 05:23:19.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [200a 05-31 05:23:19.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [200b 05-31 05:23:19.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [200c 05-31 05:23:19.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [200d 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49130 -peer1.org2.example.com | [200e 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423890540 -peer1.org2.example.com | [200f 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [2010 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [2011 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer1.org2.example.com | [2012 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [2013 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [2014 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423994fa0, header 0xc4238908a0 -peer1.org2.example.com | [2015 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org2.example.com | [2016 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][55fed17c] processing txid: 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 -peer1.org2.example.com | [2017 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -peer1.org2.example.com | [2018 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer1.org2.example.com | [2019 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [201a 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -peer1.org2.example.com | [201b 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][55fed17c] Entry chaincode: name:"exp02" -peer1.org2.example.com | [201c 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5,syscc=true,proposal=0xc423994fa0,canname=lscc:1.2.0) -peer1.org2.example.com | [201d 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org2.example.com | [201e 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [201f 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55fed17c]Received message TRANSACTION from peer -peer1.org2.example.com | [2020 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55fed17c] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [2021 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [55fed17c] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org2.example.com | [2022 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer1.org2.example.com | [2023 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55fed17c] Sending GET_STATE -peer1.org2.example.com | [2024 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [55fed17c] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [2025 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] handling GET_STATE from chaincode -peer1.org2.example.com | [2026 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [55fed17c] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [2027 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [2028 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [2029 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55fed17c]Received message RESPONSE from peer -peer1.org2.example.com | [202a 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [55fed17c] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [202b 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [55fed17c] before send -peer1.org2.example.com | [202c 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [55fed17c] after send -peer1.org2.example.com | [202d 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [55fed17c] Received RESPONSE, communicated (state:ready) -peer1.org2.example.com | [202e 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [55fed17c] GetState received payload RESPONSE -peer1.org2.example.com | [202f 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [55fed17c] Transaction completed. Sending COMPLETED -peer1.org2.example.com | [2030 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [55fed17c] send state message COMPLETED -peer1.org2.example.com | [2031 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [55fed17c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [2032 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [55fed17c] notifying Txid:55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, channelID:businesschannel -peer1.org2.example.com | [2033 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [2034 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer1.org2.example.com | [2035 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] Entry chaincode: name:"exp02" version: 1.0 -peer0.org1.example.com | [1c69 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c6a 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1c6b 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c6c 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c6d 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c6e 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1c6f 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1c70 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1c71 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1c72 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1c73 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1c74 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1c75 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c76 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c77 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c78 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1c79 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c7a 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c7b 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c7c 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1c7d 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1c7f 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c7e 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c80 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c81 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c82 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c83 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1c84 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c85 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1c86 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c87 05-31 05:23:01.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [1c88 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1c89 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1c8a 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c8b 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1c8c 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c8d 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c8f 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c8e 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c90 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1c91 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c92 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1c93 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1c94 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c95 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1c96 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1c97 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1c98 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1c99 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1c9a 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1c9b 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1c9c 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1c9d 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1c9e 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1c9f 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1ca0 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ca2 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ca1 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1baf 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bb0 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bb1 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1bb2 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1bb3 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1bb4 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1bb5 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1bb6 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1bb7 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1bb8 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1bb9 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1bba 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1bbb 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bbc 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1bbd 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bbe 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1bbf 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bc0 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bc1 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1bc2 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1bc3 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bc4 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1bc5 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bc6 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bc7 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1bc8 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1bc9 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1bca 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1bcb 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] -peer1.org1.example.com | [1bcc 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] -peer1.org1.example.com | [1bcd 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [1bce 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [1bcf 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423815340 env 0xc42380b290 txn 0 -peer1.org1.example.com | [1bd0 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42380b290 -peer1.org1.example.com | [1bd1 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -peer1.org1.example.com | [1bd2 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [1bd3 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [1bd4 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org1.example.com | [1bd5 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [1bd6 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [1bd7 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423b3e000, header channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -peer1.org1.example.com | [1bd8 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [1bd9 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [1bda 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [1bdb 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org1.example.com | [1bdc 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -peer1.org1.example.com | [1bdd 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [1bde 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423c72800 -peer1.org1.example.com | [1bdf 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [2fb04b65-b954-42a3-8aad-ead0b1397f6b] -peer1.org1.example.com | [1be0 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [1be1 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [2fb04b65-b954-42a3-8aad-ead0b1397f6b] -peer1.org1.example.com | [1be2 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin -peer1.org1.example.com | [1be3 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [1be4 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: -peer0.org2.example.com | [1da1 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1da2 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1da3 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1da4 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1da5 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1da6 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 115 but got ts: inc_num:1527744091618763800 seq_num:114 -peer0.org2.example.com | [1da7 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1da8 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1da9 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1daa 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1dab 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1dac 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dad 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1dae 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 114 but got ts: inc_num:1527744090808810100 seq_num:112 -peer0.org2.example.com | [1daf 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1db0 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1db1 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1db2 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1db3 05-31 05:22:59.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1db4 05-31 05:23:00.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1db5 05-31 05:23:00.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1db6 05-31 05:23:00.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1db7 05-31 05:23:00.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1db8 05-31 05:23:00.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1db9 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [2036 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5,syscc=false,proposal=0xc423994fa0,canname=exp02:1.0) -peer1.org2.example.com | [2037 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer1.org2.example.com | [2038 05-31 05:23:19.54 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [2039 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [55fed17c] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [203a 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] handling GET_STATE from chaincode -peer1.org2.example.com | [203b 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [55fed17c] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [203c 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [203d 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [203e 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [55fed17c] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [203f 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] handling GET_STATE from chaincode -peer1.org2.example.com | [2040 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [55fed17c] getting state for chaincode exp02, key b, channel businesschannel -peer1.org2.example.com | [2041 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org2.example.com | [2042 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [2043 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [55fed17c] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [2044 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] handling PUT_STATE from chaincode -peer1.org2.example.com | [2045 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [2046 05-31 05:23:19.55 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [55fed17c] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -peer1.org2.example.com | [2047 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] handling PUT_STATE from chaincode -peer1.org2.example.com | [2048 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [55fed17c] Completed PUT_STATE. Sending RESPONSE -peer1.org2.example.com | [2049 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [55fed17c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org2.example.com | [204a 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [55fed17c] notifying Txid:55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, channelID:businesschannel -peer1.org2.example.com | [204b 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [204c 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] Exit -peer1.org2.example.com | [204d 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [204e 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -peer1.org2.example.com | [204f 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][55fed17c] Exit -peer1.org2.example.com | [2050 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][55fed17c] Entry chaincode: name:"exp02" -peer1.org2.example.com | [2051 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][55fed17c] escc for chaincode name:"exp02" is escc -peer1.org2.example.com | [2052 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, chaincode: exp02} -peer1.org2.example.com | [2053 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, chaincode: exp02} -peer1.org2.example.com | [2054 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][55fed17c] Exit -peer0.org1.example.com | [1ca3 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ca4 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ca5 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ca6 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1ca7 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ca8 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ca9 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1caa 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1cab 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1cac 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cad 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1cae 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1caf 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cb0 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cb1 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1be5 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 appears to be valid -peer1.org1.example.com | [1be6 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423c72800 -peer1.org1.example.com | [1be7 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423815340 env 0xc42380b290 txn 0 -peer1.org1.example.com | [1be8 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [1be9 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [1bea 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -peer1.org1.example.com | [1beb 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [1bec 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -peer1.org1.example.com | [1bed 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [1bee 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org1.example.com | [1bef 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [1bf0 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org1.example.com | [1bf1 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org1.example.com | [1bf2 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org1.example.com | [1bf3 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [1bf4 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org1.example.com | [1bf5 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] marked as valid by state validator -peer1.org1.example.com | [1bf6 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [1bf7 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [1dba 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dbb 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1dbc 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1dbd 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dbe 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dbf 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1dc0 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1dc1 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1dc2 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1dc3 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1dc4 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1dc5 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1dc6 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1dc7 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1dc9 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1dc8 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dca 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dcb 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dcc 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1dce 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dcf 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1dd0 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dd1 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1dcd 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1dd2 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2055 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -peer1.org2.example.com | [2056 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49130 -peer1.org2.example.com | [2057 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2058 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2059 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [205a 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [205b 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [205c 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [205d 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [205e 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [205f 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2060 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2061 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2062 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [2063 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2064 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [2065 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2066 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2068 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2069 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [206a 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [206b 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [206c 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [206d 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [206e 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [206f 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2070 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2071 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2072 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [2073 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2067 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2075 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org2.example.com | [2076 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2077 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [2078 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2074 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\263w\241\002 2P\231c3\236T\250>\370\212G|:S\214\264\374\211Q\376\371\220H\357\355\324%!\217\311)" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\210\001" signature:"0E\002!\000\333\317B\326R\357\337\0304\025vQV*gW\\\202\213\350\245\344\242\366\223Wv\240\243\\\320\244\002 =5\263o\252a\204t\220g\245S\216\017P\264$\322\t\267\021\007\033\30632R\363\213-\266v" > alive: alive: -peer1.org2.example.com | [2079 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [207a 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [207b 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [207c 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [207d 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [207e 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [207f 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [2080 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2081 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org2.example.com | [2082 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org2.example.com | [2083 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1bf8 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [1bf9 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -peer1.org1.example.com | [1bfa 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4798 bytes, seq: 5}, Envelope: 4828 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1bfb 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4798 bytes, seq: 5}, Envelope: 4828 bytes, Signature: 0 bytes -peer1.org1.example.com | [1bfc 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1bfd 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] -peer1.org1.example.com | [1bfe 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x45, 0x52, 0x18, 0xd7, 0x37, 0x89, 0x65, 0x1a, 0xb0, 0x67, 0x41, 0xba, 0xca, 0x59, 0x80, 0x29, 0xb2, 0xe6, 0xf9, 0xbe, 0xb4, 0x2b, 0x95, 0xd6, 0x5d, 0xd7, 0x85, 0x87, 0x85, 0xf9, 0xd7, 0xcc} txOffsets= -peer1.org1.example.com | txId=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 locPointer=offset=70, bytesLength=2922 -peer1.org1.example.com | ] -peer1.org1.example.com | [1bff 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to index -peer1.org1.example.com | [1c00 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx number:[0] ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to blockNumTranNum index -peer1.org1.example.com | [1c01 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55530], isChainEmpty=[false], lastBlockNumber=[5] -peer1.org1.example.com | [1c02 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -peer1.org1.example.com | [1c03 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] -peer1.org1.example.com | [1c04 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -peer1.org1.example.com | [1c05 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -peer1.org1.example.com | [1c06 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [1c07 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c08 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c09 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c0a 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [1c0b 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c0c 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c0d 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c0e 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cb2 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [1cb3 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cb4 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cb5 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cb7 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cb6 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cb8 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1cb9 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1cba 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1cbb 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1cbc 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1cbd 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1cbe 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1cbf 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1cc0 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1cc1 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [1cc2 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1cc4 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1dd3 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dd4 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1dd5 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1dd6 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dd7 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1dd8 05-31 05:23:01.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [1dd9 05-31 05:23:01.41 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [1dda 05-31 05:23:01.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [1ddb 05-31 05:23:01.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1ddc 05-31 05:23:01.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ddd 05-31 05:23:01.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1dde 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ddf 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1de0 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1de1 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1de2 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1de3 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1de4 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1de5 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1de6 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1de7 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1de8 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1de9 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1dea 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1deb 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c0f 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c10 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c11 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1c12 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1c13 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1c14 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1c15 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1c16 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1c17 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1c18 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1c19 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1c1a 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1c1c 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c1d 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c1b 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020o" signature:"0E\002!\000\327$\024\355#.\000\215\374z4vH\2224\342\231\033A\223>?d\234\0025\027F\261T\262\332\002 v\317\217\200P\260\300\350\"\306s\313^\225L\215;K\307\240]\023\260\341\352V!$I\332*\204" > alive: alive: alive: -peer1.org1.example.com | [1c1e 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c1f 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c20 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c21 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c22 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c23 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2084 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2085 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2086 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2087 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2088 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2089 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [208a 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [208b 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [208c 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [208d 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [208e 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2090 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [2091 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2092 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > alive: alive:\263w\241\002 2P\231c3\236T\250>\370\212G|:S\214\264\374\211Q\376\371\220H\357\355\324%!\217\311)" > alive:\310\233%\334\272\022\346\333@\373jd\276\231\352\317\271\002 :\246w\226\352\243W\\\r\027\351\220\223\030\355\313\341\372SnN\034Y\377\004wu\001c33\336" > -peer1.org2.example.com | [2093 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [2094 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [208f 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2095 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2096 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2097 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2098 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2099 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\311\217\303%W\274\200e,v\352`9\301\303.\004\2672'{\323%G:\376\002 \030\332[\233jg\354\272R\301\2340Lw\225\255\031L\033\324\245\261\263c\035\220>\324>\333\036\001" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [209a 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [209b 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\311\217\303%W\274\200e,v\352`9\301\303.\004\2672'{\323%G:\376\002 \030\332[\233jg\354\272R\301\2340Lw\225\255\031L\033\324\245\261\263c\035\220>\324>\333\036\001" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [209c 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [209d 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [209e 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [209f 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [20a0 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [20a1 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [20a2 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [20a3 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [20a4 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [20a5 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [20a6 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [20a7 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\311\217\303%W\274\200e,v\352`9\301\303.\004\2672'{\323%G:\376\002 \030\332[\233jg\354\272R\301\2340Lw\225\255\031L\033\324\245\261\263c\035\220>\324>\333\036\001" > > alive:]\203\303%\337\215\236w\337O@\313\034\356\224\306\242\0224\215\267\201\322" secret_envelope: > -peer1.org2.example.com | [20a8 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org2.example.com | [20a9 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [20aa 05-31 05:23:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [1dec 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ded 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1dee 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1def 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1df0 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1df1 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1df2 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1df3 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1df4 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1df5 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1df6 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1df7 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1df8 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1df9 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1dfb 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1dfc 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1dfa 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1dfd 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1dfe 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1dff 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1e00 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e01 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e02 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1c24 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org1.example.com | [1c25 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c26 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c27 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c28 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c29 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c2a 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c2b 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c2c 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c2d 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c2e 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c2f 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c30 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c31 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c32 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1c33 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c34 05-31 05:22:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1c35 05-31 05:22:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c36 05-31 05:22:59.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c37 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c38 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c39 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cc3 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020u" signature:"0D\002 u\003\034o\013\023\253s\365\340\310W\231\375\227~5\321~\214\275\003\212[\316\255f2\345 $\311\002 ST\372{\301\210)L\032\262\346>2)\276\270\004\256ou\025m\206\030d\257\302\030\321\332\237\334" > -peer0.org1.example.com | [1cc5 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1cc6 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [1cc8 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cc7 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cc9 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1cca 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ccb 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ccc 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ccd 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cce 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ccf 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cd0 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cd1 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cd2 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cd3 05-31 05:23:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cd4 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1cd5 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1cd6 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cd7 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1cd8 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cd9 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cda 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cdb 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cdc 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cdd 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cde 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cdf 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1ce0 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ce1 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ce2 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [20ab 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [20ac 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [20ad 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [20ae 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [20af 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [20b0 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [20b1 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [20b2 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [20b3 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [20b4 05-31 05:23:21.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [20b5 05-31 05:23:21.40 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [20b6 05-31 05:23:21.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [20b7 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [20b8 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [20b9 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [20ba 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4794 bytes, seq: 6}, Envelope: 4824 bytes, Signature: 0 bytes -peer1.org2.example.com | [20bb 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [20bc 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [20bd 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [20be 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4244b77a0 env 0xc4244ab9b0 txn 0 -peer1.org2.example.com | [20bf 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4244ab9b0 -peer1.org2.example.com | [20c0 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -peer1.org2.example.com | [20c1 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [20c2 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [20c3 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org2.example.com | [1e03 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1e04 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1e05 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1e06 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1e07 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1e08 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1e09 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1e0a 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1e0b 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e0c 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e0d 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1e0e 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e0f 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e10 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e11 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1e12 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1e13 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e14 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e15 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1e16 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1e17 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1e18 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e19 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e1a 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e1b 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e1c 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [1c3a 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c3b 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c3c 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c3d 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c3e 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c3f 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c40 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c41 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c42 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c43 05-31 05:22:59.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c44 05-31 05:22:59.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1c45 05-31 05:22:59.15 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1c46 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c47 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c48 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c49 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c4a 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c4b 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c4c 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c4d 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c4e 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c4f 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1c50 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1c51 05-31 05:22:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c52 05-31 05:22:59.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1c53 05-31 05:22:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1c54 05-31 05:22:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c55 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [1c56 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1c57 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [1c58 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c59 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c5a 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1c5b 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1c5d 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c5c 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1c5e 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c5f 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c60 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c62 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c61 05-31 05:22:59.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c64 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c63 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c65 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c67 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c68 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1c66 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c6a 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c6b 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c6c 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c69 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1c6e 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1c6d 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c70 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c71 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c72 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c73 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c74 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c75 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c76 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c77 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1c78 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1c79 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1c7a 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1c6f 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c7c 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c7b 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [1c7d 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1c7e 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c7f 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [1c81 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1c82 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c83 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c84 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c85 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c80 05-31 05:22:59.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1c86 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1c87 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1c88 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1c89 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1c8a 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1c8c 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c8d 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c8b 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c8f 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1c90 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1c8e 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c91 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1c92 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1c94 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c93 05-31 05:22:59.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1c95 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1c96 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1c97 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1c98 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1c99 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1c9a 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1c9b 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 113 but got ts: inc_num:1527744091618763800 seq_num:112 -peer1.org1.example.com | [1c9c 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1c9d 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1c9e 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1c9f 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ca0 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ca1 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1ca2 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1ca3 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1ca4 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1ca5 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1ca6 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1ca7 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1ca8 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ca9 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1cab 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1cac 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1cad 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ce3 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ce4 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ce5 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1ce6 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ce7 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ce8 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ce9 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cea 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1ceb 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1cec 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1ced 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1cee 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1cef 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1cf0 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1cf1 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1cf2 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1cf3 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1cf4 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1cf6 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cf7 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1cf8 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cf9 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cfa 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1cf5 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020v" signature:"0D\002 0.u\336\325G\274\334/h:\346\326t\363n\252}_\371\225\213\344\320\261\007\021\276\271\310\306\272\002 SK\266\276x\323+\274\371\264\217\032\311;k\"\304?f\362]\212\326\352\202a$C\364\315\005\033" secret_envelope: > -peer0.org1.example.com | [1cfb 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [1cfc 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1cfd 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1cfe 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1cff 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1d00 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1d01 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1d03 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d04 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d05 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1d06 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1d02 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1d07 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d08 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d09 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d0a 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d0b 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [20c4 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [20c5 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [20c6 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc424487000, header channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -peer1.org2.example.com | [20c7 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org2.example.com | [20c8 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org2.example.com | [20c9 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org2.example.com | [20ca 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org2.example.com | [20cb 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -peer1.org2.example.com | [20cc 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org2.example.com | [20cd 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc4236e3000 -peer1.org2.example.com | [20ce 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [4e8b5142-7276-4ebe-8770-d217d0e2b3df] -peer1.org2.example.com | [20cf 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [20d0 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [4e8b5142-7276-4ebe-8770-d217d0e2b3df] -peer1.org2.example.com | [20d1 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin -peer1.org2.example.com | [20d2 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org2.example.com | [20d3 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: -peer1.org2.example.com | [20d4 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 appears to be valid -peer1.org2.example.com | [20d5 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc4236e3000 -peer1.org2.example.com | [20d7 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [20d8 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [20d9 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -peer1.org2.example.com | [20da 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [20db 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -peer1.org2.example.com | [20dc 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [20dd 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org2.example.com | [20de 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [20df 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer1.org2.example.com | [20e0 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org2.example.com | [20e1 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer1.org2.example.com | [20e2 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org2.example.com | [20e3 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org2.example.com | [20e4 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] marked as valid by state validator -peer1.org2.example.com | [20e5 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [20e6 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [20e7 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [20e8 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -peer1.org2.example.com | [20d6 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4244b77a0 env 0xc4244ab9b0 txn 0 -peer1.org2.example.com | [20e9 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [20ea 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [20eb 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [20ec 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [20ed 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [20ee 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [20ef 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] -peer1.org2.example.com | [20f0 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1e1d 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1e1e 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1e20 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e1f 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1e21 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e22 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e23 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e24 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e25 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e26 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e27 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e28 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e29 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1e2a 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e2b 05-31 05:23:02.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" secret_envelope:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" secret_envelope:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" secret_envelope: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1e30 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1e31 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [1e32 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1e33 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1e34 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1e35 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1e36 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1e37 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1e38 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [1e39 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1e3a 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" secret_envelope: > -peer0.org2.example.com | [1e3b 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e3c 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e3d 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e3e 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e3f 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e40 05-31 05:23:03.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e41 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e42 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [1e43 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e44 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e45 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e46 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e47 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e48 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e49 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e4a 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e4b 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e4c 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e4d 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e4e 05-31 05:23:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e4f 05-31 05:23:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e50 05-31 05:23:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e51 05-31 05:23:03.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1e52 05-31 05:23:03.47 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1e53 05-31 05:23:03.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e54 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e55 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e56 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e57 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e58 05-31 05:23:03.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e59 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e5a 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e5b 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [1e5c 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e5d 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e5e 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e5f 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e60 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e61 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1e62 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1e63 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1e64 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1e65 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1e66 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1e67 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1e68 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1e69 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [1e6a 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1e6b 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020t" signature:"0E\002!\000\247\305\031uA\306\256\022>\030\242\327\325f3\020\r\365\305\\/!h\366j\nQ\023\341\321w\004\002 \037\351z\305\350\177<\273\3227<3\013\016j\340\006\371\365\tf7\"\327\312!$wp\\\017\250" > alive:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > alive: -peer0.org2.example.com | [1e6c 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e6d 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e6e 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e6f 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e70 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e71 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e72 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e73 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e74 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1e75 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e76 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d0c 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d0d 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d0e 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d0f 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d10 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d11 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1d12 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1d13 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d14 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1d15 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1d16 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d17 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1d18 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d19 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1d1a 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d1b 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d1c 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d1e 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d1d 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d1f 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d20 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1d21 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1d22 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1d23 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1d24 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1d25 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1d26 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d27 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d28 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1d29 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d2a 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d2b 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d2c 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1d2d 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d2e 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d2f 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1d30 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1d31 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1d32 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1d33 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1d34 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1d35 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d36 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1d38 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d37 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e77 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e78 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e79 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1e7a 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e7b 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e7c 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e7d 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e7e 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e7f 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1e80 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1e81 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1e82 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1e83 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1e84 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1e85 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1e86 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1e87 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1e88 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1e89 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1e8b 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1caa 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cae 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1caf 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1cb0 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 112 but got ts: inc_num:1527744090808810100 seq_num:111 -peer1.org1.example.com | [1cb1 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1cb2 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1cb3 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1cb4 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1cb5 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1cb6 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1cb7 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1cb8 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1cb9 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1cba 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1cbb 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1cbc 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1cbd 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1cbe 05-31 05:22:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1cbf 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cc0 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cc1 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cc2 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1cc3 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1cc4 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [20f1 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [20f3 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x85, 0xb2, 0xc2, 0xca, 0xb9, 0x19, 0xa4, 0x86, 0x81, 0xab, 0xe7, 0xe5, 0x91, 0x9e, 0xc6, 0x6d, 0x34, 0xc3, 0x50, 0xbe, 0xd5, 0x41, 0x10, 0xaf, 0xb5, 0xb4, 0x21, 0x8f, 0x8b, 0xf9, 0x7f, 0xc8} txOffsets= -peer1.org2.example.com | txId=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 locPointer=offset=70, bytesLength=2917 -peer1.org2.example.com | ] -peer1.org2.example.com | [20f4 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to index -peer1.org2.example.com | [20f5 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx number:[0] ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to blockNumTranNum index -peer1.org2.example.com | [20f2 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [20f6 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [20f7 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org2.example.com | [20f9 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -peer1.org2.example.com | [20f8 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [20fa 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [20fb 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [20fc 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [20fe 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [20ff 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [20fd 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [2101 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2102 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2100 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] -peer1.org2.example.com | [2103 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer1.org2.example.com | [2104 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer1.org2.example.com | [2105 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [2106 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [2107 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org2.example.com | [2108 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org2.example.com | [2109 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [1d39 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d3a 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d3b 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1d3c 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d3d 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d3e 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1d3f 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 118 but got ts: inc_num:1527744090808810100 seq_num:116 -peer0.org1.example.com | [1d40 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d41 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d42 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1d43 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d44 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d45 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d46 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1d47 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1d48 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1d49 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1d4a 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1d4b 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1d4c 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d4d 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1d4e 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d4f 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d50 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1d51 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d52 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d53 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d54 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [1d55 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1d56 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [1d57 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1d58 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1d59 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1d5a 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1d5b 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d5c 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1d5d 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d5e 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d5f 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1d60 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d61 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d62 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d63 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d64 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d65 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1d66 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1d67 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1cc5 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cc7 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cc6 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1cc8 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1cc9 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1cca 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1ccb 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1ccc 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1ccd 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1cce 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1ccf 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1cd0 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1cd1 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [1cd2 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1cd4 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cd3 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > alive:\210\241\261?\214\007\270\350 -\370\034D\271O;\212\232\303fft\224\334%\216\363\370" > > -peer1.org1.example.com | [1cd5 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1cd6 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cd7 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cd8 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cd9 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [1cda 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [210a 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] -peer1.org2.example.com | [210b 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer1.org2.example.com | [210c 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org2.example.com | [210d 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org2.example.com | [210e 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [210f 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 -peer1.org2.example.com | [2110 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org2.example.com | [2111 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [2112 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [2113 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [2114 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [2115 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [2116 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [2117 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [2118 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [2119 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [211a 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [211b 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [211c 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [211d 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [211e 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [211f 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2120 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2121 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2122 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2123 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2124 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2125 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2126 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2127 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1e8a 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > alive:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > alive: -peer0.org2.example.com | [1e8c 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e8d 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1e8e 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1e8f 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1e90 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1e92 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [1e93 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1e91 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e94 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e96 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e97 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e98 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e95 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1e99 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e9a 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e9b 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e9d 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1e9c 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e9e 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1e9f 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ea0 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d68 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1d69 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1d6a 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1d6b 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d6c 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1d6d 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [1d6e 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1d6f 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:>\321\016\216c\256\273\357~\244\344:\301E3\317\255" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020x" signature:"0E\002!\000\241\306`4\2510\027\330\243t\342\370\317\221\315\027\336}\373$\325 \235\311_v0i\206\221\313\257\002 Xq,\257[\356\367\327\322Vn\330xq\214\266\361\370\241\002\023EK\2573f\376\306\024\361C\036" > -peer0.org1.example.com | [1d70 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d71 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1d72 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d73 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d74 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1d75 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d76 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d77 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d78 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1d79 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1d7a 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1d7b 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1cdb 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cdc 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cdd 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1cde 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cdf 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ce0 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1ce1 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1ce2 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1ce3 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1ce4 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1ce5 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1ce6 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ce7 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1ce8 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [1ce9 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1cea 05-31 05:22:59.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > alive: alive: alive: -peer1.org1.example.com | [1ceb 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cec 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2128 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2129 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [212a 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [212b 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [212c 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [212d 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [212e 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [212f 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2130 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2131 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2132 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2133 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2134 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2135 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [2136 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [2137 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2139 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [213a 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [213b 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [213c 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [213d 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [213e 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2138 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [213f 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2140 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2141 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2142 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2143 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2144 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2145 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2146 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [2147 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2148 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2149 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [214a 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [214b 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [214c 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [214d 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [214e 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [214f 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2150 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2151 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2152 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2153 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2154 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2155 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2156 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2157 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2158 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2159 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [215a 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [215b 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [215c 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [215d 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [215e 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [215f 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [2161 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2162 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2160 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2163 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [2164 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2165 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2166 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2167 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2168 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2169 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [216a 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [216b 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [216c 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [216d 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [216e 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [216f 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [2170 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [2171 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2172 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2173 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2174 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2175 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2177 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2176 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2179 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2178 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [217a 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [217b 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [217c 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [217d 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [217e 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 273 bytes, Signature: 0 bytes -peer1.org2.example.com | [217f 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2180 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [2181 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2182 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [2183 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2184 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [2185 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2186 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2188 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2187 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [218b 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [218c 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [218d 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [218e 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [218f 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1ea1 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ea2 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ea3 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ea4 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1ea5 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1ea6 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ea7 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1ea8 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ea9 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1eaa 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1eab 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1eac 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1ead 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1eae 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1eaf 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1eb0 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1eb1 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1eb2 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1eb3 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1eb4 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1eb5 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1eb6 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1eb7 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1eb8 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1eb9 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1eba 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ebb 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ebc 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1ebd 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ebe 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ebf 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ec0 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1ec1 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1ec2 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1ec3 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1ec4 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1ec5 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1ec6 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ec7 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1ec9 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ec8 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [1eca 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ecb 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ecc 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ecd 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ece 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1ecf 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1ed0 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [1d7c 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [218a 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ed1 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d7d 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1ced 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1cee 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ed2 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [1ed3 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1ed4 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [1ed5 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1ed6 05-31 05:23:03.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1ed7 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1ed8 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1ed9 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1eda 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1edc 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1edb 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [1d7e 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1cef 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1edd 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [2189 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d7f 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1cf0 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ede 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2190 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1d80 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1cf1 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1edf 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d81 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1cf2 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2191 05-31 05:23:22.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1ee0 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d82 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d83 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2192 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1ee1 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ee2 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1d84 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [2193 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2194 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2195 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2196 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2197 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ee3 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 116 but got ts: inc_num:1527744091508552400 seq_num:115 -peer1.org2.example.com | [2198 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ee4 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d85 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ee5 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [2199 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1cf3 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1d86 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1ee6 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [219a 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cf4 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1d87 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1ee7 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 119 but got ts: inc_num:1527744090808810100 seq_num:118 -peer1.org1.example.com | [1cf5 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1d88 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ee8 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [219b 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org1.example.com | [1cf7 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d89 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ee9 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [219c 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [1cf8 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d8a 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1eea 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [219d 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1cf9 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1d8b 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1eeb 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [219e 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [1cf6 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1d8c 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1eec 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [219f 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1cfa 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1cfb 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1d8d 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1eed 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [21a0 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1cfc 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1d8e 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1eee 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [21a1 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1cfd 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1d8f 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1eef 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [21a2 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [1cfe 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d90 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org2.example.com | [1ef0 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [21a3 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1cff 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1d91 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org2.example.com | [1ef1 05-31 05:23:03.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [21a4 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1d00 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d92 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org2.example.com | [1ef2 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [21a5 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1d01 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d93 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ef3 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [21a6 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1d02 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d94 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1ef4 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [21a7 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1d03 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1d95 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org2.example.com | [1ef5 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21a8 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1d04 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d96 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org2.example.com | [1ef6 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [21a9 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d05 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ef7 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1d97 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21aa 05-31 05:23:23.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [1ef8 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1d06 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1d98 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [21ab 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ef9 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1d07 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1d99 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1d9a 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1efa 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1d08 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1d9b 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1efb 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [21ac 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1d09 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d0a 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [21ad 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [1efc 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1d0b 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d9c 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [21ae 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1efd 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1d0c 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1d9d 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [21af 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [1efe 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1eff 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1d9e 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [21b0 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1f00 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d0d 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [1d0e 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [1d0f 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1d10 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1d11 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d12 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d13 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [1d14 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1d15 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1d16 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d17 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1d18 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d19 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d1a 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1d9f 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [21b1 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1d1b 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f01 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1da0 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [21b2 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1d1c 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f02 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1da1 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [21b3 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1d1d 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f03 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1da2 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [21b4 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1d1e 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f04 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1da3 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [21b5 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1d1f 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1f05 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1da4 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [21b6 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1d20 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f06 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1da5 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [21b7 05-31 05:23:23.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1d21 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f07 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1da6 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21b8 05-31 05:23:23.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d22 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f08 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1da7 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [21b9 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d23 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1f09 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1da8 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21ba 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d24 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1f0a 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1da9 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [21bb 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d25 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1f0b 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1daa 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21bc 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer1.org1.example.com | [1d26 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [1dab 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21bd 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d27 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1f0c 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1dac 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [21be 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d28 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1f0d 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1dad 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21bf 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d29 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1f0f 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1daf 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21c0 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d2a 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1f0e 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1db0 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [21c1 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d2b 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1f10 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1dae 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21c2 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d2c 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1f11 05-31 05:23:06.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org1.example.com | [1db1 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [21c3 05-31 05:23:23.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d2d 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f12 05-31 05:23:06.41 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org1.example.com | [1db2 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21c4 05-31 05:23:23.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d2e 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f13 05-31 05:23:06.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org1.example.com | [1db4 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [21c5 05-31 05:23:23.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d2f 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f14 05-31 05:23:06.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1db3 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21c6 05-31 05:23:23.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21c7 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer0.org2.example.com | [1f15 05-31 05:23:06.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [1db5 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [21c8 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d30 05-31 05:23:01.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1db6 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1f16 05-31 05:23:06.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f17 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d31 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1db7 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1f18 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [21c9 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d32 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1db8 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1f19 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21ca 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d33 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1db9 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f1a 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21cb 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d34 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1dba 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f1b 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21cc 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d35 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1dbb 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f1c 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [21cd 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1dbd 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d36 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1f1d 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [21ce 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 6 1 2 3] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1dbc 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d37 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f1e 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [21cf 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1dbe 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1dbf 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f1f 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [21d0 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [21d1 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1dc0 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f20 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [21d2 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1dc1 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d38 05-31 05:23:01.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f21 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [21d3 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1dc2 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [1d39 05-31 05:23:01.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1d3a 05-31 05:23:01.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d3b 05-31 05:23:01.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f22 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1d3c 05-31 05:23:01.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1f23 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1dc3 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21d4 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1d3d 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f24 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f25 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21d5 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d3e 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d3f 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1d40 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d41 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f26 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1d42 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f27 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1dc4 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [21d6 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d43 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1f28 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1dc5 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [21d7 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d44 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1f29 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1dc6 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21d8 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d45 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1f2a 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1dc7 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [21da 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d46 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1f2c 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1dc8 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [21d9 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d47 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1d48 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1dc9 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1dca 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1dcb 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1dcd 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1dce 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1f2d 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21db 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer1.org1.example.com | [1d49 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1dcc 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [21dc 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [1dcf 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1dd0 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [21dd 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1dd1 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [21de 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f2e 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1f2b 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1dd2 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1dd3 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1dd4 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1dd5 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1dd6 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1dd7 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1dd8 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f2f 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d4a 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1dd9 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f31 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d4b 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [21e0 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1dda 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f32 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1f33 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21df 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ddb 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1f34 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [21e2 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d4c 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ddc 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1f30 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ddd 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1f35 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [21e3 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d4d 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1ddf 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f36 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21e4 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1de0 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1de1 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1f37 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org2.example.com | [21e5 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1dde 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1de2 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1f38 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1f39 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21e6 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [1de3 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1de6 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1f3a 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f3b 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1de4 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [1de8 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1de9 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1dea 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [1de7 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1de5 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1deb 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1dec 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1dee 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1ded 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1def 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1df0 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1df1 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1df4 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1df5 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1df2 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1df7 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1df3 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1df8 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1df9 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1df6 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\210\033\313\022\273\230\365T\2620W\232L\356\342gd\377hp\034\036\366" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020z" signature:"0E\002!\000\326Yz\344\003\260p\325\014\226\003\252`\241x\3147\030\024\375\227*\262=P\205\361(]\250\214\214\002 \036\256\020\251\251dek\3619\310\352\263\010,\002@\354\206p\223C\264\332\3323@\212\233(\243_" > -peer0.org1.example.com | [1dfa 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1dfb 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1dfc 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1dfd 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1dfe 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1dff 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e00 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e01 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e02 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1e03 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e04 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e05 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1e06 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e07 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e08 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e09 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e0a 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e0b 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e0c 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e0d 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1e0e 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e0f 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e10 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e11 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e12 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e13 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1e14 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e15 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e16 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e17 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e18 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e19 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1e1a 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1e1b 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1e1c 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1e1d 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1e1e 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1e1f 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1d4e 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d4f 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d50 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1d51 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d52 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d53 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1d54 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d55 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d56 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1d57 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1d58 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1d59 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d5a 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1d5b 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d5c 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d5d 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d5e 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d5f 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d60 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [1d61 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d62 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d63 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d64 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f3c 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1f3d 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f3e 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f3f 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1f40 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1f41 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1f42 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1f43 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1f44 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [21e1 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [21e7 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [21e8 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [21e9 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [21ea 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [21eb 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [21ec 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [21ed 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [21ee 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [21ef 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [21f0 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [21f1 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [21f2 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [21f3 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\215\001" signature:"0D\002 s\266\353a alive: alive: alive: -peer1.org2.example.com | [21f4 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org2.example.com | [21f5 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [21f6 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21f7 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [21f8 05-31 05:23:23.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [21f9 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [21fa 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [21fb 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [21fc 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [21fd 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer1.org2.example.com | [21fe 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer1.org2.example.com | [21ff 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2200 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2201 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2202 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [2203 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2204 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2205 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2206 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2207 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2208 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1e20 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1e21 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1e22 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e23 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020{" signature:"0D\002 \"`\350\374-\255N\362Zp\033\275:\353`f\034K\002\024\037\323o\n\0045\357\205\353\211\344d\002 D\350\234\312a\274tI\214FB\305\306\232\"\3351g\203\305\272\207\177uau@\\\306\030\323\007" secret_envelope:\215\215]\237\322Lz\206\241\256\342y@\\\301\007\222>\213\023~t<\013\000O4" > > -peer0.org1.example.com | [1e24 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e25 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d65 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d66 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1d67 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1d68 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1d69 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1d6a 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1d6b 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1d6c 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1d6d 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1d6e 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1d6f 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1d70 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1d71 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020t" signature:"0E\002!\000\247\305\031uA\306\256\022>\030\242\327\325f3\020\r\365\305\\/!h\366j\nQ\023\341\321w\004\002 \037\351z\305\350\177<\273\3227<3\013\016j\340\006\371\365\tf7\"\327\312!$wp\\\017\250" > alive: -peer1.org1.example.com | [1d72 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d73 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d74 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d75 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d76 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d77 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d78 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d79 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d7a 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1d7b 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d7c 05-31 05:23:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1d7d 05-31 05:23:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d7e 05-31 05:23:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d7f 05-31 05:23:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d80 05-31 05:23:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d81 05-31 05:23:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d82 05-31 05:23:03.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d83 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d84 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d85 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d86 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d87 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d88 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d89 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d8a 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d8b 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d8c 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1d8d 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1d8e 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d8f 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1d90 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d91 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d92 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d93 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d94 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d95 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d96 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1d97 05-31 05:23:03.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1d98 05-31 05:23:03.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2209 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [220a 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [220b 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [220c 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [220d 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [220e 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [220f 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2210 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [2211 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2213 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org2.example.com | [2214 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2212 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > alive: alive: alive: -peer1.org2.example.com | [2215 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2216 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2217 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2218 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2219 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [221a 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [221b 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e26 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e27 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e28 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e29 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1e2a 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e2b 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [1e2c 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e2e 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e2d 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1e2f 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1e30 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e31 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e32 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e33 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1e34 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1e35 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e36 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e37 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e38 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e39 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e3a 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e3b 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e3c 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e3d 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e3e 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e3f 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e40 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e41 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e42 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e43 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1e44 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e45 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1e46 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e47 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e48 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e49 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e4b 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1e4a 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e4c 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1e4d 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e4e 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e50 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e51 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f45 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1f46 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1f47 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f49 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1f48 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f4a 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1f4b 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [1f4c 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f4e 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f4d 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f4f 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f50 05-31 05:23:06.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f51 05-31 05:23:06.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1f52 05-31 05:23:06.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f53 05-31 05:23:06.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f54 05-31 05:23:06.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1f55 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f56 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f57 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f58 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1f59 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f5a 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [1f5b 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1f5d 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f5c 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1f5e 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [1f5f 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f60 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f61 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f62 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1f63 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f64 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f65 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f66 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f67 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f68 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [1f69 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1f6a 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [1f6b 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1f6c 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1f6d 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [1f6e 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1f6f 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1f70 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1f71 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [1f72 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1d99 05-31 05:23:03.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [1d9a 05-31 05:23:03.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1d9b 05-31 05:23:03.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [1d9c 05-31 05:23:03.60 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1d9d 05-31 05:23:03.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d9e 05-31 05:23:03.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1d9f 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1da1 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1da0 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1da2 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1da3 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1da4 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1da5 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1da6 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1da7 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1da8 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [1da9 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1daa 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dac 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [221c 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [221d 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [221e 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [221f 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2220 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2221 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2222 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2223 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2224 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2225 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [2226 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2227 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\310\262\001\315\\\341\211\372h.q|U\220k\314\314\372\251\362\264\257<\316\271G\002 \027\21715f\2245\313\262\246\246\264\017j\214d\334:NW\251g\327X\202\255\301\016\006Ki\231" secret_envelope:\327\250\214\357\304\2508B3K\334\263\354\254\373\207\357dH67\274f:\322\n" > > -peer1.org2.example.com | [2228 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer1.org2.example.com | [2229 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [222a 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [222b 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org2.example.com | [222c 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [222d 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [222e 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [222f 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2231 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2232 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1e4f 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1e52 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e53 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e54 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1e55 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e56 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e57 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1e58 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1e59 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1e5a 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1e5b 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1e5c 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1e5d 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1e5e 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e5f 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1e60 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e61 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e63 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e62 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e64 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1e65 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e66 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e67 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1e68 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 125 but got ts: inc_num:1527744091840124700 seq_num:123 -peer0.org1.example.com | [1e69 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e6a 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e6b 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1e6c 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e6d 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e6e 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e6f 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1e70 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1e71 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1e72 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1e73 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1e74 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1e75 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e76 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1e77 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e78 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e79 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e7a 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1e7b 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1e7c 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e7d 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [1e7e 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1e7f 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [1e80 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1e81 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1e82 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1e83 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1e84 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e85 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1e86 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e87 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e88 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1e89 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e8a 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e8b 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1e8c 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e8d 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1e8e 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1e8f 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1e90 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1e91 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1e92 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1e93 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1e94 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1e96 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [2233 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2230 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2234 05-31 05:23:26.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [2235 05-31 05:23:26.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2236 05-31 05:23:26.43 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [2237 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2238 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2239 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [223a 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [223b 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [223c 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [223d 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [223e 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [223f 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2240 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2241 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2242 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2243 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2244 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [2245 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [2246 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2247 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2248 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2249 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f74 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 535 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f75 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f73 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer0.org2.example.com | [1f76 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f77 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f78 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f79 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f7a 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f7b 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [1f7c 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f7e 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f7f 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f80 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f7d 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f81 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f82 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f83 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f84 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f85 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f86 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f87 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f88 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f89 05-31 05:23:07.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f8a 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1f8b 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1f8c 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f8d 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1f8e 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f8f 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f90 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f91 05-31 05:23:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f92 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f93 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f94 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [1f95 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f96 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f97 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1f98 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1f99 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1f9a 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1f9b 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1f9c 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1f9d 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1f9e 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1f9f 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1fa0 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1fa1 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1fa2 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [1fa3 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e95 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1e97 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1e99 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e98 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020}" signature:"0D\002 5\335\237\023\260^C\341V#1\366\n\252~\210\016\357\217\231k\261\n\233\016=f\363\362\214<\032\002 c@W\036\354\341\214\346\277\217\215\360&\242\352U\276/n\230x\225*\221GFy\373\324\207Sl" > -peer0.org1.example.com | [1e9a 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1e9b 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e9c 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e9d 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1e9e 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [1e9f 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ea0 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ea1 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ea2 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ea3 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ea4 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1ea5 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1ea6 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1ea7 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [224a 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [224b 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [224c 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [224d 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [224e 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [224f 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2250 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2251 05-31 05:23:26.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2252 05-31 05:23:26.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2253 05-31 05:23:26.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2254 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2255 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2256 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2257 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2258 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2259 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [225a 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [225b 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [225c 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [225d 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [225e 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [225f 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2260 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2261 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [2262 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [2264 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2265 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2263 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2267 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2268 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2266 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2269 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [226a 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [226b 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [226c 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [226d 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [226e 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [226f 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2270 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2271 05-31 05:23:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [2272 05-31 05:23:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2273 05-31 05:23:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [2274 05-31 05:23:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2275 05-31 05:23:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [2276 05-31 05:23:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2277 05-31 05:23:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2278 05-31 05:23:26.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2279 05-31 05:23:26.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [227a 05-31 05:23:26.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [227b 05-31 05:23:26.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [227c 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [227d 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fa4 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020y" signature:"0D\002 \231\213a\261\273\315\035QT6\370\311\262v?\200\265\271)\357#l\233W\247J8K6\312\036\002 +S+UFv\010\340\024\203]\000\207\315\275q\322\304]\377\237\261\026?^\374\376\272}\036\266b" > alive:-\376\234^\241\211\207\346" > -peer0.org2.example.com | [1fa5 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fa6 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1fa7 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fa8 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fa9 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1faa 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fab 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fad 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fac 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fae 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [1faf 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1fb0 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fb1 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fb2 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [1fb3 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1fb4 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fb5 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fb6 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1fb7 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fb8 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1fb9 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1fba 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1fbb 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1fbc 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [1fbd 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1fbe 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1fbf 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1fc0 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [1fc1 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [1fc2 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1fc4 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fc3 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > alive:\237\361w\324\363\373\310\330\004\344\244[\014\002 G\032\n\223\026\362\021\216\262\272g\177\n\261\376\000\246\227\245\212|\363\204\364F\321\256\r\n\027k\317" > -peer0.org2.example.com | [1fc5 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1fc6 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [1fc7 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1fc8 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [1fc9 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fca 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1fcc 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [1fcb 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1fcd 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fcf 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1fce 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1fd0 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fd1 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1fd2 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fd3 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fd4 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1fd5 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fd6 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fd7 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fd8 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1fd9 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fda 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fdb 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fdc 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1fdd 05-31 05:23:07.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1fde 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1dab 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dad 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [1daf 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1dae 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1db0 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1db2 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1db3 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1db4 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1db1 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1db6 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1db7 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [1db5 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1db8 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1db9 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dba 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dbb 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1dbc 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dbd 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1dbf 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dbe 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org2.example.com | [227e 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [227f 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2280 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2281 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2282 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2283 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2284 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2286 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2285 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 273 bytes, Signature: 0 bytes -peer1.org2.example.com | [2287 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2288 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [228a 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [228b 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [228c 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [228d 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2289 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [228e 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [228f 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2290 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ea8 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1ea9 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1eaa 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1eab 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1eac 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1ead 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [1eae 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1eb0 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org1.example.com | [1eb1 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1eaf 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020~" signature:"0D\002 :j:\251\320!\255A\312\022R\001\331j\360\207I\214\361\332\341DJ\240\273\263\302!\256\016'\207\002 m\\j\310-LhU\265\200\221\013\204\306\034\275v\264\202\005\327\036\343vV\305i\313\345\213\303}" > -peer0.org1.example.com | [1eb2 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [1eb3 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1eb4 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1eb5 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1eb6 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1eb7 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1eb8 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1eb9 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1eba 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ebb 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ebc 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ebd 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ebe 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1ebf 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1fdf 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [1fe2 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fe3 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1fe0 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fe4 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1fe1 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fe5 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [1fe6 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fe7 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fe8 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fe9 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [1fea 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1feb 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [1fec 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1fed 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [1fee 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1fef 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ff0 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ff1 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [1ff2 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [1ff3 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1ff4 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [1ff5 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [1ff6 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [1ff7 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ff8 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [1ff9 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [1ffa 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [1ffb 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [1ffc 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [1ffd 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [1ffe 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [1fff 05-31 05:23:07.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2000 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2001 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2002 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2003 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2004 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer0.org2.example.com | [2005 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2007 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [2006 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2008 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2009 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 121 but got ts: inc_num:1527744091508552400 seq_num:120 -peer0.org2.example.com | [200a 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [200b 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [200c 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [200d 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [200e 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [200f 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2010 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2011 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2012 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2013 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2014 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2015 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2016 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2017 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [2018 05-31 05:23:08.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2019 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [201a 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [201b 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [201c 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [201d 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [201e 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [201f 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2020 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [2021 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2022 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2023 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2024 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2025 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2026 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [2027 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2028 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [2029 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [202a 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [202b 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [202c 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [202d 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [202e 05-31 05:23:08.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [202f 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2030 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2031 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2032 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2033 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2034 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [2035 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [2036 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2037 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -peer0.org2.example.com | [2038 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [2039 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [203a 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [203b 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [203c 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [203d 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [203e 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [203f 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2040 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2041 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [2042 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2043 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" secret_envelope: > alive: > -peer0.org2.example.com | [2044 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -peer0.org2.example.com | [2045 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2046 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2047 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2048 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2049 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [204a 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [204b 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [204c 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [204d 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [204e 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [204f 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2050 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1dc0 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1dc1 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1dc2 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1dc3 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1dc4 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1dc5 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1dc6 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1dc7 05-31 05:23:03.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1dc8 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1dc9 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1dca 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1dcb 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1dcc 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1dcd 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1dce 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1dcf 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1dd0 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dd2 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1dd1 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1dd4 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1dd3 05-31 05:23:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dd5 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1dd6 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dd7 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 119 but got ts: inc_num:1527744091840124700 seq_num:118 -peer1.org1.example.com | [1dd8 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1dd9 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1dda 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1ddb 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1ddc 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1ddd 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1dde 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1ddf 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1de0 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1de1 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1de2 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1de3 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1de4 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1de5 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1de6 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1de7 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1de8 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1de9 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1dea 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1deb 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1dec 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ded 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1dee 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [1def 05-31 05:23:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1df0 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1df1 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1df2 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1df3 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1df4 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [1df5 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1df6 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [1df7 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1df8 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1df9 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1dfa 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1dfb 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1dfc 05-31 05:23:03.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1dfd 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dfe 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1dff 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e00 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1e01 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e02 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e03 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e04 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e05 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e06 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e07 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1ec0 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ec1 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ec3 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ec4 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1ec2 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1ec5 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1ec6 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1ec7 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1ec8 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1ec9 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1eca 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1ecb 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1ecd 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ecc 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ece 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1ecf 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1ed0 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1ed1 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ed2 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ed3 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ed4 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ed5 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ed6 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ed7 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ed8 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1ed9 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1eda 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1edb 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1edc 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1edd 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1ede 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1edf 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1ee0 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ee1 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ee2 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ee3 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ee4 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ee5 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [1ee6 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ee7 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [1ee8 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [1ee9 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1eea 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1eeb 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1eec 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [1eed 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1eee 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1eef 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ef0 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ef1 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ef2 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1ef3 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ef4 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ef5 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1ef6 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1ef7 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1ef8 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1ef9 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1efa 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1efb 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1efc 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1efd 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1efe 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1eff 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [1f00 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f01 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f02 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f04 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1f06 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f07 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f08 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1f03 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f05 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f09 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f0a 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f0b 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f0c 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [1f0d 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f0e 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [1f0f 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f10 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1f11 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f12 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f13 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1f14 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f15 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f16 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f17 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1f18 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1f19 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1f1a 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1f1c 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f1d 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f1b 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1f1e 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1f1f 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1f20 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1e08 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1e09 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1e0a 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1e0b 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1e0c 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1e0d 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1e0e 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e0f 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [1e10 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1e11 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > alive:>\321\016\216c\256\273\357~\244\344:\301E3\317\255" secret_envelope: > -peer1.org1.example.com | [1e12 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e13 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e14 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e15 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e16 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e17 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [1e18 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e19 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e1a 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e1b 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e1c 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e1d 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e1e 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1e1f 05-31 05:23:03.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1e20 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1e21 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1e22 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1e23 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1e24 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1e25 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e26 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [1e27 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1e29 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e2a 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e28 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\245\t\tU\263]\342\257H\330\235\320\205\222\025?${\235\300\313\274\r\247\031" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > alive: alive: -peer1.org1.example.com | [1e2b 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e2c 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e2d 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1e2e 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e2f 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e30 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2051 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2052 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2053 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2054 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2055 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2056 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2057 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2058 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2059 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [205a 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [205b 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [205c 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [205d 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [205e 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [205f 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2060 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2061 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2062 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2063 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2064 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2065 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2066 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2067 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2068 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2069 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [206a 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [206b 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [206c 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [206d 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [206e 05-31 05:23:11.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [206f 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2070 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [2071 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2072 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2074 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2073 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2075 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2076 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2077 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [2079 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [2078 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [207a 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [207b 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [207c 05-31 05:23:11.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [207d 05-31 05:23:11.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [207e 05-31 05:23:11.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [207f 05-31 05:23:11.41 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [2080 05-31 05:23:11.41 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [2081 05-31 05:23:11.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [2082 05-31 05:23:11.42 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2083 05-31 05:23:11.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org2.example.com | [2084 05-31 05:23:11.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2085 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [2086 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2087 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [2088 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2089 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer0.org2.example.com | [208a 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer0.org2.example.com | [208b 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer0.org2.example.com | [208c 05-31 05:23:11.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [208d 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [208e 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [208f 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2291 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2292 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [2293 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2294 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2295 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2296 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2297 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2298 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2299 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [229a 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [229b 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [229d 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [229c 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [229f 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [229e 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [22a0 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [22a1 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [22a2 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [22a3 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [22a4 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22a5 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [22a6 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22a7 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f22 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1f21 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f23 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [1f24 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1f25 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\177" signature:"0D\002 =\372&8\253\023\211\364\024\214\255\023DKx\370N\347\235j\310A,\377Z\005\213;\224\272`\322\002 \0273\021Y\030\023c\217\342\351\273;.n\326\213[\211\333\276\200xqL6)`\362\317\r\216\"" secret_envelope:2\315" > > -peer0.org1.example.com | [1f26 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f27 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f28 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [1f29 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1f2a 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f2b 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1f2d 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f2c 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1f2e 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [1f2f 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1f31 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f32 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f30 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f33 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f34 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f35 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f36 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f38 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e31 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1e32 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1e33 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1e34 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1e35 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1e36 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1e37 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1e38 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e39 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1e3a 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1e3b 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e3c 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e3d 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e3e 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e3f 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e40 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e41 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1e42 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e43 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e44 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e45 05-31 05:23:05.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e46 05-31 05:23:05.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e47 05-31 05:23:05.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1e48 05-31 05:23:05.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e49 05-31 05:23:05.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e4a 05-31 05:23:05.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e4b 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [1e4c 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [1e4d 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1e4e 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1e4f 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e50 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e51 05-31 05:23:06.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [1e52 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1e53 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1e54 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e56 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e55 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1e58 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e57 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e59 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e5a 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e5b 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e5c 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e5d 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1e5e 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e5f 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e60 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e62 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1f37 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f39 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f3b 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1f3c 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1f3d 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1f3e 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f3f 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f40 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f41 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f42 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f43 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f44 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [1f45 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f3a 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f46 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f48 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1f49 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1f4a 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2090 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2091 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2092 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2094 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2095 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2096 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2093 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2097 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2098 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2099 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [209b 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [209c 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [209a 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [209d 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [209e 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22a8 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22a9 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [22aa 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [22ab 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [22ac 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [22ad 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [22ae 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [22af 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [22b0 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [22b1 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22b2 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [22b3 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22b4 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22b5 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [22b6 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [22b7 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [22b8 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22b9 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [22ba 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22bb 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [22bc 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [22bd 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22be 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [22bf 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22c0 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1e61 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e63 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e64 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1e65 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1e66 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1e67 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1e68 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1e69 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1e6a 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1e6b 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e6c 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e6d 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e6f 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1e70 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1e71 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e72 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e73 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e6e 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e74 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e75 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e76 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1e77 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e78 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e7a 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e79 05-31 05:23:06.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e7b 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e7c 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e7d 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e7e 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [1e7f 05-31 05:23:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e80 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e81 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e82 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1e83 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e84 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e85 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e86 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1e87 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1e88 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1e89 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1e8a 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1e8b 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1e8c 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1e8d 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1e8e 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1e8f 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1e90 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e92 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f4b 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f4c 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f4d 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f4e 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f4f 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f50 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f47 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f51 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f52 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f54 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f55 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f56 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1f57 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1f58 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1f59 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1f5a 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1f5b 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1f5c 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f5d 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f5e 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1f5f 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f60 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f61 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f62 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1f63 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f64 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f65 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1f66 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1f67 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1f68 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1f69 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1f6a 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1f6b 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f6c 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1f53 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f6d 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f6f 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f70 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f71 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1f72 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f73 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f74 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1f75 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1f76 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f77 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f78 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1f79 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1f7a 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1f7b 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1f7c 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1f7d 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1f7e 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f7f 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1f6e 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f80 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f81 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1f83 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f84 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f85 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1f86 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f87 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f88 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1f89 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1f8a 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1f8b 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f8c 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f8d 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f8e 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1f82 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f8f 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f90 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f91 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [1f92 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [1f93 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [1f94 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [1f95 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1f96 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1f97 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1f98 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1f99 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1f9a 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1f9b 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f9c 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [1f9d 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1f9e 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1f9f 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1fa0 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fa1 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1fa2 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1fa3 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fa4 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fa5 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1fa6 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [1fa7 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1fa8 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1fa9 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [22c1 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22c2 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [22c3 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22c4 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [22c5 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [22c6 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [22c7 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [22c8 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [22c9 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [22ca 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [22cb 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [22cc 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org2.example.com | [22cd 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22ce 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org2.example.com | [22cf 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [22d0 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [22d1 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [22d2 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [22d3 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [22d4 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [22d5 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [22d6 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [22d7 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1e91 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1e93 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1e94 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e95 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e96 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1e97 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1e98 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1e99 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1e9a 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1e9b 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1e9c 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1e9d 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1e9e 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1e9f 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ea0 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1ea1 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1ea2 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1ea3 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020y" signature:"0D\002 \231\213a\261\273\315\035QT6\370\311\262v?\200\265\271)\357#l\233W\247J8K6\312\036\002 +S+UFv\010\340\024\203]\000\207\315\275q\322\304]\377\237\261\026?^\374\376\272}\036\266b" > alive: -peer1.org1.example.com | [1ea4 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ea5 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ea6 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ea7 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1ea8 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1ea9 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1eaa 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1eab 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1eac 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ead 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1eae 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1eaf 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1eb0 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1eb1 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1eb2 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1eb3 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1eb4 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1eb5 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1eb6 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1eb7 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1eb8 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 1 2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1eb9 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1eba 05-31 05:23:07.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1ebc 05-31 05:23:07.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ebb 05-31 05:23:07.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ebd 05-31 05:23:07.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ebe 05-31 05:23:07.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ebf 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ec0 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ec1 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ec3 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ec4 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ec2 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [20a0 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [20a1 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [20a3 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [20a4 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [20a6 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20a2 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [20a8 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [20a7 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [209f 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [20a5 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [20aa 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [20ab 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [20ac 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [20ad 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20ae 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [20af 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [20b0 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [20b1 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [20b2 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20b4 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [20b3 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [20a9 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [20b5 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [1faa 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1fab 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1fac 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1fad 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1fae 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [1faf 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fb0 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fb2 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1fb3 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fb1 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fb4 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1fb5 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1fb7 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fb8 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1fb6 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1fb9 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fba 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1fbb 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [1fbc 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1fbd 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1fbe 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fbf 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fc0 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [1fc1 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1fc2 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fc4 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fc3 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1fc5 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1fc6 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [1fc7 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1fc8 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1fc9 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1fca 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [1fcb 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1fcc 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [1fcd 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1fce 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [1fcf 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1fd1 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fd0 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:B\333\201/\371\030\2539<\177\344h\305\361J\3705[\000E\325\022x\013\002 7\224\033j`o\364NN3q\331\360\334\253?w\031\330\242\022\320\202\234\353\371\017q-:~f" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\202\001" signature:"0D\002 q\261K$q\321XbO\007^&\256H\305\256W\365{:k\013z\203\tg\211\034b\366\020a\002 \177K\337p\217\371V\312\323d/\316[\370\214\301\312\005\371\237\254\254\334\3779\344\204\365\245V\225\377" > -peer0.org1.example.com | [1fd2 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1fd3 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fd4 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fd5 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fd6 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [1fd7 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1fd8 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [1fd9 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fda 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1fdb 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fdc 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1fdd 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fde 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1fdf 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fe0 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fe1 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1fe2 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fe3 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [1fe4 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [1fe5 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [1fe6 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [1fe7 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [1fe8 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [1fe9 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [1fea 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1ec5 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ec6 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ec7 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ec8 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ec9 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1eca 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1ecb 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1ecc 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ecd 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ece 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ecf 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ed0 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ed1 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ed2 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ed3 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ed4 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ed5 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1ed6 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1ed7 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [1ed8 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1eda 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [1edb 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1ed9 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1edd 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ede 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1edc 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ee0 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1edf 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [20b6 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [20b7 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [20b8 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [20b9 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [20bb 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [20bc 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [20bd 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [20be 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [20ba 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20bf 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [20c0 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [20c2 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer0.org2.example.com | [20c3 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [20c1 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020}" signature:"0D\002 5\335\237\023\260^C\341V#1\366\n\252~\210\016\357\217\231k\261\n\233\016=f\363\362\214<\032\002 c@W\036\354\341\214\346\277\217\215\360&\242\352U\276/n\230x\225*\221GFy\373\324\207Sl" > alive: -peer0.org2.example.com | [20c4 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [20c5 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [20c6 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [20c7 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [20c8 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20c9 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [20ca 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [20cb 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [20cc 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [20cd 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20ce 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [20cf 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [20d0 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20d1 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [20d2 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20d3 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [20d4 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [20d5 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [20d6 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [20d7 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [20d8 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [20d9 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [20da 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [20db 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [20dc 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [20dd 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > alive: alive: -peer0.org2.example.com | [20de 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ee1 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ee2 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ee3 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ee4 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ee5 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ee6 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ee7 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ee8 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ee9 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1eea 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1eeb 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1eec 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1eed 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [22d8 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [22d9 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [22da 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [22db 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [22dc 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22dd 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [22de 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22df 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22e0 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [22e1 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22e2 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [22e3 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22e4 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [22e5 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [22e6 05-31 05:23:27.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [22e7 05-31 05:23:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22e8 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [22e9 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22ea 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [22eb 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [22ec 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 6 1] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [22ed 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22ee 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [22ef 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [22f0 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [22f1 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22f2 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [1feb 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [1fec 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [1fed 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1fef 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [1fee 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:B\333\201/\371\030\2539<\177\344h\305\361J\3705[\000E\325\022x\013\002 7\224\033j`o\364NN3q\331\360\334\253?w\031\330\242\022\320\202\234\353\371\017q-:~f" > alive:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\203\001" signature:"0E\002!\000\212\241=\031\033\202eC\255\001\317\364]\344\273=\342\002=#\2073\371\375(4\021\0020\006\032\330\002 T\000\347\211\335\211S\246\22188\253\247\210/\236\336\250e\177\352\222\214\014\270\306N\234.\365\n\303" > -peer0.org1.example.com | [1ff0 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ff1 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ff2 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ff3 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ff4 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ff5 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ff6 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ff7 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1ff8 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [1ff9 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [1ffa 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ffb 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [1ffc 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ffd 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [1ffe 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [1fff 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2000 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2001 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2002 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2003 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [2004 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2005 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2006 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2007 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2008 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2009 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [200a 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [200b 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org1.example.com | [200c 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [200d 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org1.example.com | [200e 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [200f 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2010 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [2011 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2012 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2013 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2014 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2015 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2016 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2017 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [2018 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2019 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\204\001" signature:"0E\002!\000\343Rf\033\0224\362\225\326\000fM\343\302\331\0375\214Ll\300\024)b\200\006\014]\000X\3532\002 \014KHk\231\365$\013C\305\210K\037\222i\024o(\261\024\221,\257\214\340\360Lu{\314-\032" secret_envelope: > -peer0.org1.example.com | [201a 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org1.example.com | [201b 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [201c 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [201d 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [201e 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [201f 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [2020 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2021 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [2022 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2023 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [2024 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2025 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2026 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2027 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2028 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2029 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [202a 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [202b 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [202c 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [202d 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [202e 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [202f 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2030 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2031 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2032 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2033 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2034 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2035 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2036 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2037 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2039 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2038 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [203b 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [203a 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [203c 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [203d 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [203e 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [203f 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org1.example.com | [2040 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2041 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2042 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org1.example.com | [2043 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2044 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2045 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2046 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [20df 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [20e0 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20e1 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20e2 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [20e3 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20e4 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20e5 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20e6 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [20e7 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [20e8 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [20e9 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [20ea 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [20eb 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [20ec 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [20ed 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [20ee 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [20ef 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [20f0 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20f1 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [20f2 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20f3 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [20f4 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20f5 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1eee 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1ef0 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1ef1 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1eef 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ef2 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ef3 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ef4 05-31 05:23:07.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ef5 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ef6 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ef8 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ef7 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ef9 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [1efa 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1efb 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1efc 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [1efd 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1efe 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1eff 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1f00 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1f02 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1f01 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f03 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [22f3 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [22f5 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [22f6 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [22f4 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [22f8 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [22f7 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [22f9 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [22fa 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22fb 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [22fc 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22fd 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [22fe 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [22ff 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2300 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2301 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2302 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2303 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2304 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2305 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2306 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2307 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2308 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2309 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [230a 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [230b 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [230c 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2047 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [2048 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2049 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [204a 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [204b 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [204c 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [204d 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [204e 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [204f 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2050 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2051 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2052 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2053 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2054 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2055 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2056 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2057 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2058 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2059 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [205a 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [205b 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [205c 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [205d 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [205e 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [205f 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [230d 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\222\001" signature:"0E\002!\000\277Pnk\331\037\351\276\363\247pQ'\357N2\260\377\305\355:\020H|\253\026uD\260[\255\220\002 m\"D\260]\032)\212\327\006t@\300\373\264\"\264v\264l\317WHHe\262M\275\031C\322\216" > alive: alive:\302\256\253\366\355\346~_\3669`\227\213\013[V\216\233!\003\303\002 Y\352\345\243\032ie\036#\262aP6\3402\340m\276V\363\313\333\014X\023\353\205\362\262\212V\343" > -peer1.org2.example.com | [230e 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [230f 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2310 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [2311 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2312 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [2313 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2314 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [2315 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [2316 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2317 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2318 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2319 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [231a 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [231b 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [231c 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [231d 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [231e 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [231f 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2320 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [20f6 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [20f7 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20f8 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20f9 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [20fa 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20fb 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [20fc 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [20fd 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [20fe 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [20ff 05-31 05:23:11.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [2100 05-31 05:23:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [2101 05-31 05:23:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2102 05-31 05:23:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2103 05-31 05:23:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2104 05-31 05:23:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2105 05-31 05:23:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2106 05-31 05:23:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2107 05-31 05:23:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2108 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2109 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [210a 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [210b 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [210c 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [210d 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [210e 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [210f 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2060 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 129 but got ts: inc_num:1527744091508552400 seq_num:128 -peer0.org1.example.com | [2061 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2062 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2063 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2064 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [2065 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2066 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2067 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2068 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2069 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [206a 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [206b 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [206c 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [206d 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [206f 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [206e 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2070 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 132 but got ts: inc_num:1527744090808810100 seq_num:130 -peer0.org1.example.com | [2071 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2072 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2073 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2074 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2075 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2076 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2077 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2078 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 129 but got ts: inc_num:1527744091508552400 seq_num:128 -peer0.org1.example.com | [2079 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2321 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2322 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2323 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2324 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2325 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2326 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2327 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [2328 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2329 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > alive: alive: alive: -peer1.org2.example.com | [232a 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [232b 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [232c 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [232d 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [232e 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [232f 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2330 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2331 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2332 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2333 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2334 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1f04 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f05 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f06 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f07 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1f08 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f09 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f0a 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f0b 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1f0c 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1f0d 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1f0e 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1f0f 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1f10 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f11 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f12 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f13 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1f14 05-31 05:23:07.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1f15 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1f16 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1f17 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1f18 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f19 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f1a 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1f1b 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f1c 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f1e 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1f1d 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f1f 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f20 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f21 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f22 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [1f23 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1f24 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [1f25 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1f26 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1f27 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [1f28 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f29 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f2a 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1f2b 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f2c 05-31 05:23:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f2d 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f2f 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [1f2e 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f30 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f31 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f32 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f33 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f34 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1f35 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 122 but got ts: inc_num:1527744090808810100 seq_num:121 -peer1.org1.example.com | [1f36 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [207a 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [207b 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [207c 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [207d 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [207e 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [207f 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2080 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2081 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2082 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2083 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2084 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2085 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2086 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2087 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2088 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2089 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [208a 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [208b 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [208c 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [208d 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [208e 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [208f 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2090 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2335 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2336 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2337 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2338 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2339 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [233a 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [233b 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [233c 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [233d 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [233e 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:+\246\255I\302\333" > alive:\371O\032\356+#\344\324\361\014.Q\270\333 \017\222\2076\037\032{\334\220\014l\234\341\221\304+\002 y\234\t\255\253\023\340\255)\306\330\250B/{\014\256\241\230\212gm\325\266\270d\250\256I\365\312\244" > > -peer1.org2.example.com | [233f 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org2.example.com | [2340 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2341 05-31 05:23:30.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [2342 05-31 05:23:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2343 05-31 05:23:30.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [2344 05-31 05:23:30.89 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2345 05-31 05:23:30.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [2346 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2347 05-31 05:23:30.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2348 05-31 05:23:30.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [2349 05-31 05:23:30.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [234a 05-31 05:23:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [234b 05-31 05:23:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [234c 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [234d 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [234e 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1f37 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f38 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1f39 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1f3a 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1f3b 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1f3c 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1f3d 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f3e 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f3f 05-31 05:23:07.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1f40 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f41 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f42 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f43 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1f44 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f45 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f46 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f47 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f48 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f49 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f4a 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [1f4b 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1f4c 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1f4d 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1f4e 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1f4f 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f50 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f51 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1f52 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [1f53 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1f54 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > alive: > -peer1.org1.example.com | [1f55 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f56 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1f57 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f58 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f59 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f5a 05-31 05:23:07.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [1f5b 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f5c 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f5d 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2091 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2092 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2093 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2094 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2095 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2096 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2097 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2098 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2099 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [209a 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [209b 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [209c 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [209d 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [209e 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [209f 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20a0 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20a1 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [20a2 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [20a3 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [20a4 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [20a5 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20a6 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20a7 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [20a8 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [20a9 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20aa 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [20ab 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [20ac 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [20ad 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [20ae 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20af 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [20b0 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [20b1 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [20b2 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [20b3 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [20b4 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [20b5 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [20b6 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [20b7 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [20b8 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [20b9 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\206\001" signature:"0D\002 X\221\020{\234T\345\033\377^\275!\320c$|\331\223 -peer0.org1.example.com | [20ba 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [20bb 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20bc 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [20bd 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [20be 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [20bf 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [20c0 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [20c1 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [20c2 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [20c3 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20c4 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [20c5 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [20c6 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20c7 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20c8 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [20c9 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [20ca 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [20cb 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [20cc 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [20cd 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [20ce 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [20cf 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [20d0 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [20d1 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [20d2 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20d3 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20d4 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20d5 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20d6 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20d7 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [20d8 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [20d9 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20da 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [20db 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20dc 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20dd 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [20de 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [20df 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [20e0 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [20e1 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [20e2 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [20e4 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [20e3 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [20e6 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20e5 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [20e7 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [20e8 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [20e9 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20ea 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20eb 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [20ec 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [20ed 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [20ee 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [234f 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\311g\3773#\334\363`\333\377P" > > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2351 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2352 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2353 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2354 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2355 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2356 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [2357 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [2358 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2359 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [235a 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [235b 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [235c 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [235d 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [235e 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [235f 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [2360 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f5e 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f5f 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f60 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org1.example.com | [20ef 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [20f0 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [20f1 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [20f2 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [20f3 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [20f4 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [20f5 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [20f6 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [20f7 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [20f8 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [20f9 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [20fb 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [20fd 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [20fc 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [20fe 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [20fa 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [20ff 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2100 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2101 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2102 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2103 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2104 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2105 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2106 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2107 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2110 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2111 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2112 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2113 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2114 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2115 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2116 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2117 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2118 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2119 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [211a 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [211b 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [211d 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [211c 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [211f 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [211e 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [2120 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2121 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2123 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2122 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2124 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2125 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2126 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2127 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2128 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2361 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [2362 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2363 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2364 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2365 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2366 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2367 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2368 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2369 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [236a 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [236b 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [236c 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [236d 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [236e 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [236f 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2370 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2371 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2372 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2373 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2374 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2375 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [2376 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2350 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [2378 05-31 05:23:31.01 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2108 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2109 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [210a 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [210b 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [210c 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [210d 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [210e 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [210f 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2110 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2112 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2111 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2114 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [2113 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2115 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2116 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2118 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [2119 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2117 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [211a 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org1.example.com | [211b 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [211c 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [211d 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [211e 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [211f 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2120 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2129 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [212a 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [212b 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [212c 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [212d 05-31 05:23:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [212e 05-31 05:23:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [212f 05-31 05:23:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2130 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2131 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2132 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2133 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2134 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2135 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2136 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2137 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2138 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2139 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f61 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [1f62 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1f63 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1f64 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1f65 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1f66 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f67 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f68 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1f69 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [1f6a 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1f6b 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:)D.\205#B7\243h\323\034" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > alive: -peer1.org1.example.com | [1f6c 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f6d 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1f6e 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f6f 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f70 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f71 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [1f72 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f73 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org2.example.com | [2379 05-31 05:23:31.01 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [237a 05-31 05:23:31.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [237c 05-31 05:23:31.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [237b 05-31 05:23:31.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [237d 05-31 05:23:31.03 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [237e 05-31 05:23:31.03 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2377 05-31 05:23:31.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [237f 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2380 05-31 05:23:31.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2381 05-31 05:23:31.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org2.example.com | [2382 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2383 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org2.example.com | [2384 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [2385 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [2386 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [2387 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2388 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [2389 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [238a 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [238b 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [238c 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [238d 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [238e 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [238f 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2121 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2122 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2123 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2124 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2125 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2126 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2127 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2129 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [2128 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [212a 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [212b 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\210\001" signature:"0E\002!\000\333\317B\326R\357\337\0304\025vQV*gW\\\202\213\350\245\344\242\366\223Wv\240\243\\\320\244\002 =5\263o\252a\204t\220g\245S\216\017P\264$\322\t\267\021\007\033\30632R\363\213-\266v" > -peer0.org1.example.com | [212c 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [212d 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [212e 05-31 05:23:18.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [212f 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2130 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2131 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2132 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [2133 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org1.example.com | [2134 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2135 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2136 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [213a 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [213b 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [213c 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [213d 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [213e 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [213f 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2140 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2141 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2142 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2143 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2144 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2145 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2146 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2147 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2148 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2149 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [214a 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [214b 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [214c 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [214d 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [214e 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [214f 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2150 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2151 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f74 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f75 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f76 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f77 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1f78 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1f79 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [1f7a 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1f7b 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1f7c 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1f7d 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f7e 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f7f 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1f80 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [1f81 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1f83 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f84 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1f82 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > alive: alive:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > alive: -peer1.org1.example.com | [1f85 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f86 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1f87 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f88 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org2.example.com | [2390 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2391 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2392 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2393 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [2394 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2395 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [2396 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2397 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2398 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 151 but got ts: inc_num:1527744091840124700 seq_num:150 -peer1.org2.example.com | [2399 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [239a 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [239b 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [239c 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 146 but got ts: inc_num:1527744091508552400 seq_num:144 -peer1.org2.example.com | [239d 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [239e 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [239f 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [23a0 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23a1 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [23a2 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [23a3 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [23a4 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [23a5 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [23a6 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [23a7 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [23a8 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [23a9 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [23aa 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [23ab 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23ac 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [23ad 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23ae 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23af 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23b0 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [23b1 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23b2 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [23b3 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [23b4 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [23b5 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [23b6 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23b7 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [23b8 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23b9 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [23ba 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [23bb 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23bc 05-31 05:23:31.40 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [23bd 05-31 05:23:31.41 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [23be 05-31 05:23:31.41 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [23bf 05-31 05:23:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org2.example.com | [23c1 05-31 05:23:31.43 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [23c0 05-31 05:23:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23c2 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [23c3 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [23c4 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [23c5 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23c6 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23c7 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [23c8 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23c9 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23ca 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23cb 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [23cc 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [23cd 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [23ce 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [23cf 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [23d0 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [23d1 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [23d2 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [23d3 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [23d4 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [23d5 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23d6 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [23d7 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23d8 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [23d9 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23da 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [23db 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23dc 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23dd 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [23de 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23df 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [23e1 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23e2 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [23e0 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23e3 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [23e4 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [23e5 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [23e6 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23e7 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [23e9 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [23e8 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [23ea 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [23eb 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [23ec 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [23ed 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [23ee 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [23ef 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23f0 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [23f1 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23f2 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org2.example.com | [23f3 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23f4 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [23f5 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [23f6 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [23f7 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [23f8 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [23f9 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [23fa 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [23fb 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [23fc 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [23fd 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [23fe 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [23ff 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2400 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [2401 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2402 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\226\001" signature:"0D\002 *b\334.\302\335y\237\244%W\212\360o\032\231TgW\201@\027\227\017\234]\352\373P\303B'\002 vC\2045\035t\202\223g\017%L|QdD\250\373\016s\314\317\201@\247/\017#K\331\222~" > alive: -peer1.org2.example.com | [2403 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [2404 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2405 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [2406 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2407 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [2408 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2409 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [240a 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org2.example.com | [240b 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2152 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2153 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2154 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2155 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2156 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2157 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2158 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2159 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [215a 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org2.example.com | [215b 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org2.example.com | [215d 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org2.example.com | [215e 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [215c 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [215f 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2160 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [2161 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2162 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2163 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [2164 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2165 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [2166 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2167 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2168 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2169 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [216a 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [216b 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [216c 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [216d 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [216e 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [216f 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2170 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2171 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer0.org2.example.com | [2172 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2173 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 129 but got ts: inc_num:1527744090808810100 seq_num:127 -peer0.org2.example.com | [2174 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2175 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer0.org2.example.com | [2176 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2177 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2178 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2179 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [217a 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [217b 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [217c 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [217d 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [217e 05-31 05:23:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [217f 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2180 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2181 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2182 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2183 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2137 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [2138 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2139 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [213a 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [213b 05-31 05:23:19.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [213c 05-31 05:23:19.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [213d 05-31 05:23:19.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [213e 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [213f 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [2140 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [2141 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2142 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2143 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2144 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2145 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2146 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [2147 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2148 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [2149 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [214a 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [240c 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [240d 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [240e 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [240f 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2410 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2411 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2412 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2413 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2414 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2415 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2416 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2417 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2418 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2419 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [241a 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [241b 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [241c 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [241d 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [241e 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > alive: alive: -peer0.org2.example.com | [2184 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [2185 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [2187 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [2188 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [2189 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [218a 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [218b 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [218c 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [218d 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [218e 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [218f 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2190 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2186 05-31 05:23:14.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2191 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [2193 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2192 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2195 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [214b 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [214c 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [214d 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [214e 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [214f 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2150 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2151 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2152 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2153 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2154 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [2155 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2156 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2157 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2158 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [215a 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [215b 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2159 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\211\001" signature:"0D\002 \032\317'\010\233/\201\010\346%\213\236\2479=8w\010\3056\301\374K|\031u\263\325\033)a\023\002 t\034\2626\251o.W\276m\t\325\221\351\031\364\254\312\326\037\231a\331\211k }6\257\356\300\n" secret_envelope: > -peer0.org1.example.com | [215c 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [215d 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [215e 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [215f 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2160 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [2161 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2162 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2163 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2165 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [241f 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [2420 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2421 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [2422 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2423 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2424 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [2425 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [2426 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2427 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes]} -peer1.org2.example.com | [2428 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2429 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [242a 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [242b 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [242c 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [242d 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [242e 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -peer1.org2.example.com | [242f 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -peer1.org2.example.com | [2431 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [2432 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2430 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [2433 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2434 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [2435 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2436 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f89 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1f8a 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1f8b 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1f8c 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1f8d 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1f8e 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1f8f 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [1f90 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [1f91 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [1f92 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [1f93 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [1f94 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [1f95 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1f96 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1f97 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1f98 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1f99 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1f9a 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1f9b 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1f9c 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1f9d 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1f9e 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1f9f 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2194 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" secret_envelope: > alive:\027^\r\264\031\257N\r\306\037\243$r\3648\256\002 U\006|\273\002\213\005>\303\210\361\343@#\376\177\362\360KuO\032\207\217[\261]{\355\025H\354" > > -peer0.org2.example.com | [2196 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [2197 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2198 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2199 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [219a 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [219b 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [219c 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [219d 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [219e 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [219f 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [21a0 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [21a1 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [21a2 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [21a3 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [21a4 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21a5 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [21a6 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [21a7 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21a8 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [21a9 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21aa 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [21ab 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [21ac 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [21ad 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [21ae 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [21af 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [21b0 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [21b1 05-31 05:23:15.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21b2 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2166 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2167 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2168 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2169 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [216a 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [216b 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [216c 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [216d 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [216e 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2164 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [216f 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2170 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2172 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2173 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2174 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2171 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2176 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2177 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2175 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [2437 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [2438 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2439 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [243a 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [243b 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [243c 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org2.example.com | [243d 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [243e 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [243f 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2440 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2441 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2442 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2443 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2444 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [2445 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2446 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2447 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2448 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2449 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [244a 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [244b 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40614 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [244c 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [244d 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [244e 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [244f 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1fa0 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1fa1 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1fa2 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1fa3 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1fa4 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [1fa5 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1fa6 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1fa7 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1fa8 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fa9 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1faa 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fab 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [1fac 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1fad 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [1fae 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [1faf 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [1fb0 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [1fb1 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [1fb2 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fb3 05-31 05:23:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [1fb4 05-31 05:23:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fb5 05-31 05:23:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fb6 05-31 05:23:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fb7 05-31 05:23:11.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fb8 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fb9 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fba 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fbb 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fbc 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2178 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [217a 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [217c 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [217b 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2179 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [217d 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org1.example.com | [217e 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [217f 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2180 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2181 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2182 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2183 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2184 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2185 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2186 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2187 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2188 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2189 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [218a 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [218b 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [218c 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [218d 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2450 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [2451 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [2452 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2453 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2454 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2455 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2456 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2457 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2458 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2459 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [245a 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [245b 05-31 05:23:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [245c 05-31 05:23:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [245d 05-31 05:23:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [245e 05-31 05:23:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [245f 05-31 05:23:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2460 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2461 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2462 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2463 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2464 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [2465 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [218e 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [218f 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2191 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2192 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2193 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2194 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2195 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2190 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org1.example.com | [2196 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2197 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2198 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2199 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [219a 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [219b 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [219c 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [219d 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [219e 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [219f 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [21a0 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [21a1 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [21a2 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [21a4 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [21a3 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [21a5 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [21a6 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [21a7 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [21a8 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [21a9 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [21aa 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [21ab 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 134 but got ts: inc_num:1527744091508552400 seq_num:133 -peer0.org1.example.com | [21ac 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [21ad 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [21ae 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [21af 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 139 but got ts: inc_num:1527744091840124700 seq_num:137 -peer0.org1.example.com | [21b0 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [21b1 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [21b2 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [21b3 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [21b4 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [21b5 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [21b6 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [21b7 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [21b8 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [21b9 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [1fbd 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fbe 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fbf 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1fc0 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fc1 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fc2 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1fc3 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1fc4 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1fc5 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fc6 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fc7 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fc8 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fc9 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fca 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1fcb 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fcc 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fcd 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1fce 05-31 05:23:11.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [1fcf 05-31 05:23:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [1fd0 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1fd1 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1fd3 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1fd4 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fd2 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [1fd5 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1fd6 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fd7 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [1fd8 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2466 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [2467 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [2468 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2469 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [246a 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [246b 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [246c 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [246d 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [246e 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [246f 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2470 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [2471 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2472 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [2473 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org2.example.com | [2474 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2475 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:45420 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes -peer1.org2.example.com | [2476 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2477 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org2.example.com | [2478 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org2.example.com | [2479 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc424b6af00 env 0xc424bc41e0 txn 0 -peer1.org2.example.com | [247a 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424bc41e0 -peer1.org2.example.com | [247b 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -peer1.org2.example.com | [247c 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org2.example.com | [247d 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org2.example.com | [247e 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer1.org2.example.com | [247f 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [2480 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [2481 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc424bb0a80, header channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -peer1.org2.example.com | [2482 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org2.example.com | [2483 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [2484 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [2485 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [2486 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [2487 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [2488 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [2489 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [248a 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [248b 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [248c 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [248d 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [248e 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [248f 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer1.org2.example.com | [2490 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer1.org2.example.com | [2491 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer1.org2.example.com | [2492 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org2.example.com | [2493 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer1.org2.example.com | [2494 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [2495 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [2496 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [2497 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [2498 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -peer1.org2.example.com | [2499 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -peer1.org2.example.com | [249a 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -peer1.org2.example.com | [249b 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer1.org2.example.com | [249c 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -peer1.org2.example.com | [249d 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org2.example.com | [249e 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org2.example.com | [249f 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -peer1.org2.example.com | [24a0 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org2.example.com | [24a1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [24a2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [21b3 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [21b4 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [21b5 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21b6 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [21b7 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21b8 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [21b9 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21ba 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [21bb 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [21bc 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [21bd 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [21be 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [21bf 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [21c0 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [21c1 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [21c2 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [21c3 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [21c5 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [21c6 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [21ba 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55408 -peer0.org1.example.com | [21bb 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42987d4d0 -peer0.org1.example.com | [21bc 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [21bd 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [21be 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [21bf 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [21c0 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [21c1 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429841cc0, header 0xc42987d830 -peer0.org1.example.com | [21c2 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org1.example.com | [21c3 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][f568e6b0] processing txid: f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb -peer0.org1.example.com | [21c4 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] -peer0.org1.example.com | [21c5 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer0.org1.example.com | [21c6 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [21c7 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] -peer0.org1.example.com | [21c8 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f568e6b0] Entry chaincode: name:"exp02" -peer0.org1.example.com | [21c9 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb,syscc=true,proposal=0xc429841cc0,canname=lscc:1.2.0) -peer0.org1.example.com | [21ca 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [21cb 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [21cc 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f568e6b0]Received message TRANSACTION from peer -peer0.org1.example.com | [21cd 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f568e6b0] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [21ce 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f568e6b0] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [21cf 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer0.org1.example.com | [21d0 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f568e6b0] Sending GET_STATE -peer0.org1.example.com | [21d1 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f568e6b0] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [21d2 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f568e6b0] handling GET_STATE from chaincode -peer0.org1.example.com | [21d3 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [f568e6b0] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [21d4 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [21d5 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f568e6b0] Completed GET_STATE. Sending RESPONSE -peer0.org1.example.com | [21d6 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f568e6b0]Received message RESPONSE from peer -peer0.org1.example.com | [21d7 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f568e6b0] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [21d8 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [f568e6b0] before send -peer0.org1.example.com | [21d9 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [f568e6b0] after send -peer0.org1.example.com | [21da 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f568e6b0] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [21db 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f568e6b0] GetState received payload RESPONSE -peer0.org1.example.com | [21dc 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f568e6b0] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [21dd 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [f568e6b0] send state message COMPLETED -peer0.org1.example.com | [21de 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f568e6b0] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [21df 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f568e6b0] notifying Txid:f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb, channelID:businesschannel -peer1.org2.example.com | [24a3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24a4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24a5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24a6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org2.example.com | [24a7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [24a8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [24a9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24aa 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24ab 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [21c4 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\202\001" signature:"0D\002 q\261K$q\321XbO\007^&\256H\305\256W\365{:k\013z\203\tg\211\034b\366\020a\002 \177K\337p\217\371V\312\323d/\316[\370\214\301\312\005\371\237\254\254\334\3779\344\204\365\245V\225\377" > alive: alive: -peer0.org2.example.com | [21c7 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [21c8 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [21c9 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21ca 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [21cb 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [21cc 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [21cd 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 1 2 3] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [21ce 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21cf 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [21d0 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [21d1 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [21d2 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [21d3 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21d4 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [21d5 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [21d6 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21d7 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [21d8 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21d9 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [21da 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [21db 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [1fd9 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [1fda 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1fdb 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [1fdd 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1fde 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [1fdf 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1fdc 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fe0 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fe1 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fe3 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fe2 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fe4 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1fe5 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fe6 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fe7 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fe8 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1fe9 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1feb 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1fec 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [1fed 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [21e0 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [21e1 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [21e2 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] Entry chaincode: name:"exp02" version: 1.0 -peer0.org1.example.com | [21e3 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb,syscc=false,proposal=0xc429841cc0,canname=exp02:1.0) -peer0.org1.example.com | [21e4 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer0.org1.example.com | [21e5 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [21e6 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f568e6b0] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [21e7 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f568e6b0] handling GET_STATE from chaincode -peer0.org1.example.com | [21e8 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [f568e6b0] getting state for chaincode exp02, key a, channel businesschannel -peer0.org1.example.com | [21e9 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [21ea 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f568e6b0] Completed GET_STATE. Sending RESPONSE -peer0.org1.example.com | [21eb 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f568e6b0] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [21ec 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f568e6b0] notifying Txid:f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb, channelID:businesschannel -peer0.org1.example.com | [21ed 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [21ee 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] Exit -peer0.org1.example.com | [21ef 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [21f0 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] -peer0.org1.example.com | [21f1 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f568e6b0] Exit -peer0.org1.example.com | [21f2 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f568e6b0] Entry chaincode: name:"exp02" -peer0.org1.example.com | [21f3 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f568e6b0] escc for chaincode name:"exp02" is escc -peer0.org1.example.com | [21f4 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb, chaincode: exp02} -peer0.org1.example.com | [21f5 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb, chaincode: exp02} -peer0.org1.example.com | [21f6 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f568e6b0] Exit -peer0.org1.example.com | [21f7 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] -peer0.org1.example.com | [21f8 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55408 -peer0.org1.example.com | [21f9 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [24ac 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [24ad 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24ae 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24af 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24b0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [24b1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org2.example.com | [24b2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org2.example.com | [24b3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org2.example.com | [24b4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24b5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org2.example.com | [24b6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org2.example.com | [24b7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org2.example.com | [24b8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org2.example.com | [24b9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org2.example.com | [24ba 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org2.example.com | [24bb 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org2.example.com | [24bc 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [24bd 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org2.example.com | [24be 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer1.org2.example.com | [24bf 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [24c0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [24c1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [24c2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [24c3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [24c4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -peer1.org2.example.com | [24c5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -peer1.org2.example.com | [24c6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [24c7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [24c8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [24c9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [24ca 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org2.example.com | [24cb 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org2.example.com | [24cc 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org2.example.com | [24cd 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org2.example.com | [24ce 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [24cf 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [24d0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org2.example.com | [24d1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org2.example.com | [24d2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer1.org2.example.com | [24d3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org2.example.com | [24d4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org2.example.com | [24d5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org2.example.com | [24d6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org2.example.com | [24d7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org2.example.com | [24d8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org2.example.com | [24d9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org2.example.com | [24da 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org2.example.com | [24db 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org2.example.com | [24dc 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org2.example.com | [24dd 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org2.example.com | [24de 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org2.example.com | [24df 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org2.example.com | [24e0 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org2.example.com | [24e1 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org2.example.com | [24e2 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org2.example.com | [24e3 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org2.example.com | [24e4 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org2.example.com | [24e5 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org2.example.com | [24e6 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org2.example.com | [24e7 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [21dc 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [21dd 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [21de 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [21df 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [21e0 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [21e1 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [21e2 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [21e3 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > alive: alive: -peer0.org2.example.com | [21e4 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [21e5 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [21e6 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21e7 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [21e8 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21e9 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21ea 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21eb 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [21ec 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [21ed 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [21ee 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [21ef 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [21f0 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [21f1 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [21fa 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [21fb 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [21fc 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [21fd 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [21fe 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [21ff 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2200 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2201 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2202 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2203 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2204 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2205 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2206 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2207 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2208 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2209 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [220a 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [220b 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\n" > alive:\310\233%\334\272\022\346\333@\373jd\276\231\352\317\271\002 :\246w\226\352\243W\\\r\027\351\220\223\030\355\313\341\372SnN\034Y\377\004wu\001c33\336" > alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\213\001" signature:"0D\002 r>\347\241\211b\305f\213\240\361G\025\002\\\223\210\370-\177=\226\262\037H\365ax\354c\033G\002 J\376\206\244\204\320\240L\325\"o]\245(k[o\366OU\250\264\345+\366\343\236\026\025\253a\302" > -peer0.org1.example.com | [220c 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [220d 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [220e 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [220f 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2210 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2211 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2212 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2213 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2214 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2215 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2216 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2217 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2218 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2219 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [221a 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [221b 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [221c 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [221d 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [221e 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [221f 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2220 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2221 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2222 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2223 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2224 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21f2 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [21f3 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21f4 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21f5 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [21f6 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [21f7 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21f8 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [21f9 05-31 05:23:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [21fa 05-31 05:23:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [21fb 05-31 05:23:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21fc 05-31 05:23:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [21fd 05-31 05:23:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [21fe 05-31 05:23:15.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [21ff 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2200 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2201 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2202 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2203 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2204 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2205 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [2206 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2207 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [2208 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2209 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [220a 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [220b 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [220c 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [24e8 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org2.example.com | [24e9 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org2.example.com | [24ea 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org2.example.com | [24eb 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org2.example.com | [24ec 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org2.example.com | [24ed 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer1.org2.example.com | [24ee 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer1.org2.example.com | [24ef 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer1.org2.example.com | [24f0 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer1.org2.example.com | [24f1 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org2.example.com | [24f2 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org2.example.com | [24f3 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org2.example.com | [24f4 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org2.example.com | [24f5 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org2.example.com | [24f6 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org2.example.com | [24f7 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org2.example.com | [24f8 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org2.example.com | [24f9 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org2.example.com | [24fa 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org2.example.com | [24fb 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org2.example.com | [24fc 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org2.example.com | [24fd 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org2.example.com | [24fe 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org2.example.com | [24ff 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org2.example.com | [2500 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org2.example.com | [2501 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org2.example.com | [2502 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org2.example.com | [2503 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org2.example.com | [2504 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org2.example.com | [2505 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org2.example.com | [2506 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org2.example.com | [2507 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org2.example.com | [2508 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [2225 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2226 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2227 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2228 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2229 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [222a 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [222b 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [222c 05-31 05:23:20.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [222d 05-31 05:23:21.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [222e 05-31 05:23:21.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [222f 05-31 05:23:21.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [2230 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4794 bytes, seq: 6}, Envelope: 4824 bytes, Signature: 0 bytes -peer0.org1.example.com | [2231 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2232 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [2233 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [2234 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4298f8da0 env 0xc4299a41e0 txn 0 -peer0.org1.example.com | [2235 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4299a41e0 -peer0.org1.example.com | [2236 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -peer0.org1.example.com | [2237 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [2238 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [2239 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org1.example.com | [223a 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [223b 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [223c 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc428f31800, header channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -peer1.org1.example.com | [1fee 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fef 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ff0 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ff1 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ff2 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ff3 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [1ff4 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1fea 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ff5 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ff6 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ff7 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ff8 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ff9 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ffa 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ffb 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ffc 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [1ffd 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -peer1.org1.example.com | [1ffe 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [1fff 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [220d 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [220e 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [220f 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2210 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2211 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2212 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2213 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2214 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2215 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2216 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2217 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2218 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2219 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [221a 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [221b 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [221c 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [221d 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [221e 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [221f 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2220 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2221 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2222 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2223 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2224 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2225 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes -peer0.org2.example.com | [2226 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2227 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes -peer0.org2.example.com | [2228 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2229 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [222a 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [222b 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [222c 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [222d 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [222e 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [222f 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2230 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2231 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [223d 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org1.example.com | [223e 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org1.example.com | [223f 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org1.example.com | [2240 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org1.example.com | [2241 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -peer0.org1.example.com | [2242 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org1.example.com | [2243 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc428590800 -peer0.org1.example.com | [2244 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [9e964f86-0428-41a1-9ca7-bbbd4e7700c1] -peer0.org1.example.com | [2245 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [2246 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [9e964f86-0428-41a1-9ca7-bbbd4e7700c1] -peer0.org1.example.com | [2247 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin -peer0.org1.example.com | [2248 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org1.example.com | [2249 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: -peer0.org1.example.com | [224a 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 appears to be valid -peer0.org1.example.com | [224b 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc428590800 -peer0.org1.example.com | [224c 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4298f8da0 env 0xc4299a41e0 txn 0 -peer0.org1.example.com | [224d 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [224e 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [224f 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -peer0.org1.example.com | [2250 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [2251 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -peer0.org1.example.com | [2252 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [2253 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer0.org1.example.com | [2254 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [2255 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer0.org1.example.com | [2256 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -peer0.org1.example.com | [2257 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer0.org1.example.com | [2258 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [2259 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org1.example.com | [2000 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2001 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2002 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2003 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2004 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2005 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2006 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [2007 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2008 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2009 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [200a 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [200b 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [200c 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [200e 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [200f 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [200d 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [2010 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2011 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2012 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2013 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2014 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2015 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2016 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2017 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [2018 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2019 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [201a 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [201b 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [201c 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [201d 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [201e 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [201f 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2020 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2021 05-31 05:23:11.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org1.example.com | [2022 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [2023 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2024 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [2025 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2026 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [2027 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2028 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [2029 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [202a 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [202b 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [202d 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [202e 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [202c 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [202f 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2030 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2032 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2031 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [2033 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [2034 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2035 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -peer1.org1.example.com | [2036 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2037 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -peer1.org1.example.com | [2038 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2039 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 127 but got ts: inc_num:1527744091618763800 seq_num:125 -peer1.org1.example.com | [203a 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [203b 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [203c 05-31 05:23:11.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [203d 05-31 05:23:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [203e 05-31 05:23:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [203f 05-31 05:23:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2040 05-31 05:23:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2041 05-31 05:23:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2042 05-31 05:23:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2043 05-31 05:23:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2044 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2045 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2046 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2047 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [2048 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2049 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2509 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org2.example.com | [250a 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org2.example.com | [250b 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org2.example.com | [250c 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org2.example.com | [250d 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org2.example.com | [250e 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org2.example.com | [250f 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org2.example.com | [2510 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org2.example.com | [2511 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer1.org2.example.com | [2512 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org2.example.com | [2513 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -peer1.org2.example.com | [2514 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.6:7051 -peer1.org2.example.com | [2516 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org2.example.com | [2517 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org2.example.com | [2518 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:11789995336622609984 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2519 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:11789995336622609984 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes -peer1.org2.example.com | [251a 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [251b 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer1.org2.example.com | [251c 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:40614 disconnected -peer1.org2.example.com | [251d 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer1.org2.example.com | [2515 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org2.example.com | [251e 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer1.org2.example.com | [251f 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org2.example.com | [2520 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [2232 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2233 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2234 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2235 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2236 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2237 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2238 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [2239 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [223a 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [223b 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [223c 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [223d 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [223e 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 130 but got ts: inc_num:1527744091508552400 seq_num:129 -peer0.org2.example.com | [223f 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2240 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2241 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2242 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2243 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2244 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2245 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2246 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2247 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2248 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2249 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [224a 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [224c 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes -peer0.org2.example.com | [224d 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes -peer0.org2.example.com | [224b 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [224e 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [224f 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes -peer0.org2.example.com | [2251 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2250 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [2252 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2253 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [2254 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2255 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [2256 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2257 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [2258 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2259 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [225a 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [225b 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [225c 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [225d 05-31 05:23:16.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [225e 05-31 05:23:16.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [225f 05-31 05:23:16.42 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [2260 05-31 05:23:16.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [2261 05-31 05:23:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2262 05-31 05:23:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [2263 05-31 05:23:16.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2264 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2265 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [204a 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [204c 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [204d 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [204e 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [204f 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2050 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2051 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2052 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [204b 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2053 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2055 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2054 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2056 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2058 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2059 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [205a 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [205b 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [205c 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [205d 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [205e 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [205f 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2521 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -peer1.org2.example.com | [2522 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org2.example.com | [2523 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org2.example.com | [2524 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org2.example.com | [2525 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org2.example.com | [2526 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc424b6af00 env 0xc424bc41e0 txn 0 -peer1.org2.example.com | [2527 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org2.example.com | [2528 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org2.example.com | [2529 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org2.example.com | [252a 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -peer1.org2.example.com | [252b 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org2.example.com | [252c 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] -peer1.org2.example.com | [252d 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org2.example.com | [252e 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org2.example.com | [252f 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org2.example.com | [2530 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org2.example.com | [2531 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [2532 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org2.example.com | [2533 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org1.example.com | [225a 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] marked as valid by state validator -peer0.org1.example.com | [225b 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [225c 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [225d 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [225e 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -peer0.org1.example.com | [225f 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] -peer0.org1.example.com | [2260 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x85, 0xb2, 0xc2, 0xca, 0xb9, 0x19, 0xa4, 0x86, 0x81, 0xab, 0xe7, 0xe5, 0x91, 0x9e, 0xc6, 0x6d, 0x34, 0xc3, 0x50, 0xbe, 0xd5, 0x41, 0x10, 0xaf, 0xb5, 0xb4, 0x21, 0x8f, 0x8b, 0xf9, 0x7f, 0xc8} txOffsets= -peer0.org1.example.com | txId=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 locPointer=offset=70, bytesLength=2917 +peer0.org1.example.com | [1c72 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to index +peer0.org1.example.com | [1c73 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx number:[0] ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to blockNumTranNum index +peer0.org1.example.com | [1c74 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55533], isChainEmpty=[false], lastBlockNumber=[5] +peer0.org1.example.com | [1c75 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] +peer0.org1.example.com | [1c76 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +peer0.org1.example.com | [1c77 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +peer0.org1.example.com | [1c78 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +peer0.org1.example.com | [1c79 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [1c7a 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org1.example.com | [1c7b 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [1c7c 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [1c7d 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org1.example.com | [1c7e 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [1c7f 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [6] +peer0.org1.example.com | [1c80 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +peer0.org1.example.com | [1c81 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] +peer0.org1.example.com | [1c82 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer0.org1.example.com | [1c83 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [6] +peer0.org1.example.com | [1c84 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer0.org1.example.com | [1c85 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [1c86 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad +peer0.org1.example.com | [1c87 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [1c88 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [1c89 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [1c8a 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [1c8b 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [1c8c 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [1c8d 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [1c8e 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [1c8f 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [1c90 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [1c91 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1c92 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1c93 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1c94 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1c96 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1c95 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1c97 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1c98 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1c99 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1c9a 06-12 02:15:37.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [1c9b 06-12 02:15:37.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [1c9c 06-12 02:15:37.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [1c9d 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1c9e 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [1c9f 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1ca0 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ca1 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ca2 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1ca3 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ca4 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ca5 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ca6 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ca7 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1ca8 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1ca9 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1caa 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1cab 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1cac 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1cad 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1cae 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1caf 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1cb0 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [1cb1 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1cb2 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020o" signature:"0D\002 \010U,\262\306\3538\216\363\342\212\354\355\324\035\246qjE+\243\364\310\217\017P{!W\313\0005\002 9\212E\357\366\311{\246\010\340\227Ay!\033!Y\236\362[\020q\212%\367#\nj\344\262\236\010" secret_envelope:\">\330K\213\354\276\326\226S\210\314" > > +peer0.org1.example.com | [1cb3 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cb4 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ad0 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ad1 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1ad2 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1ad4 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1ad3 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ad5 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1ad7 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1ad8 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1ad6 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ad9 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1adb 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ada 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1adc 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1add 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1adf 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ade 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ae0 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1ae1 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ae2 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ae3 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ae4 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1ae5 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1ae6 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ae7 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ae9 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ae8 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1aea 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1aeb 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1aec 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1aed 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1aee 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1aef 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1af0 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1af1 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1af2 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1af3 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1af4 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1af5 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1af6 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1af7 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1af8 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1af9 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1afa 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1afb 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1afc 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [1afd 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1afe 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020n" signature:"0E\002!\000\263\201\345|9S\235X\tbY\233\210g\246\301\303\256[I\241\002F\342/\332\034?\326\336\262a\002 \\O\245=r\t\372\266\270\215\364D\007\217h\246\315\"\232\343\246[\333V\376[\314\267\020\373\203\003" > alive: +peer1.org2.example.com | [1aff 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b00 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b01 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b02 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1b03 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b04 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b05 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b06 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1b07 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1b08 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1b09 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1b0a 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1b0b 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1b0c 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b0d 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b0e 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1b0f 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1b10 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b11 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b12 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b13 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b14 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1b15 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b16 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b17 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b18 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b19 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b1a 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b1b 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1b1c 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b1d 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b1e 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b1f 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b20 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b21 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [1b22 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b23 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b24 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1b25 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b26 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b27 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b28 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [19a2 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [19a3 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19a4 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [19a5 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [19a6 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [19a7 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [19a8 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [19a9 06-12 02:15:32.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19aa 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [19ab 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19ac 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [19ad 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [19ae 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [19af 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19b0 06-12 02:15:32.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [19b1 06-12 02:15:32.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [19b2 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [19b3 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [19b4 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19b5 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [19b6 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [19b7 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [19b8 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [19b9 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [19ba 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [19bb 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [19bc 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [19bd 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [19be 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [19bf 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [19c0 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [19c2 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [19c3 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19c1 06-12 02:15:32.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:4\272\372_\335z 3\314I\361`\211&\003b\000S\213" secret_envelope: > +peer0.org2.example.com | [19c4 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [19c5 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [19c6 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [19c7 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19c8 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [19c9 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [19ca 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cb5 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cb6 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cb7 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1cb8 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1cb9 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cba 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cbb 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1cbc 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1cbd 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1cbe 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1cbf 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1cc0 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1cc1 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1cc2 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1cc3 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1cc4 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1cc6 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cc5 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cc7 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1cc8 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1cc9 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cca 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ccb 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1ccc 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b29 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1b34 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b35 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b36 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b37 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1b38 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b39 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b3a 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b3b 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b3c 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b3d 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1b3e 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1b3f 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1b40 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1b41 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1b42 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1b43 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1b44 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1b45 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1b46 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [1b47 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [19cb 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [19cc 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19cd 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [19ce 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [19cf 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [19d0 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [19d1 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [19d2 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [19d3 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [19d4 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [19d5 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [19d6 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [19d7 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [19d8 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [19d9 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [19da 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > alive:\001}G\364\311\r\254u\205%\321\347\207\217+^" > +peer0.org2.example.com | [19db 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [19dc 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19dd 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19de 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [19df 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19e0 06-12 02:15:32.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [19e1 06-12 02:15:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [19e2 06-12 02:15:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [19e3 06-12 02:15:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [19e4 06-12 02:15:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [19e5 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19e6 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [19e7 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19e8 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [19e9 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19ea 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [19eb 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [19ec 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [19ed 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [19ee 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [19ef 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [19f0 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [19f1 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19f2 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [19f3 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [19f4 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [19f5 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19f6 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [19f7 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19f8 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1cce 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ccf 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1ccd 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cd0 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1cd1 06-12 02:15:37.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1cd2 06-12 02:15:37.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cd3 06-12 02:15:37.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1cd4 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cd5 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1cd6 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1cd7 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cd8 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cd9 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1cda 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1cdb 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1cdc 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1cdd 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1cde 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1cdf 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ce0 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ce1 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1ce2 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1ce3 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1b48 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > alive: alive: alive: +peer1.org1.example.com | [1b49 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b4a 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1b4b 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b4c 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b4d 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b4e 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b4f 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b50 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1b51 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b52 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b53 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b54 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1b55 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b56 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b57 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b58 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1b59 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1b5a 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b5c 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1b5d 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b5b 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1b5e 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1b5f 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1b60 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1b61 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1b62 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1b63 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b64 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b65 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1b66 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b67 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1b68 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b6a 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1b69 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b6b 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1b6c 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1b6d 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b6e 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1b6f 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b70 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1b71 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b72 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1b73 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b74 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1b75 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1b76 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b77 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b78 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1b79 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [1b7a 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [1b7b 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202fde60 env 0xc423c09230 txn 0 +peer1.org1.example.com | [1b7c 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423c09230 +peer1.org1.example.com | [1b7d 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +peer1.org1.example.com | [1b7e 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [1b7f 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [1b80 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org1.example.com | [1b81 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [1b82 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [1b83 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4234eb000, header channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +peer1.org1.example.com | [1b84 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [1b85 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [1b86 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [1b87 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org1.example.com | [1b88 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +peer1.org1.example.com | [1b89 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [1b8a 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423628000 +peer1.org1.example.com | [1b8b 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [ac1d825d-84b7-4210-9e87-fd05c0bfed1c] +peer1.org1.example.com | [1b8c 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [1b8d 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [ac1d825d-84b7-4210-9e87-fd05c0bfed1c] +peer1.org1.example.com | [1b8e 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin +peer1.org1.example.com | [1b8f 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [1b2b 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b2c 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1b2a 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1b2d 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1b2e 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1b2f 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1b30 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b31 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b33 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b32 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b34 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b35 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1b36 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1b37 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b39 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b38 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b3a 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b3b 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b3c 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1b3d 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b3e 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b3f 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b40 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b41 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b42 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b43 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b44 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [1b45 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b46 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b48 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b47 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b49 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b4b 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b4c 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b4a 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b4d 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b4e 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1b4f 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1b50 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1b51 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b52 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [19f9 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [19fa 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [19fb 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [19fc 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [19fd 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [19fe 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [19ff 06-12 02:15:32.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a00 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1a01 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1a02 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1a03 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a04 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a05 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a06 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a07 06-12 02:15:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a08 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org1.example.com | [1b90 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: +peer1.org1.example.com | [1b91 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad appears to be valid +peer1.org1.example.com | [1b92 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423628000 +peer1.org1.example.com | [1b93 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202fde60 env 0xc423c09230 txn 0 +peer1.org1.example.com | [1b94 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [1b95 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [1b96 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +peer1.org1.example.com | [1b97 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [1b98 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +peer1.org1.example.com | [1b99 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org1.example.com | [1b9a 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer1.org1.example.com | [1b9b 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org1.example.com | [1b9c 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org1.example.com | [1b9d 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org1.example.com | [1b9e 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org1.example.com | [1b9f 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [1ba0 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org1.example.com | [1ba1 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] marked as valid by state validator +peer1.org1.example.com | [1ba2 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [1ba3 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [1ba4 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [1ba5 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +peer1.org1.example.com | [1ba6 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] +peer1.org1.example.com | [1ba7 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xda, 0xe3, 0x9f, 0x6f, 0xc0, 0x2e, 0x93, 0x8e, 0x90, 0xdd, 0xb5, 0x7a, 0xe0, 0x7e, 0xe4, 0x67, 0xd8, 0x63, 0xcf, 0x55, 0x28, 0x99, 0x61, 0x9, 0xe7, 0xbc, 0x78, 0x2a, 0x92, 0xa3, 0xa1, 0x77} txOffsets= +peer1.org1.example.com | txId=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad locPointer=offset=70, bytesLength=2921 +peer1.org1.example.com | ] +peer1.org1.example.com | [1ba8 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to index +peer0.org1.example.com | [1ce4 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ce5 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1ce6 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1ce7 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ce8 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ce9 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1cea 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1cec 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ced 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cee 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1ceb 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cef 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1cf0 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1cf1 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1cf2 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1cf3 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1cf4 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cf6 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1cf5 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cf7 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1cf9 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 783 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cfa 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 783 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cf8 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cfb 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1cfc 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1cfd 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1cfe 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1cff 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org2.example.com | [1b53 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b54 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b55 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b56 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b57 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b58 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b59 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b5a 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b5b 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1b5c 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1b5d 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1b5e 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1b5f 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1b60 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1b61 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1b62 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b63 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b64 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1b65 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b66 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b67 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b68 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1b69 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b6a 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1a09 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a0a 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a0b 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a0c 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1a0e 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1a0f 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a10 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [1a11 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a12 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a13 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1a14 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a15 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1a16 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1a17 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1a18 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a19 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1a1a 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1a1b 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a1c 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1a1d 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1a1e 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a1f 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1a20 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a21 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1a23 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ba9 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx number:[0] ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to blockNumTranNum index +peer1.org1.example.com | [1baa 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55533], isChainEmpty=[false], lastBlockNumber=[5] +peer1.org1.example.com | [1bab 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] +peer1.org1.example.com | [1bac 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +peer1.org1.example.com | [1bad 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +peer1.org1.example.com | [1bae 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +peer1.org1.example.com | [1baf 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [1bb0 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org1.example.com | [1bb1 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bb2 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bb3 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1bb4 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1bb5 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bb6 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bb7 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1bb8 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1bb9 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1bba 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1bbb 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1bbc 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1bbd 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1bbe 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1bbf 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1bc0 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1d01 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d02 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d00 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d04 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d03 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d05 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d06 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d07 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d08 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d09 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d0a 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d0b 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d0c 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d0d 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1d0e 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1d0f 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1d10 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1d11 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1d12 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1d13 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d14 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1d15 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [1a22 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1a24 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a0d 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a26 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a27 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a25 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1a29 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a28 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1a2a 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1a2b 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1a2c 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1a2d 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a2e 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a2f 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1a30 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a31 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a32 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a33 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1a34 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 105 but got ts: inc_num:1528769651824440500 seq_num:104 +peer0.org2.example.com | [1a35 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a36 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a37 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1a38 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1a39 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1a3a 06-12 02:15:32.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1bc2 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bc1 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bc3 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1bc4 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1bc5 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bc6 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bc7 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1bc8 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1bc9 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bca 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1bcb 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bcc 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1bcd 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1bce 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bcf 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1bd0 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [1bd1 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [1bd2 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1bd3 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [1bd4 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [1bd5 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1bd6 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1bd8 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1bd9 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [1bd7 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bda 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1bdc 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d16 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d17 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020p" signature:"0E\002!\000\230Q\277b\025\321\224\033\367w;1\2206\341i\216Z\013\026O-\365q\016\210`\005\027\214\031\361\002 \021V\313\311\312T\353\355\353( W\\\340z1\232\374\314q\307*!?\256\003\375Jn\254\220\363" > +peer0.org1.example.com | [1d18 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d19 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d1a 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d1b 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1d1c 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d1d 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1d1e 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d1f 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1d20 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d21 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d22 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d23 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d24 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d25 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d26 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d27 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d28 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d29 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d2a 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a3b 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1a3c 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1a3d 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a3e 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1a40 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a41 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a42 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1a3f 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a43 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a44 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a45 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a46 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1a47 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1a48 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 105 but got ts: inc_num:1528769652088169500 seq_num:104 +peer0.org2.example.com | [1a49 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a4a 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a4b 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1a4c 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 105 but got ts: inc_num:1528769651824440500 seq_num:103 +peer0.org2.example.com | [1a4d 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a4e 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1a4f 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1a50 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a51 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a52 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1a53 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1a54 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1b6b 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1b6c 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1b6d 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1b6e 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1b6f 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b70 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b71 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b72 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1b73 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1b74 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b75 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b76 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1b77 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b78 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1b79 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1b7a 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [1b7b 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1b7c 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1b7d 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1b7e 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1b7f 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b80 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b81 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b82 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b83 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b84 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1bdd 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bde 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1bdf 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1bdb 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1be0 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1be1 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1be3 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1be4 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1be5 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1be6 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1be7 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1be2 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1be8 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1be9 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bea 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1beb 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d2b 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d2c 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d2d 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d2e 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d2f 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d30 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d31 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d32 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d33 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d34 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d35 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [1d36 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d37 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1d38 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d39 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d3a 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d3b 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d3c 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d3d 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d3e 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1a55 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1a56 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1a57 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a58 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1a59 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a5a 06-12 02:15:32.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a5b 06-12 02:15:32.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a5c 06-12 02:15:32.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [1a5d 06-12 02:15:32.61 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [1a5e 06-12 02:15:32.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [1a5f 06-12 02:15:32.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1a60 06-12 02:15:32.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [1a61 06-12 02:15:32.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a62 06-12 02:15:32.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1a63 06-12 02:15:32.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1a64 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a65 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a66 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a67 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a68 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a69 06-12 02:15:32.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a6a 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a6b 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a6c 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a6d 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a6e 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a6f 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a70 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 1 2 3] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1a71 06-12 02:15:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a72 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a73 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a74 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [1a75 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a76 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a77 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a78 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1a79 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a7a 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a7b 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a7c 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1a7d 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1a7e 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1a7f 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1a80 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1a81 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1a82 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a83 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1a84 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a85 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1a86 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a87 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a88 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1a89 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bec 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1bee 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1bef 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bf0 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1bed 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bf2 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1bf1 06-12 02:15:37.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bf3 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1bf4 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bf5 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bf6 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1bf7 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1bf8 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1bf9 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1bfa 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1bfb 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1bfc 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1bfd 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1bfe 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1bff 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1c00 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1c01 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1c02 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1c03 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c04 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1c05 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c06 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c07 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c08 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c0a 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1c0b 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1c09 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c0c 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1c0d 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c0e 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [1c0f 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1c10 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [1c11 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1c12 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1c13 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1c14 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1c15 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c16 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1c18 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c17 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c19 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c1a 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1c1b 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 111 but got ts: inc_num:1528769652429776900 seq_num:110 +peer1.org1.example.com | [1c1c 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c1d 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1c1e 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1c1f 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1c20 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c21 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1c22 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1c23 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1c24 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1c25 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1c26 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1c27 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1c28 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c29 06-12 02:15:37.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1c2a 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c2b 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c2c 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1c2d 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c2e 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c2f 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c30 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1c31 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1c32 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1c33 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1c34 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1c35 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1c36 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c37 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1c38 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1c39 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1c3a 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c3b 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c3c 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c3d 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c3e 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c3f 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c40 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1c41 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c42 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c43 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1c44 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c45 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1c46 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c47 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c48 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1c49 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [1c4a 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1c4b 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1c4d 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c4f 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a8a 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1a8b 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a8c 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a8d 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1a8e 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1a8f 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1a90 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a91 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a92 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a93 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1a94 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a95 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1a96 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1a97 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1a98 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1a99 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1a9a 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1a9b 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1a9c 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1a9d 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1a9e 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1a9f 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1aa0 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [1aa1 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1aa2 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020i" signature:"0E\002!\000\365\375\237\371\321G\271\207\2714\233\005{u}\3229\222\"\245\333\317\301\037)\344\314}t\265x\325\002 r\2543\347\212\264\250\311A\000|\232\363\303\275\277\373/3\365\223\247\221aJ\022\324\377\335uj\350" > alive: alive:\221E\023cEy\256\212\254*k\330Y\305\332I,2\356\232H:]y\357" > +peer0.org2.example.com | [1aa3 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1aa4 06-12 02:15:33.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1aa5 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1aa6 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1aa7 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1aa8 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1aa9 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1aaa 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1aab 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1aac 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1aad 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1aae 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1aaf 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1ab0 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1ab1 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1ab2 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1ab3 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1ab4 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [1ab5 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ab6 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer0.org2.example.com | [1ab7 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ab8 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ab9 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1aba 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1abb 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [1abc 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1abd 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1abe 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1abf 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ac0 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1ac1 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ac2 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ac3 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ac4 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ac5 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ac6 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1ac7 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1ac8 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1ac9 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1aca 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1acb 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1acc 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1acd 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1ace 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [1acf 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ad0 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > alive: alive: alive: +peer0.org2.example.com | [1ad1 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ad2 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ad3 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ad4 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ad5 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1ad6 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ad7 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [1ad8 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ad9 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [1ada 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1adb 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ade 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1adc 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1adf 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1add 06-12 02:15:36.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ae0 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ae1 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ae2 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ae3 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ae4 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ae5 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ae6 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ae7 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ae8 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ae9 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1aea 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1aeb 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1aec 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1aed 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1aee 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1aef 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1af0 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1af1 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1af2 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1af3 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1af4 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org2.example.com | [1af5 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1af6 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1af8 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1af9 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1afa 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1af7 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org2.example.com | [1afb 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1afc 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1afd 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1afe 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1aff 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b00 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1b01 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b02 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b03 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b04 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1b05 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1b06 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1b07 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1b08 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1b09 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1b0a 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b0b 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1b0c 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b0d 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b0e 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1b0f 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b10 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b11 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b12 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b13 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1b14 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1b15 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [1b16 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b17 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1b18 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b19 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1b1a 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b1b 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1b1d 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1b1c 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1b1e 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1b20 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1b1f 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b21 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1b22 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b23 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1b24 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b25 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b26 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b28 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1b27 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b29 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 108 but got ts: inc_num:1528769653227426900 seq_num:107 +peer0.org2.example.com | [1b2a 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b2b 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b2d 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b2e 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b2c 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1b2f 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b30 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b31 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b32 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1b33 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b34 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b35 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 109 but got ts: inc_num:1528769651824440500 seq_num:108 +peer0.org2.example.com | [1b37 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b36 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b38 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b39 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1b3a 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1b3b 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1b3c 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1c4e 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c4c 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1c50 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c51 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c52 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c53 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c54 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c55 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c56 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c57 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c58 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c59 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org1.example.com | [1c5a 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c5b 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c5d 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c5c 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c5e 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c5f 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c60 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c61 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c62 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c63 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c64 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c65 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c66 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1c67 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1c68 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1c69 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1c6a 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1c6b 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1c6c 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1c6d 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c6e 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1c6f 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [1c70 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1c72 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c71 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020o" signature:"0D\002 \010U,\262\306\3538\216\363\342\212\354\355\324\035\246qjE+\243\364\310\217\017P{!W\313\0005\002 9\212E\357\366\311{\246\010\340\227Ay!\033!Y\236\362[\020q\212%\367#\nj\344\262\236\010" > alive: alive: +peer1.org1.example.com | [1c73 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c74 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c75 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c76 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b85 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b86 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b87 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1b88 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1b89 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1b8a 06-12 02:15:40.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1b8b 06-12 02:15:40.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1b8c 06-12 02:15:40.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1b8d 06-12 02:15:40.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1b8e 06-12 02:15:40.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1b8f 06-12 02:15:40.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1b90 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b91 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b92 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [1b93 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1b94 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1b95 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1b97 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1b96 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b99 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b98 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1b9a 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1b9c 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1b9b 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b9d 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1b9e 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1b9f 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ba0 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b3d 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1b3e 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1b3f 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b40 06-12 02:15:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1b41 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1b42 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1b43 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b44 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1b45 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b46 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b47 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b48 06-12 02:15:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b49 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b4a 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b4b 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b4c 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b4d 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1b4e 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b4f 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b50 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b51 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b52 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1b53 06-12 02:15:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b54 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b55 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1b56 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b57 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1d3f 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d40 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d42 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d43 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d44 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d45 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d41 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d46 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d47 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d48 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d49 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d4a 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d4b 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d4c 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d4d 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d4e 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1d4f 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d50 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d51 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1d52 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d53 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d54 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1d55 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1c77 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1c78 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c79 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c7a 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c7b 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [1c7c 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c7d 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c7e 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c7f 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c80 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 2 1 3] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1c81 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c82 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1c84 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c85 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c86 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c83 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c87 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c88 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c89 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c8b 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c8a 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ba1 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ba2 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ba3 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ba4 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ba5 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ba6 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ba7 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ba8 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ba9 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1baa 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bab 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1bac 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bad 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1bae 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1baf 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1bb1 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bb0 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1bb3 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1bb4 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1bb5 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1bb6 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1bb7 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1bb8 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [1bb2 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bb9 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1bbb 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1bba 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > alive:\267\271\334:\246Y{|\331<\024\211\356-\274\267\002 A\371 +peer1.org2.example.com | [1bbc 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bbd 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1bbe 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bbf 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bc0 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1bc1 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1bc2 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bc3 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d56 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1d57 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1d59 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d58 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1d5a 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1d5b 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1d5c 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d5d 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1d5f 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d5e 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d60 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1d61 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1d62 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d64 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d63 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1d65 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d66 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1d67 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1d68 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [1d69 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1d6a 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1d6b 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1d6c 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1d6d 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d6e 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1d70 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d6f 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d71 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1d72 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1d73 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 114 but got ts: inc_num:1528769652429776900 seq_num:113 +peer0.org1.example.com | [1d74 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d75 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d76 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1d77 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 112 but got ts: inc_num:1528769653227426900 seq_num:111 +peer0.org1.example.com | [1d78 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d79 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d7a 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1d7b 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d7c 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d7d 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1d7e 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1d7f 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1d80 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1d81 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1d82 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1d83 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1d84 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d85 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1d86 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d87 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bc4 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bc5 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1bc6 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1bc7 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [1bc8 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1bc9 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1bca 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1bcb 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1bcc 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1bcd 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1bce 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [1bcf 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1bd0 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer1.org2.example.com | [1bd1 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bd2 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1bd3 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bd4 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1bd5 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1bd6 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1bd7 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org1.example.com | [1c8d 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c8e 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [1c8f 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1c8c 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c90 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c91 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [1c93 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1c94 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1c95 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1c96 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1c97 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1c98 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1c99 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [1c9a 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1c9b 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" secret_envelope: > alive: > +peer1.org1.example.com | [1c9c 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b58 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b59 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1b5a 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1b5b 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1b5c 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1b5d 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1b5e 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1b5f 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1b60 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1b61 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b62 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b63 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1b64 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b65 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b66 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1b67 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1b68 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1b69 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b6a 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1b6b 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b6c 06-12 02:15:36.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1b6d 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b6e 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1b6f 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d88 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1d89 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d8a 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d8b 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d8c 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d8d 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [1d8e 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d8f 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d90 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d91 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1d92 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1d93 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1d94 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1d95 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1d96 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1d97 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1d98 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1d99 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1d9a 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1d9b 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1d9c 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [1d9d 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1d9f 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1da0 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1d9e 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\267\271\334:\246Y{|\331<\024\211\356-\274\267\002 A\371 alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020r" signature:"0D\002 \017\332N\252\352\265\364\224,\254\234\313\2063\237\244\316\370\221\234\000&\235q\321\357\3308\246\260-\227\002 F\301n6'Pn\021e\021\230\273^\267p\363eZ\231\307$v~\233\331\rV\204\376<\016c" > +peer0.org1.example.com | [1da1 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1da2 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1da3 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1da4 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1da5 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1da6 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1da7 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1da8 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [1da9 06-12 02:15:40.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1daa 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1dac 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1dad 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1dab 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [1dae 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [1daf 06-12 02:15:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1db0 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1b70 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1b71 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1b72 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +peer0.org2.example.com | [1b73 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +peer0.org2.example.com | [1b74 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [1b75 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [1b76 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422a399a0 env 0xc422b23500 txn 0 +peer0.org2.example.com | [1b77 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422b23500 +peer0.org2.example.com | [1b78 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +peer0.org2.example.com | [1b79 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [1b7a 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [1b7b 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org2.example.com | [1b7c 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [1b7d 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [1b7e 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423d44000, header channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +peer0.org2.example.com | [1b7f 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [1b80 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [1b81 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [1b82 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org2.example.com | [1b83 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +peer0.org2.example.com | [1b84 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [1b85 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423b4c000 +peer0.org2.example.com | [1b86 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [83dd9561-6ac8-4496-b173-8294f257cfeb] +peer0.org2.example.com | [1b87 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [1b88 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [83dd9561-6ac8-4496-b173-8294f257cfeb] +peer0.org2.example.com | [1b89 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin +peer0.org2.example.com | [1b8a 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [1c9d 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1c92 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 783 bytes, Signature: 0 bytes +peer1.org1.example.com | [1c9e 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1c9f 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 783 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ca0 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ca1 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ca2 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ca3 06-12 02:15:40.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1ca4 06-12 02:15:40.41 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1ca5 06-12 02:15:40.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ca6 06-12 02:15:40.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1ca7 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ca8 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ca9 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [1caa 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1cab 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cac 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cad 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cae 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1caf 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1cb0 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cb1 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cb2 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1cb3 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cb4 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1db1 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1db2 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1db3 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1db4 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1db5 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1db6 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1db7 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1db8 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1db9 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1dba 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1dbb 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1dbc 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1dbd 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1dbe 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1dbf 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1dc0 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [1dc1 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1dc2 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020s" signature:"0E\002!\000\245\013\301\014\207r\340\003\020&z\236\222r|?5\274&\032i\210\360\206\213\361,\027g\345G\353\002 \017\214\366\252j\373\376!X\260\345\240\361\224\206&+8\037\216kqs\237\275\037\241\003\306\0201\037" secret_envelope: > +peer0.org1.example.com | [1dc3 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer0.org1.example.com | [1dc4 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1dc5 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1bd8 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1bd9 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1bda 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1bdb 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1bdc 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bdd 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bde 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1bdf 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1be0 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1be1 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1be2 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1be3 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1be5 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1be4 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1be7 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1be6 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1be9 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers +peer1.org2.example.com | [1be8 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bea 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [1beb 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1bec 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [1bed 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1bee 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [1bef 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1bf0 06-12 02:15:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1bf1 06-12 02:15:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bf2 06-12 02:15:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1b8b 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: +peer0.org2.example.com | [1b8c 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad appears to be valid +peer0.org2.example.com | [1b8d 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423b4c000 +peer0.org2.example.com | [1b8f 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [1b90 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [1b8e 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422a399a0 env 0xc422b23500 txn 0 +peer0.org2.example.com | [1b91 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +peer0.org2.example.com | [1b92 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [1b93 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +peer0.org2.example.com | [1b94 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [1b95 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org2.example.com | [1b96 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [1b97 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [1b98 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org2.example.com | [1b99 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [1b9a 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [1b9b 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [1b9c 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] marked as valid by state validator +peer0.org2.example.com | [1b9d 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [1b9e 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [1b9f 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [1ba0 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +peer0.org2.example.com | [1ba1 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ba2 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] +peer0.org2.example.com | [1ba3 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ba4 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xda, 0xe3, 0x9f, 0x6f, 0xc0, 0x2e, 0x93, 0x8e, 0x90, 0xdd, 0xb5, 0x7a, 0xe0, 0x7e, 0xe4, 0x67, 0xd8, 0x63, 0xcf, 0x55, 0x28, 0x99, 0x61, 0x9, 0xe7, 0xbc, 0x78, 0x2a, 0x92, 0xa3, 0xa1, 0x77} txOffsets= +peer1.org1.example.com | [1cb5 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1cb6 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1cb7 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1cb8 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1cb9 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1cba 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1cbb 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1cbc 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1cbd 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [1cbe 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1cc0 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cc1 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1cbf 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > alive: alive: alive: +peer1.org1.example.com | [1cc2 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cc3 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cc4 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1cc5 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1cc6 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1cc7 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1cc8 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [1cc9 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1cca 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ccb 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ccc 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ccd 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1cce 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [1ccf 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1cd0 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [1cd1 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1cd2 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1cd3 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1cd4 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cd5 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1cd6 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cd7 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1cd8 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cd9 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1cda 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cdb 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cdc 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cdd 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1cde 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cdf 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ce0 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ce1 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ce2 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ce3 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ce4 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ce5 06-12 02:15:41.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1ce6 06-12 02:15:41.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1ce8 06-12 02:15:41.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1ce9 06-12 02:15:41.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ce7 06-12 02:15:41.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ceb 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cec 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1cea 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1ced 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1cee 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cf0 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1cf1 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1cf2 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1cf3 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1cf4 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1cf5 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1cf6 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1cf7 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1cf8 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1cf9 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1cfa 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1cfb 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1cfc 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1cfd 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1cfe 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1cff 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1d00 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1d01 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1d02 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d03 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1cef 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d04 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d05 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d06 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d07 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d08 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d09 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d0a 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d0b 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | txId=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad locPointer=offset=70, bytesLength=2921 +peer0.org2.example.com | ] +peer0.org2.example.com | [1ba5 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to index +peer0.org2.example.com | [1ba6 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx number:[0] ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to blockNumTranNum index +peer0.org2.example.com | [1ba7 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ba8 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55533], isChainEmpty=[false], lastBlockNumber=[5] +peer0.org2.example.com | [1ba9 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] +peer0.org2.example.com | [1baa 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +peer0.org2.example.com | [1bab 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +peer0.org2.example.com | [1bac 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +peer0.org2.example.com | [1bad 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [1bae 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org2.example.com | [1baf 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [1bb0 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org2.example.com | [1bb1 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org2.example.com | [1bb2 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [1bb3 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [6] +peer0.org2.example.com | [1bb4 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +peer0.org2.example.com | [1bb6 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer0.org2.example.com | [1bb5 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] +peer0.org2.example.com | [1bb8 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer0.org2.example.com | [1bb7 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [6] +peer0.org2.example.com | [1bb9 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [1bba 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad +peer0.org2.example.com | [1bbb 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [1bbc 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [1bbd 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [1bbe 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [1bbf 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [1bc0 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [1bc1 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [1bc2 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [1bc3 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [1dc6 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dc7 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1dc8 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1dc9 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dca 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dcb 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1dcc 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1dcd 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1dcf 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1dce 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dd0 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1dd1 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dd3 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1dd2 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1dd4 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1dd5 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1dd7 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1dd8 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dd9 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1dd6 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dda 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ddb 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ddc 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ddd 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1dde 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1ddf 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1de0 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1de2 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1de1 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1de3 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1de4 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [1de5 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1de6 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1de8 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1de7 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1de9 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dea 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1deb 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1dec 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ded 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1dee 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [1def 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [1df0 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [1df1 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1df2 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [1df3 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1df4 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1df5 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1df6 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1df7 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1df8 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1df9 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1dfa 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1dfb 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1dfc 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1dfd 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1dfe 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1dff 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1e01 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1e02 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1e00 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1e03 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1e04 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e05 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1e06 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1e07 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1e08 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1e09 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1e0a 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e0b 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1e0c 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1e0d 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1e0e 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1bc4 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bc5 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1bc7 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bc8 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bc9 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1bca 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1bcb 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1bcc 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1bcd 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1bce 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1bcf 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1bd0 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1bc6 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1bd2 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1bd3 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1bd1 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bd4 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1bd5 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bd6 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1bd7 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bd8 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1bd9 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1bda 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bdb 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1bdc 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bdd 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bde 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1bdf 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1be0 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1be1 06-12 02:15:37.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1be2 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1be3 06-12 02:15:37.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1be4 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [1be5 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1be6 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1be7 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1be8 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1be9 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1bea 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1beb 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1bec 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1bed 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1bee 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1bef 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1bf0 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1bf1 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1bf2 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [1bf3 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1bf4 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020n" signature:"0E\002!\000\263\201\345|9S\235X\tbY\233\210g\246\301\303\256[I\241\002F\342/\332\034?\326\336\262a\002 \\O\245=r\t\372\266\270\215\364D\007\217h\246\315\"\232\343\246[\333V\376[\314\267\020\373\203\003" > alive: alive:A0\364\033\344\367/\255\364\357\366\002}`~\364\357\354pUv\002 \025\330\301_8\321v\230p\235s\301\244&\305\320\324I\363\343\203\004\016'\302 \346I\333\024\351\240" > +peer0.org2.example.com | [1bf5 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1bf6 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1bf7 06-12 02:15:37.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [1bf8 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1bfa 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bf9 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1bfb 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1bfd 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1bfc 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1bfe 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1bff 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c00 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c01 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [1c02 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [1c03 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [1c04 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1c05 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c06 06-12 02:15:37.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c07 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c08 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1c09 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c0a 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c0b 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c0c 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1c0d 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1c0e 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1c0f 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1c11 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1c12 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1c13 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1c14 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1c10 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c15 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1c16 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c17 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c18 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1c19 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1c1a 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1c1b 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c1c 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c1d 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c1e 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c1f 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c20 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c21 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1c22 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c23 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c24 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1c25 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c26 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c27 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c28 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c29 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer0.org2.example.com | [1c2a 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c2b 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c2c 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c2d 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c2f 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c2e 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c30 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c31 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c32 06-12 02:15:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c33 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c34 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c35 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c36 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c37 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [1c38 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1c39 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [1c3a 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1c3b 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1c3c 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1c3d 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1c3e 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1c3f 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1c40 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [1c41 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1c43 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c42 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org2.example.com | [1c44 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c45 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c46 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c47 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [1c48 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c49 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c4a 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c4b 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c4c 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1c4d 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c4e 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c4f 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c50 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c51 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c52 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1c53 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1c54 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1c55 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1c56 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1c57 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1c58 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1c59 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1c5a 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [1c5b 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1c5c 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > alive: alive: +peer0.org2.example.com | [1c5e 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c5d 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c5f 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c60 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c61 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1c62 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1c63 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [1c64 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1c65 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c66 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [1c67 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1c68 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c69 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c6a 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c6b 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c6c 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c6d 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c6f 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c6e 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c70 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c71 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c72 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c73 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c74 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c75 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c76 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c77 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1c78 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1c79 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c7a 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1c7d 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c7c 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c7e 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c7f 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c7b 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1c80 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c81 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c82 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c83 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c84 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1c85 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1c86 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c88 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1c87 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c8a 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c89 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1c8b 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c8c 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1c8d 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c8e 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1c8f 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1c90 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1c91 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1c92 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1c93 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1c94 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1c95 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1c96 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1c97 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1c99 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1c9a 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c98 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1c9b 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1c9c 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1c9d 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1c9e 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1c9f 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1ca0 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1ca1 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [1ca2 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ca3 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ca4 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ca5 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ca6 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ca7 06-12 02:15:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ca8 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ca9 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1caa 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1cab 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1cac 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1cad 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1cae 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1caf 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1cb0 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cb1 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1cb3 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cb2 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1cb4 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1cb5 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 113 but got ts: inc_num:1528769653227426900 seq_num:112 +peer0.org2.example.com | [1cb6 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1cb7 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1cb8 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1cb9 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1cba 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cbb 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1cbc 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1cbd 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1cbe 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1cbf 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1cc0 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 114 but got ts: inc_num:1528769651824440500 seq_num:113 +peer0.org2.example.com | [1cc2 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1cc1 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer0.org2.example.com | [1cc4 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1cc5 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1cc6 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1cc7 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1cc8 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [1cc9 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1cc3 06-12 02:15:40.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1cca 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1ccb 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1ccc 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1ccd 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1cce 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1ccf 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1cd0 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1cd1 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1cd2 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cd3 06-12 02:15:40.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1cd4 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1cd5 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1cd6 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cd7 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1cd8 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cd9 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cda 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cdb 06-12 02:15:40.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1cdc 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cdd 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cde 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1cdf 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ce0 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ce1 06-12 02:15:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ce2 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ce3 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ce4 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ce5 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1ce6 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ce7 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ce8 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ce9 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1bf3 06-12 02:15:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bf4 06-12 02:15:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1bf5 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1bf6 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1bf7 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bf8 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1bf9 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bfa 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bfb 06-12 02:15:40.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1bfc 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bfd 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bfe 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1bff 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1c00 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c01 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c02 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c03 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c04 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c05 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c06 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1c07 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1c08 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1d0c 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d0d 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d0e 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [1d0f 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1d10 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [1d11 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1d12 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1d13 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1d14 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1d15 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d16 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d17 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d19 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d1a 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1d18 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d1b 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 115 but got ts: inc_num:1528769651824440500 seq_num:114 +peer1.org1.example.com | [1d1c 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d1d 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d1e 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1d1f 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 115 but got ts: inc_num:1528769652088169500 seq_num:114 +peer1.org1.example.com | [1d20 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d21 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d22 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1d23 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d24 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1e0f 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1e10 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e11 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1e12 06-12 02:15:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e13 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e14 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1e15 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e16 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e17 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e18 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1e19 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1e1a 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1e1b 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1e1c 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1e1e 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1e1d 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e1f 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1e21 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1e20 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e22 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1e23 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e24 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e25 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1e26 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1cea 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ceb 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cec 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ced 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cee 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1cef 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1cf0 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1cf1 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1cf2 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1cf3 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1cf4 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1cf5 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1cf6 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1cf7 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [1cf8 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1cf9 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020r" signature:"0D\002 \017\332N\252\352\265\364\224,\254\234\313\2063\237\244\316\370\221\234\000&\235q\321\357\3308\246\260-\227\002 F\301n6'Pn\021e\021\230\273^\267p\363eZ\231\307$v~\233\331\rV\204\376<\016c" > alive:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > alive: +peer0.org2.example.com | [1cfa 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1cfb 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1cfc 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c09 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1c0a 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1c0b 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1c0c 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1c0d 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c0e 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [1c0f 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1c10 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > alive: alive:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > alive:\020\270\3139\222" > +peer1.org2.example.com | [1c11 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c12 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c13 06-12 02:15:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1c14 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1c15 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1c16 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c17 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1c1a 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c19 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c18 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c1b 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c1c 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c1d 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c1e 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1c1f 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c20 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c21 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c22 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1c23 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1c24 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1c25 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1c26 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1c27 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1c29 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1c28 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c2a 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c2b 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1c2c 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c2d 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c2e 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c2f 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c30 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c31 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1c32 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c33 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c34 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c35 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1c36 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1c38 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c37 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c39 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c3a 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c3b 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c3c 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1c3d 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c3e 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c3f 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c40 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1c41 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1c42 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1c43 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1c44 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1c45 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1c46 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1c47 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c48 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c49 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c4a 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1c4b 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c4c 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c4d 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c4e 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1cfd 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1cfe 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1cff 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d00 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d01 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d02 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1d03 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1d04 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1d05 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1d06 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1d07 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1d08 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1d09 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d0a 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1d0b 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1d0c 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d0d 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d0f 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d0e 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d10 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d11 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1d12 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d13 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d14 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d25 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d26 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1d27 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1d28 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1d29 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1d2a 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1d2b 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1d2c 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d2d 06-12 02:15:41.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d2e 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d2f 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1d30 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d31 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d32 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d33 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1d34 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1d35 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1d36 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1d37 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1d38 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1d39 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d3a 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d3b 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d3c 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1d3e 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1d3f 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d40 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d41 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d42 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d3d 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d43 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1d44 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d45 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d46 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d47 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d48 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d49 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1d4a 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d4b 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d4c 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d4d 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d4e 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d4f 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1d50 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d51 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d52 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d53 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1d54 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1d15 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d16 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1d17 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d18 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d19 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d1a 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d1b 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1d1c 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d1d 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d1e 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d1f 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1d20 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1d21 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1d22 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1d23 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1d24 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1d25 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1d26 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d27 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1d28 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1d2a 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d29 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d2b 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d2c 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e27 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1e28 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e29 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e2a 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e2b 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e2c 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e2d 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e2e 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1e2f 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e30 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e31 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1e32 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1e33 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e35 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e36 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e37 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e34 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e38 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e39 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e3a 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e3b 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e3d 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e3c 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e3e 06-12 02:15:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e3f 06-12 02:15:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e40 06-12 02:15:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e41 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c4f 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1c50 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c51 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c52 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c53 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c54 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c55 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1c56 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c57 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1c58 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c59 06-12 02:15:42.60 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org2.example.com | [1c5a 06-12 02:15:42.60 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org2.example.com | [1c5b 06-12 02:15:42.60 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org2.example.com | [1c5c 06-12 02:15:42.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c5d 06-12 02:15:42.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c5e 06-12 02:15:42.62 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [1c5f 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c60 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c61 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1c62 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c63 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c64 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c65 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1c66 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1c67 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1c68 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1c6a 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c6b 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1c69 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1c6c 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1c6d 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1c6e 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c6f 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c71 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c70 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c72 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1c73 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1c74 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c75 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c76 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c77 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c78 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c79 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1c7a 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c7b 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c7c 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c7d 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c7e 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c7f 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1d2d 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d2e 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1d2f 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d30 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d31 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d32 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d33 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d34 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1d35 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d36 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d37 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d38 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [1d39 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1d3a 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1d3c 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1d3d 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d3b 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d3e 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d3f 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d40 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d41 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d42 06-12 02:15:42.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [1d43 06-12 02:15:42.61 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [1d44 06-12 02:15:42.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [1d45 06-12 02:15:42.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1d46 06-12 02:15:42.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d47 06-12 02:15:42.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d48 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d49 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1d4a 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d4b 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d4c 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d4d 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1d4e 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1d4f 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1d50 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1d51 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1d52 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1d53 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1d54 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d55 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1d57 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1d56 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d58 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d59 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d5a 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d5b 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d5c 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1d5d 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d5e 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d5f 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d60 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d61 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d62 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1d63 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d64 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1d65 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d66 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d67 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d68 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d69 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d6a 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d6b 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d6c 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [1d6d 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1d6e 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [1d6f 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1d70 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1d71 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1c80 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1c81 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1c82 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c83 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c84 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c85 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c86 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c87 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1c88 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c89 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c8a 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c8b 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1c8c 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1c8d 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1c8e 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1c8f 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1c90 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1c91 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c92 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c93 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [1c94 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1c95 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1c96 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1c97 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1c98 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1c99 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1c9b 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1c9a 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c9c 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1c9d 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1c9e 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1c9f 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1ca0 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1ca1 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ca2 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1ca3 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1ca4 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1ca5 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1ca6 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1ca7 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1ca8 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1ca9 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1caa 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cac 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1cab 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1cad 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1cae 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1caf 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1cb0 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1cb1 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1cb2 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1cb3 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1cb4 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1cb5 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1cb6 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1cb7 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1cb8 06-12 02:15:44.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1cb9 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cba 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cbb 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [1cbc 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1cbd 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1cbe 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1cbf 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1cc0 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1cc1 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1cc2 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1cc4 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cc5 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1cc6 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cc7 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1cc3 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cc8 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cc9 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cca 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ccb 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ccc 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ccd 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cce 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ccf 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1cd0 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cd1 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cd2 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1cd3 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cd4 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cd5 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1cd6 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cd7 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1cd8 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cd9 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1cda 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1cdb 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1e42 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e43 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e44 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e45 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e46 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1e47 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1e48 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1e49 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1e4a 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1e4b 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1e4c 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1e4d 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1e4e 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [1e4f 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1e50 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\345\336\264\0345\013\340 U{1\371k9" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020u" signature:"0D\002 9\253\016\306\211z\201<\210w$\332\224\330\362bT\200FK&\030\347\306\310\004\332\354\203\207\340z\002 8\260`I\212\027y\317U#U\"\021\337MZ\023\033\301\314\017\220\274C#G\230\n\025Y\252." > +peer0.org1.example.com | [1e51 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e52 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e53 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1e54 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1e56 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1e55 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e57 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1e58 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [1e5a 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1e5b 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e5c 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e59 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e5d 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e5e 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e5f 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e60 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e61 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e62 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e63 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e64 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e65 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e66 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e67 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e68 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e69 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e6a 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e6b 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e6c 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e6d 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [1e6e 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e6f 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1e70 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1e71 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e72 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e73 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e74 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e75 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e76 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e77 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e78 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1e79 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1e7b 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1e7d 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e7a 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e7f 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1cdc 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1cdd 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1cde 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1cdf 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1ce0 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1ce1 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ce2 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [1ce3 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1ce4 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > alive:y\345i\333\321\0359%\243\252M\231\023\276\325\274\306h\210\372\266\303\346\263\324\217\251\002/9%" > +peer1.org2.example.com | [1ce5 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ce6 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ce7 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ce8 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ce9 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1cea 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ceb 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cec 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ced 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cee 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1cef 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1cf0 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [1cf1 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1cf2 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1cf3 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1cf4 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1cf5 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1cf6 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1cf7 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [1cf8 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1cf9 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\335\366a1\366\365 \002 ~\367\233\036\036\001;_\257|C%c`\033th\032\264\037\221s\331x\035\376`\375j\203\340p" secret_envelope:\216F\202\034PT\"\313\370\037\nh\210Vw\002 -\370\r\214\354\212\365|6\001\002\347q\355\230\324\0147\325\204I\240-`\"y\\z\301\245!\357" > > +peer1.org2.example.com | [1cfa 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cfb 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1cfc 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cfd 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1cfe 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1cff 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d00 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1d01 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d02 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1d03 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d04 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d55 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1d56 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1d57 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1d59 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d5b 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d5c 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1d5a 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1d5d 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d5e 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d5f 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d60 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d58 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org1.example.com | [1d61 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d62 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [1d63 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [1d64 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1d65 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1d67 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d66 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d68 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d69 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d6a 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d6b 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1d6c 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d6d 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d6e 06-12 02:15:42.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d72 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1d73 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1d74 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d75 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [1d76 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1d77 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\345\336\264\0345\013\340 U{1\371k9" secret_envelope: > alive: > +peer0.org2.example.com | [1d78 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d79 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d7a 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d7b 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d7c 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [1d7d 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d7e 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d7f 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d80 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d81 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1d82 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d83 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d84 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d85 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d86 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d87 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e7c 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e80 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e81 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e82 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e83 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e84 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e85 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e86 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e87 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1e88 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1e89 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [1e7e 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1e8a 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1e8b 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1e8c 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1e8d 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [1e8e 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1e8f 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1e90 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1e91 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1e92 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1e93 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1e94 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e95 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1e97 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1e96 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1e98 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1e99 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1e9a 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1e9b 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1e9c 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1e9d 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1e9e 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1e9f 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ea0 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1ea1 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 117 but got ts: inc_num:1528769653227426900 seq_num:116 +peer0.org1.example.com | [1ea2 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ea3 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ea4 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1ea5 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ea6 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ea7 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1ea8 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1ea9 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1eaa 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1eab 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1eac 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1ead 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1eae 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1eaf 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1eb0 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1eb1 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1eb2 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1eb3 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1eb4 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 118 but got ts: inc_num:1528769651824440500 seq_num:117 +peer0.org1.example.com | [1eb5 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1eb6 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1eb7 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1eb8 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1eb9 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1eba 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1ebb 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1ebc 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1ebd 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1ebe 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1ebf 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1ec0 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1ec1 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ec2 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ec3 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ec4 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ec5 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1ec6 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ec7 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ec8 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ec9 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [1eca 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [1ecb 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ecc 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ecd 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ece 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ecf 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ed0 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1ed1 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1ed2 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1ed3 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1ed4 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1ed5 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1ed6 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1ed7 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ed8 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ed9 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [1eda 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1edc 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1edb 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:N\002\321H\211\343P\337\007\213n\033\312*\230\373\341\235\035\265\2319\250\253\257\237\364e{\002 0\255\036\316\325\304\005td\275\301\242U\240\3011<\014 alive: alive:y\345i\333\321\0359%\243\252M\231\023\276\325\274\306h\210\372\266\303\346\263\324\217\251\002/9%" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020w" signature:"0E\002!\000\241\340DvLC\247C\t\364:p\266\250\240j?/O\027\220W\363\375F\224\326\265`\303\377\276\002 \013\270\336P\222\300\3465K\301\272\334\315\005\244\357`\2769 \375\234v\351\302\r\211}{\304\207<" > +peer0.org1.example.com | [1edd 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1ede 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1edf 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ee0 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ee1 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ee2 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ee3 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ee4 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ee5 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ee6 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1ee7 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ee8 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ee9 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1eea 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [1eeb 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1eec 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1eed 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1eee 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1eef 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1ef0 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1ef1 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1ef2 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ef3 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ef4 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [1ef5 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1ef6 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020x" signature:"0E\002!\000\240\200\027j\"\233?#.\025{\006\330\007O\030\340\340UU\3142\272oA\216p*\225\230T\006\002 ->J8b\304\212\236\276\352\315J\372S\241\315L\334\004\341\223\246{`x\220\351\266\202\276\007\337" secret_envelope:\024\r\235\206a" > > +peer0.org1.example.com | [1ef7 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ef8 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1ef9 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1efa 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1efb 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1efc 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1efd 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1efe 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1eff 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1f00 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1f01 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1f02 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1f03 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1f04 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1f05 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1f06 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1f07 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f08 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1f09 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f0a 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f0b 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1f0c 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f0d 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f0e 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1f0f 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f10 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f11 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1f12 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1f13 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1f14 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f16 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f15 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f17 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f18 06-12 02:15:47.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [1f19 06-12 02:15:47.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1f1a 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1f1b 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1f1c 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f1d 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f1f 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f20 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f1e 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f21 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f22 06-12 02:15:47.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [1f23 06-12 02:15:47.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [1f24 06-12 02:15:47.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [1f25 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1f26 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f27 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f28 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f29 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f2a 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1f2b 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f2c 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f2d 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f2e 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1f2f 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1f30 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1f31 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1f32 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1f33 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1f34 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1f35 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1f36 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1f37 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1f38 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f39 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f3b 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f3a 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f3c 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f3d 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f3e 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1f3f 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f40 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f41 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1f42 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f43 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1f44 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f45 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1f46 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1f47 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [1f49 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f48 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f4a 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f4b 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f4c 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f4d 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f4e 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f4f 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f50 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f51 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f52 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f53 06-12 02:15:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f54 06-12 02:15:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f55 06-12 02:15:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f56 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d05 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d06 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d07 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d08 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d09 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d0a 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d0b 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d0c 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d0d 06-12 02:15:44.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d0e 06-12 02:15:44.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d0f 06-12 02:15:44.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d10 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1d11 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1d12 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d13 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d14 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d15 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d16 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d17 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d18 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d19 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d1a 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1d1b 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d1c 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d1d 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d1e 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1d88 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1d89 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1d8a 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1d8b 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1d8c 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1d8d 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1d8e 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1d8f 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1d90 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1d91 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [1d92 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1d93 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\345\336\264\0345\013\340 U{1\371k9" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > alive: alive: +peer0.org2.example.com | [1d94 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d95 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d96 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1d97 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1d98 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [1d99 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d9a 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1d9b 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1d9c 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [1d9d 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1d9e 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1d9f 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1da0 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f57 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f58 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f59 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f5a 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f5b 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1f5c 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1f5d 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1f5e 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1f5f 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1f60 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1f61 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1f62 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1f63 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [1f64 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1f65 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020z" signature:"0D\002 a\036\017K\224\352\266\215Ys\350\037\247\277\367\277y\221\310\357P\240\313\255\021#\346\230o2\033\215\002 \032\323O\324\257\234V\325\224u\217\311WG}\270\327[3\032\233\346X\312\203\202\230\317^\325\265\363" > +peer0.org1.example.com | [1f66 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f67 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f68 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1f69 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1f6a 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [1f6b 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1f6c 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [1d6f 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d70 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d71 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d72 06-12 02:15:42.26 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [1d73 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d74 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d75 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1d76 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d77 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d78 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d79 06-12 02:15:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1d7a 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1d7b 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1d7c 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1d7d 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1d7e 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1d7f 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1d80 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d81 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1d82 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1d83 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d84 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d85 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d1f 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d20 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d21 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1d22 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1d23 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1d24 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1d25 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1d26 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1d27 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1d28 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1d29 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [1d2a 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1d2b 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > alive: +peer1.org2.example.com | [1d2c 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d2d 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d2e 06-12 02:15:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1d2f 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1d30 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1d31 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1d32 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d33 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d34 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d35 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d36 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d37 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d38 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d39 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1d3a 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d3b 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d3c 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d3d 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1d3e 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1d3f 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1d40 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1d41 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1d42 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1d43 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1d44 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1d45 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1d46 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1d47 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d48 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d49 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d4a 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f6d 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1f6e 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f6f 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f70 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f71 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f72 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f73 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f74 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f75 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f76 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f77 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f78 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f79 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f7a 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f7b 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f7c 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f7d 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d86 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d87 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d88 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1d89 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d8a 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d8b 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d8c 06-12 02:15:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d8d 06-12 02:15:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d8e 06-12 02:15:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1d8f 06-12 02:15:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1d90 06-12 02:15:42.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1d91 06-12 02:15:42.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1d92 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [1d93 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1d94 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1d95 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1d96 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d98 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d99 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d9a 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d97 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1d9b 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d9c 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d9d 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1d9e 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1da1 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1da2 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1da3 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1da4 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1da6 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1da5 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1da7 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1da8 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1da9 06-12 02:15:44.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1daa 06-12 02:15:44.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1dab 06-12 02:15:44.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1dac 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1dae 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1dad 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d4b 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d4c 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1d4d 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d4e 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d4f 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1d50 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d51 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d52 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1d53 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d54 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d55 06-12 02:15:47.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1d56 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d57 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1d58 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d59 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d5a 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d5b 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1d5c 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1d5d 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1d5e 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1d5f 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1d60 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1d61 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1d62 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1d63 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [1f7e 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f7f 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f80 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f81 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f82 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [1f83 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f84 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f85 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1f86 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f87 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f88 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f89 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1f8a 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1f8b 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1f8c 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1f8d 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1f8e 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1f8f 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1f90 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1f91 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1f92 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [1f93 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f94 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1d9f 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1da0 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1da1 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1da2 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1da3 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1da4 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1da5 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1da6 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1da7 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1da8 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1da9 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1daa 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1dab 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [1dac 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1dae 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dad 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020t" signature:"0E\002!\000\233\342\371<7\003\307\251\007\257\326\276x\016\370\360\244\020\220\236\224Ez\240'#\351\334\312A\2703\002 V\343\367\003\010\3757\"b\010)\271\220c\242\266\223ZTg\353\262\223.ND\245\033\353z\177\312" > alive:X\345\336\264\0345\013\340 U{1\371k9" > alive: +peer1.org1.example.com | [1daf 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1db0 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1db1 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1db2 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1daf 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1db0 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1db1 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1db3 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1db2 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1db4 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1db5 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1db6 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1db8 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1db7 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1db9 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1dba 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1dbb 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1dbc 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1dbd 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1dbe 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1dbf 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1dc0 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1dc1 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1dc2 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1dc3 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1dc4 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1dc5 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1dc6 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1dc7 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1dc8 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1dc9 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1dca 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1dcb 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1dcc 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1dcd 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1dce 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1dcf 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1dd0 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1dd1 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1dd2 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1dd3 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1dd4 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1dd5 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1dd6 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1dd7 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [1dd8 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1dd9 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1dda 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ddb 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ddc 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1dde 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [1ddf 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1de0 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1de1 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1de2 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1de3 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1de4 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ddd 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1de5 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [1de6 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1de7 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1de8 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [1de9 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1dea 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1deb 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1dec 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1ded 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1dee 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1def 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1df0 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1df1 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1df3 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1df2 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1df4 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 119 but got ts: inc_num:1528769651824440500 seq_num:117 +peer0.org2.example.com | [1df5 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1df6 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1df7 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1df8 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1df9 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1dfa 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1dfb 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1dfc 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 119 but got ts: inc_num:1528769652088169500 seq_num:118 +peer0.org2.example.com | [1dfd 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1dfe 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1dff 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1e00 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e01 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1e03 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1e02 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e04 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1e05 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1e06 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1e07 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1e08 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e09 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e0a 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e0b 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e0c 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1e0d 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1e0e 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e0f 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e10 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e11 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e12 06-12 02:15:44.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e13 06-12 02:15:44.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e14 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e15 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e16 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e17 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e18 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e19 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e1a 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1e1b 06-12 02:15:44.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e1c 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e1d 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e1e 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [1e1f 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e20 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e21 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e22 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e23 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1e24 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1e25 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1e26 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1e27 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1e28 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1e29 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1e2a 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1e2b 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e2c 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [1e2d 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1e2f 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e2e 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\335\366a1\366\365 \002 ~\367\233\036\036\001;_\257|C%c`\033th\032\264\037\221s\331x\035\376`\375j\203\340p" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020w" signature:"0E\002!\000\241\340DvLC\247C\t\364:p\266\250\240j?/O\027\220W\363\375F\224\326\265`\303\377\276\002 \013\270\336P\222\300\3465K\301\272\334\315\005\244\357`\2769 \375\234v\351\302\r\211}{\304\207<" > alive:\341>Y\2252MYPhC\252`\264/\350n?\222\315m\3349V>\315\237" > +peer0.org2.example.com | [1e30 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e31 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e32 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e33 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1e34 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e35 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e36 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e37 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1e38 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1e39 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1e3a 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1e3b 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1e3c 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1e3d 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1e3e 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e3f 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1e40 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1e41 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e42 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e43 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e44 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e45 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e46 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1e47 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e48 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e49 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e4a 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e4b 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1e4c 06-12 02:15:46.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e4d 06-12 02:15:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e4e 06-12 02:15:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e4f 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e50 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1e51 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e52 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e53 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e54 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1e55 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1e56 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1e57 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1e58 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1e59 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1e5a 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1e5b 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e5c 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e5d 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e5e 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1e5f 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e60 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e61 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e62 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1e63 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1e64 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e66 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e65 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e67 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e68 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e69 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1e6a 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e6b 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e6c 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e6d 06-12 02:15:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [1e6e 06-12 02:15:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1e6f 06-12 02:15:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1e70 06-12 02:15:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1e71 06-12 02:15:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1e72 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e73 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1e74 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e75 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1e76 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e77 06-12 02:15:47.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [1e78 06-12 02:15:47.61 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [1e79 06-12 02:15:47.61 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [1e7a 06-12 02:15:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1e7b 06-12 02:15:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [1e7c 06-12 02:15:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e7d 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e7e 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e7f 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e80 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e82 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e83 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [1e84 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1e85 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [1e86 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1e87 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1e88 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1e89 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1e8a 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1e8b 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e8c 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [1e8d 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1e8e 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org2.example.com | [1e8f 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e90 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1e81 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e91 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e92 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e93 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [1e94 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e95 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e96 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e97 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1e98 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1e99 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e9a 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e9b 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1d64 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1d66 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d67 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d68 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1d69 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d65 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d6b 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d6c 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1d6a 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d6d 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d6e 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d6f 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d70 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1d71 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d72 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d73 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1d74 06-12 02:15:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d75 06-12 02:15:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d76 06-12 02:15:47.62 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [1d77 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d78 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d79 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1db3 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1db4 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1db5 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1db6 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1db7 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [1db8 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1db9 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dba 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dbb 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dbc 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 3 4 5 2] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1dbd 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1dbe 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1dbf 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dc0 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1dc1 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dc2 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1dc3 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dc4 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1dc5 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dc6 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dc7 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1dc8 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dc9 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dca 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1dcb 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dcc 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dcd 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f95 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f96 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f97 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [1f98 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1f99 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f9a 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1f9b 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f9c 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org1.example.com | [1f9d 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1f9e 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1f9f 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1fa0 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1fa1 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1fa2 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1fa3 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fa4 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1fa5 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1fa6 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1fa7 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [1fa8 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fa9 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1faa 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d7a 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1d7c 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1d7d 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d7e 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d7f 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d7b 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 270 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d81 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d82 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d83 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d84 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d80 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1d86 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d87 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d85 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1d88 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1d89 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1d8a 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d8b 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1d8c 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d8d 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1d8e 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d8f 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1d90 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1e9c 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1e9d 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1e9f 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ea0 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1ea1 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1ea2 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1ea3 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1ea4 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1ea5 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1ea6 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1ea7 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1e9e 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ea9 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1ea8 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1eaa 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1eab 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1eac 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ead 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1eae 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1eaf 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1eb0 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1eb1 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1eb2 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1eb3 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1dce 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dcf 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1dd0 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dd1 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [1dd2 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1dd3 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [1dd4 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1dd5 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1dd6 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1dd7 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1dd8 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1dd9 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1dda 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [1ddb 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1ddc 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" secret_envelope: > alive:N\002\321H\211\343P\337\007\213n\033\312*\230\373\341\235\035\265\2319\250\253\257\237\364e{\002 0\255\036\316\325\304\005td\275\301\242U\240\3011<\014\336\206%\361v\377\343?\002 \n\350\305>\350\\\000(\237\204\337\242\027\023S\257\363W7\244\375y\215\214\357\032\352\213c\204fQ" > > +peer1.org1.example.com | [1ddd 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dde 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1ddf 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer0.org1.example.com | [1fab 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1fac 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fad 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1fae 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1faf 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fb0 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1fb1 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fb2 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1fb3 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1fb4 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1fb5 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1fb6 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1fb7 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1fb8 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1fb9 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1fba 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1fbb 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1fbc 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1fbd 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1fbe 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1fbf 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1fc0 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1fc1 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1fc2 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fc3 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1fc4 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fc5 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1fc6 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1fc7 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1fc8 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1fc9 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [1fca 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1fcb 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [1fcc 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1fcd 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1fce 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1fcf 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1fd0 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1fd1 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1fd2 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fd3 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fd4 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1fd5 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fd6 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1fd7 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [1fd8 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1fd9 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1fda 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1fdb 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1fdc 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 124 but got ts: inc_num:1528769652429776900 seq_num:123 +peer0.org1.example.com | [1fdd 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1fde 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [1fdf 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [1fe0 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [1fe1 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1fe2 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1fe3 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [1fe4 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1fe5 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1fe6 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1fe7 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fe8 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fe9 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [1fea 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1feb 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fec 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fed 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [1fee 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [1fef 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ff0 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ff1 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org1.example.com | [1ff2 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [1ff3 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1de0 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1de1 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1de2 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1de3 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org1.example.com | [1de4 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org1.example.com | [1de5 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org1.example.com | [1de6 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1de7 06-12 02:15:44.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1de8 06-12 02:15:44.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1de9 06-12 02:15:44.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dea 06-12 02:15:44.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1deb 06-12 02:15:44.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1dec 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ded 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dee 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1def 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1df0 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1df1 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1df2 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1df3 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1df4 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1d91 06-12 02:15:48.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1d92 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1d93 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1d94 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1d95 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1d96 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1d97 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1d98 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d99 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1d9a 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d9b 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1d9c 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d9d 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1d9e 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1d9f 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1da0 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1da1 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1da2 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1da3 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1da4 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1da5 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1da6 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1da7 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [1da8 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1da9 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1daa 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1eb4 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1eb5 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1eb6 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1eb7 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1eb8 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1eb9 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1eba 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1ebb 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1ebc 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1ebd 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1ebe 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1ebf 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [1ec0 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ec1 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > alive:\003\221\270\014\256\345\207\033@\177\361\325\004\032n\215\353\211\353\222\342f,\321\361\373+" > alive: +peer0.org2.example.com | [1ec2 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ec3 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ec4 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1ec5 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ec6 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ec7 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [1ff4 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [1ff5 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [1ff6 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [1ff7 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [1ff8 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [1ff9 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [1ffa 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [1ffb 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [1ffc 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [1ffd 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [1ffe 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2000 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [2001 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [1fff 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\264Z\225\227qo\352\032\026\002 ;\006CP\307|>\367P\204?\310\036\355{\323!\032\217\035\351\220\246\214\356\313\227\346\006P\256\301" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020|" signature:"0D\002 \020?\253\036\327\370CQYF\256\014\344\021&\223\345\243\212\312\304+>)\t\375\024\207H\335nm\002 \010\336\314\237\371\035\244\300\202\301\24500\214rt\254+43\224\234R\340\375\347\242NL\364b\234" > +peer0.org1.example.com | [2002 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2003 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2004 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2005 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2006 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2007 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2008 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1df5 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1df6 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1df7 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1df8 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [1df9 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1dfa 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\345\336\264\0345\013\340 U{1\371k9" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > alive: +peer1.org1.example.com | [1dfb 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dfc 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1dfd 06-12 02:15:44.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1dfe 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1dff 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e00 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e01 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e02 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e03 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [1e04 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1e05 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1e06 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1e07 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [1e08 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1e09 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e0b 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e0a 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e0d 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e0c 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e0e 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e0f 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dab 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [1dac 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1dad 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1dae 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1daf 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [1db0 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1db1 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1db2 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1db3 06-12 02:15:48.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1db4 06-12 02:15:48.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1db5 06-12 02:15:48.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1db6 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1db7 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1db8 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [1db9 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1dba 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1dbb 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1dbc 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1dbd 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dbe 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1dbf 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1dc0 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1dc1 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dc2 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1dc3 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1dc4 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dc5 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1dc6 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dc7 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dc8 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dc9 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1dca 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dcb 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dcc 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1dcd 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dce 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dcf 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1dd1 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1dd0 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1dd3 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1dd4 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1dd5 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1dd6 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1dd7 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [2009 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [200a 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [200b 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [200c 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [200d 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [200e 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [200f 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [2010 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2011 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2012 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2013 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2014 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2015 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2016 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2017 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2018 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [2019 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [201a 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020}" signature:"0E\002!\000\3454L\2073\211/*#\026\337>\261\331\023A\314=\000m\200\3646T4 \202\217t\r\325N\002 L\"\352\211d\367\026\0237d\305\030\305\367\001\013n\331\265z\354M\361)\273@\026p\257\250_M" secret_envelope: > +peer0.org1.example.com | [201b 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org1.example.com | [201c 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [201d 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e11 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e12 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e13 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e10 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e14 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e15 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e16 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e17 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e18 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e19 06-12 02:15:45.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e1a 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1e1b 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1e1c 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ec8 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ec9 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1eca 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1ecb 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1ecc 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ecd 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [1ece 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ecf 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [1ed2 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ed3 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ed4 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ed0 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ed5 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ed1 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ed6 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ed7 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ed9 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1eda 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1edb 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ed8 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1edc 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1edd 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ede 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1dd8 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1dd9 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1dda 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1ddb 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1ddc 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1ddd 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1dde 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1ddf 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1de0 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1de1 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1de2 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1de3 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1de4 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1de5 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1dd2 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1de8 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1de7 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1de6 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1de9 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1dea 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1deb 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1dec 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1dee 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1def 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1df2 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ded 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [201e 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [201f 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2020 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2021 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [2022 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [2023 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2024 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2025 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2026 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2027 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2028 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2029 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [202a 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [202b 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [202c 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [202d 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [202e 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [202f 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [2030 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2031 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [2032 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2034 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1e1d 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e1e 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e1f 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e20 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e21 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e22 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e23 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e24 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e25 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e26 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e27 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e28 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1e29 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e2a 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e2b 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [1e2c 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1e2d 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [1e2e 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1e2f 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1e30 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1e31 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1e32 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e33 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e34 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e35 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e36 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1edf 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ee0 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ee1 06-12 02:15:48.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:),\254\302\026^`\246\002\313{\031\354R\307,\313\250kX#\246\372\360" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ee2 06-12 02:15:48.53 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ee4 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ee5 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ee6 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ee3 06-12 02:15:48.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ee9 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ee7 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ee8 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1eeb 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1eec 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1eed 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1eee 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1eef 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ef0 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1eea 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ef1 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1df3 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1df0 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1df1 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1df4 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1df5 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1df6 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1df7 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1df8 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org2.example.com | [1df9 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1dfa 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1dfb 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1dfc 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1dfd 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1dfe 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1dff 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1e00 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1e01 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1e02 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [1e03 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2035 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [2036 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2037 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [2038 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2033 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2039 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [203a 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [203b 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [203c 06-12 02:15:52.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [203d 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [203e 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [203f 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2040 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2041 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2042 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2044 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2043 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2045 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2046 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2047 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2048 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2049 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [204a 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [204b 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [204c 06-12 02:15:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [204d 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer0.org1.example.com | [204e 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [204f 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2050 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [2051 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e37 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e38 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e39 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1e3a 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e3b 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e3d 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e3c 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e3e 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1e3f 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1e40 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1e41 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1e42 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1e43 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1e44 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e45 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e46 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1e47 06-12 02:15:45.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 120 but got ts: inc_num:1528769652088169500 seq_num:119 +peer1.org1.example.com | [1e48 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e49 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e4a 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1e4b 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1e4c 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1e4d 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1ef3 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1ef6 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ef8 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ef7 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1ef4 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ef9 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ef2 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ef5 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1efa 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1efb 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1efc 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1efd 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1efe 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1eff 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1f00 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f01 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f02 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1f03 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1f04 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1f05 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1f06 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1f07 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1f08 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f09 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f0a 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f0b 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f0d 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f0c 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e04 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > alive: alive:\003\221\270\014\256\345\207\033@\177\361\325\004\032n\215\353\211\353\222\342f,\321\361\373+" > alive: +peer1.org2.example.com | [1e05 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e06 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e07 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e08 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e09 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e0a 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1e0b 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e0c 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:),\254\302\026^`\246\002\313{\031\354R\307,\313\250kX#\246\372\360" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e0d 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e0e 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:),\254\302\026^`\246\002\313{\031\354R\307,\313\250kX#\246\372\360" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e0f 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1e10 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1e11 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [1e12 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1e13 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1e14 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1e15 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1e16 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1e17 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1e18 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [1e19 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1e1a 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org1.example.com | [2052 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [2053 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2054 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [2055 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2056 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [2057 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2058 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2059 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [205a 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [205b 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [205c 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [205d 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [205e 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [205f 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2060 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2061 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [2062 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2063 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [2064 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2065 06-12 02:15:52.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [2066 06-12 02:15:52.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [2067 06-12 02:15:52.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [2068 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2069 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [206a 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [206b 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [206c 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [206d 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [206e 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [206f 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [2070 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2071 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2072 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2073 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2074 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2075 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2076 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2077 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2078 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [2079 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [207a 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\177" signature:"0D\002 [\361\222\027\315\344ZS\013\242\376<\346\321\341\227w\0348c~\363-j\270\361\201e\334(1w\002 x\247\214F\350\nz\234~\246\215\227W\303:H\224\0316\262!\331~\261\342\306E\013\255\203\357;" > +peer0.org1.example.com | [207b 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org1.example.com | [207c 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [207d 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [207e 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [207f 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [2080 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2081 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2082 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2083 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [2085 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2084 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2086 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2087 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2088 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2089 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [208a 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [208b 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [208c 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [208d 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [208f 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [208e 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2090 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2091 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2092 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2093 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2094 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [2095 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2096 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2097 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2098 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2099 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [209a 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [209b 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [209c 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [209d 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org1.example.com | [209e 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org1.example.com | [209f 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [20a0 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [20a1 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [20a2 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [20a3 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [20a4 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [20a5 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org1.example.com | [20a6 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [20a7 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [20a8 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [20a9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [20aa 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [20ab 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [20ac 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [20ad 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [20ae 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [20af 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [20b0 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [20b1 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [20b2 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [20b3 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [20b4 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [20b5 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [20b6 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20b7 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org1.example.com | [20b8 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [20b9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [20ba 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [20bb 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [20bc 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [20bd 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [20be 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20bf 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [20c0 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [20c1 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [20c2 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20c3 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [20c4 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [20c5 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [20c6 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [20c7 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [20c8 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [20c9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [20ca 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20cb 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [20cc 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [20cd 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [20ce 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [20cf 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [20d0 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 128 but got ts: inc_num:1528769651824440500 seq_num:127 +peer0.org1.example.com | [20d1 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20d2 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [20d3 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [20d4 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [20d5 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20d6 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [20d7 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [20d9 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [20d8 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 125 but got ts: inc_num:1528769653227426900 seq_num:124 +peer0.org1.example.com | [20db 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20dc 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [20dd 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [20da 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [20df 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [20de 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [20e0 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [20e1 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [20e2 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [20e3 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [20e4 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20e5 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [20e6 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [20e7 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [20e8 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [20e9 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [20ea 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [20eb 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20ec 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [20ed 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [20ee 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [20ef 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [20f0 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [20f1 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [20f2 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [20f3 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [20f4 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [20f5 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [20f6 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [20f7 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [20f8 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [20f9 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [20fa 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [20fb 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [20fc 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [20fd 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [20fe 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [20ff 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2100 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2101 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2102 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2103 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2104 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2105 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2106 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2107 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2108 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2109 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [210a 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [210b 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [210c 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [210d 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [210e 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [210f 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2110 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2111 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2112 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2113 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2114 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2115 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2116 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2117 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2118 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2119 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [211a 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [211b 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [211c 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [211d 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [211e 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [211f 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2120 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2121 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2122 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2123 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2124 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2125 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2126 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2127 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2128 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2129 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [212a 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [212b 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [212c 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:N[o\017\212\311\345^H\225H+!\267\224\253j>E\247!\223\264\375\003\002 a\341\317\312o,X\001\252\203\376\347\326].+\366\247\302\311\016\243 alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\201\001" signature:"0D\002 I\276l\243\\\233\306\030\373\317c\215 \177\026\235\263\3567,\305_\202\351\"\242S\007\023\020\024\372\002 pb\314}\314\374g\037c\201 +peer0.org1.example.com | [212d 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org1.example.com | [212e 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [212f 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2130 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2131 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2132 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2133 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2134 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2135 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2136 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2137 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2138 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2139 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [213a 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [213b 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [213c 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [213d 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [213e 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [213f 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2140 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2141 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2142 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2143 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2144 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2145 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2146 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2147 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2148 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2149 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [214a 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [214b 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [214c 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [214d 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [214e 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [214f 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2150 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2151 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2152 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2153 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2154 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2155 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2156 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2157 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2158 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2159 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [215a 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [215b 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [215c 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [215d 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [215e 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [215f 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2160 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2161 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2162 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2163 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2164 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [2165 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2166 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\202\001" signature:"0E\002!\000\340\262\326\376\364\025^\204_\356\367D74\233`O9\2745\353\"\0135\311\204\250\031\231\236\n\001\002 }C\310\211\203\\LN\037\250\333\227\205\r\352w\356%\254\002}\031+\034\227l\320\343\351z\177\337" secret_envelope:\003\021\310X\236\025\016\301X67\016\027\243r\212C\304\277\237@\225\\\234 \362\343V\002 !\247\215 1n;\257\370\271\260\251S\355\035|O\024\302\n\217\3520~\310\017\212\326\304=+n" > > +peer0.org1.example.com | [2167 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org1.example.com | [2168 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2169 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [216a 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [216b 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [216d 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [216c 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [216e 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [216f 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2170 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2171 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2172 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2173 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2174 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2175 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2176 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2177 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2178 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2179 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [217a 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [217b 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [217c 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [217d 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [217e 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [217f 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2180 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2181 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2182 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2183 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2184 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2185 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [2186 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2187 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\203\001" signature:"0E\002!\000\3173x\001\352\276Gw\236\342r\210F\222\256\210\274kB\261\325\016u.\334\361\235%R\225i'\002 ^jS\023\262\201\352\301\261\270\277\350\240\216*\332\351\343\265q\247!\333\t-\240\353\246 \202\304\"" > +peer0.org1.example.com | [2188 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [2189 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [218a 06-12 02:15:56.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [218b 06-12 02:15:56.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [218c 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [218d 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [218e 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [218f 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2190 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2191 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2192 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2193 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2194 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2195 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1f0e 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1f0f 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f10 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f11 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f12 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1f13 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1f14 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1f15 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1f16 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1f17 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1f18 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f19 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f1a 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1f1b 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 123 but got ts: inc_num:1528769653227426900 seq_num:122 +peer0.org2.example.com | [1f1c 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f1d 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f1e 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1f1f 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1f20 06-12 02:15:48.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1f21 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1f22 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1f23 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1f24 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f25 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e4e 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1e4f 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1e50 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e51 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e53 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e52 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [1e54 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e55 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1e56 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 121 but got ts: inc_num:1528769652429776900 seq_num:120 +peer1.org1.example.com | [1e57 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e58 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e59 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1e5a 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e5b 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e5c 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e5d 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1e5e 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 120 but got ts: inc_num:1528769652088169500 seq_num:118 +peer1.org1.example.com | [1e5f 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e60 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1e61 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1e62 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1e63 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1e64 06-12 02:15:45.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1e65 06-12 02:15:45.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1e66 06-12 02:15:45.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1e67 06-12 02:15:45.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e68 06-12 02:15:45.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e69 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e6a 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1e6b 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e6c 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e6d 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e6e 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1e6f 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1e70 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1e71 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1e72 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1e73 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1e74 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e75 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e76 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1e77 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1e78 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e79 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e7a 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e7b 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e7c 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e7d 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e7e 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1e7f 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e80 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e81 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e82 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e83 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e84 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1e85 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e86 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e87 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e88 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e89 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e8a 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1e8b 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1e8c 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e8d 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e8e 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1e8f 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1e90 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1e91 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1e92 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1e93 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1e94 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1e95 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e96 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e97 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1e98 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f26 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f27 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f29 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f28 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1f2a 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1f2b 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1f2c 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f2d 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f2f 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f2e 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [1f30 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1f31 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [1f32 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1f33 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1f34 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1f35 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1f36 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f37 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f38 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f39 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f3a 06-12 02:15:48.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f3b 06-12 02:15:48.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1f3c 06-12 02:15:48.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1f3d 06-12 02:15:48.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f3e 06-12 02:15:48.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1f3f 06-12 02:15:48.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f40 06-12 02:15:48.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org1.example.com | [2196 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2197 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2198 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2199 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [219a 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [219b 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [219c 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [219d 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [219e 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [219f 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [21a0 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [21a1 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21a2 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [21a3 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [21a4 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [21a5 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21a6 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [21a7 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [21a8 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [21a9 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [21aa 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org1.example.com | [21ab 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org1.example.com | [21ac 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21ad 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [21ae 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21af 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [21b0 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [21b1 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21b3 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org1.example.com | [21b4 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [21b2 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [21b5 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [21b7 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [21b6 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [21b8 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [21b9 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [21ba 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org1.example.com | [21bb 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [21bc 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org1.example.com | [21bd 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21be 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [21bf 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org1.example.com | [21c0 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21c1 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [21c2 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [21c3 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21c4 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21c5 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [21c6 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21c7 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21c8 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21c9 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [21ca 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [21cb 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21cc 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21cd 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [21ce 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [21cf 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [21d0 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [21d1 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [21d2 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [21d3 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21d4 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [21d5 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21d6 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [21d8 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21d9 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [21d7 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [21db 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21dc 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [21da 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21dd 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21df 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21de 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [21e0 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [21e1 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [21e2 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 133 but got ts: inc_num:1528769652429776900 seq_num:132 +peer0.org1.example.com | [21e3 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21e4 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21e5 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [21e6 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [21e7 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [21e8 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [21e9 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [21ea 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1e1b 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e1c 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:),\254\302\026^`\246\002\313{\031\354R\307,\313\250kX#\246\372\360" > > alive:" secret_envelope: > +peer1.org2.example.com | [1e1d 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e1e 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e1f 06-12 02:15:48.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e20 06-12 02:15:48.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e21 06-12 02:15:48.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1e22 06-12 02:15:48.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e23 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1e24 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e25 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e26 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e27 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e28 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e29 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e2a 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e2b 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e2c 06-12 02:15:48.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e2d 06-12 02:15:48.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e2e 06-12 02:15:48.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e2f 06-12 02:15:48.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e30 06-12 02:15:48.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e31 06-12 02:15:48.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1e32 06-12 02:15:48.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1e33 06-12 02:15:48.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e34 06-12 02:15:48.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e99 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e9a 06-12 02:15:47.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1e9b 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1e9c 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1e9d 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1e9e 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1e9f 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ea1 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1ea0 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ea2 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ea3 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1ea4 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ea5 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ea6 06-12 02:15:47.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1ea7 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ea8 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ea9 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1eaa 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [1eab 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1eac 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1ead 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1eaf 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1eae 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f41 06-12 02:15:48.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f42 06-12 02:15:48.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f43 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f44 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f45 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f46 06-12 02:15:48.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f47 06-12 02:15:48.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f48 06-12 02:15:48.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f49 06-12 02:15:48.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1f4a 06-12 02:15:48.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f4b 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f4c 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f4d 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [1f4e 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f4f 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f50 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f51 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f52 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f53 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [1f54 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1f55 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1f56 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1f57 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1f58 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1f59 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f5a 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f5b 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [1f5c 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1f5d 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020|" signature:"0D\002 \020?\253\036\327\370CQYF\256\014\344\021&\223\345\243\212\312\304+>)\t\375\024\207H\335nm\002 \010\336\314\237\371\035\244\300\202\301\24500\214rt\254+43\224\234R\340\375\347\242NL\364b\234" > alive: alive: +peer0.org2.example.com | [1f5e 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f5f 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1f60 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f61 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f62 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1f63 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f64 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f65 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f66 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1f67 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1f68 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1f69 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1f6a 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1f6b 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1f6c 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f6d 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1eb0 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1eb1 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1eb2 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1eb3 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1eb4 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1eb5 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1eb6 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1eb7 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1eb8 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1eb9 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1eba 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1ebb 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1ebc 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ebd 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1ebe 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1ebf 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1ec0 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1ec1 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ec2 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1ec3 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1ec4 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1ec5 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1ec6 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1ec7 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1ec8 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org1.example.com | [21eb 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21ec 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [21ed 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [21ee 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [21ef 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [21f0 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [21f1 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [21f2 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [21f3 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21f4 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [21f5 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [21f6 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [21f7 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [21f8 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [21f9 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [21fa 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [21fb 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [21fc 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [21fd 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [21fe 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [21ff 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2200 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2201 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2202 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2203 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f6e 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1f6f 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1f71 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f70 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f72 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1f73 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1f74 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f75 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1f76 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f77 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f78 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f79 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f7a 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1f7b 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f7c 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [1f7d 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f7e 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f7f 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f80 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f81 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1f82 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f83 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f84 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f85 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1ec9 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1eca 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ecb 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ecc 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ecd 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ece 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ecf 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ed0 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ed1 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1ed2 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1ed3 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1ed4 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1ed5 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1ed6 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1ed7 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1ed8 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1ed9 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [1eda 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1edb 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020y" signature:"0D\002 o\224\313&d6DM\200 a\377\262\261|\376\031\305\353\346\200\205\013\001\002\327\035\033\244\005\326\341\002 )\275\201\223\352?^x\002Y\373\263\273\316\237W$\352A\337\346X\313\253\000d\002^gN'\014" > alive: alive: +peer1.org1.example.com | [1edc 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer0.org1.example.com | [2204 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [2205 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [2206 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2207 06-12 02:15:56.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2208 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2209 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [220a 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [220b 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [220c 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [220d 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [220e 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [220f 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2210 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2211 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2212 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2213 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2214 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2215 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2216 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2217 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2218 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [221a 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [2219 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f86 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1f87 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1f88 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1f89 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1f8a 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1f8b 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1f8c 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f8d 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1f8e 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [1f8f 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f91 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1f90 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f92 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1f93 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f94 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f95 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1f96 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f97 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f98 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1f99 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f9a 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1f9b 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1f9c 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer0.org2.example.com | [1f9d 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1edd 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1ede 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1edf 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ee0 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ee1 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1ee2 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ee3 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [1ee4 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ee5 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1ee6 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [1ee7 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ee8 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1ee9 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1eea 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1eeb 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1eec 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1eed 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1eee 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1eef 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ef0 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1ef1 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ef2 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ef3 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1ef4 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ef5 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ef6 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ef7 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1ef8 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ef9 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1efa 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1efb 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1efc 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1efd 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1efe 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3 4 5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [1eff 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f00 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1f01 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1f02 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f03 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f04 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f05 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f06 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1f07 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f08 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f09 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f0a 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f0b 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f0c 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f0d 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f0e 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f0f 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f10 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f11 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [221b 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [221d 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [221c 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\205\001" signature:"0D\002 Z\242$T\313\2430p\246\255lN\242WW\224g\2556\345\317~\204pH\315\037e\035\252\337,\002 \"\357\262\370-:\227\345\265A\030\271 M\371d\220\r\335\r\301\027\032\210[\332\003yi5Z\034" > +peer0.org1.example.com | [221e 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [221f 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2220 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2221 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2222 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2223 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2224 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2225 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2226 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2227 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2228 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2229 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [222a 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [222b 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [222c 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [222d 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [222e 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1e35 06-12 02:15:48.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e36 06-12 02:15:48.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e37 06-12 02:15:48.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e38 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e39 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e3a 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e3b 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1e3c 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e3d 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e3e 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e3f 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e40 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e41 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1e42 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1e43 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1e44 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1e45 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1e46 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1e47 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1e48 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1e49 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1e4a 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [1e4b 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1f9e 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1f9f 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fa0 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1fa1 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fa2 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [1fa3 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [1fa4 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [1fa5 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [1fa6 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [1fa7 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [1fa8 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1fa9 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1faa 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1fab 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [1fac 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1fad 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org2.example.com | [1fae 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org2.example.com | [1faf 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [222f 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2230 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2231 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2232 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2233 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2234 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2235 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2236 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2237 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2238 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2239 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [223a 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [223b 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [223c 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [223d 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [223e 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [223f 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2240 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2241 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2242 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2243 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2244 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [2245 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2246 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2247 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1e4c 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > alive:\370Og\335\207E\373Oyz\262\035`-\216Y\020\025\304\003t\331`7\251\360\226%\212\331/" > +peer1.org2.example.com | [1e4d 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e4e 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e4f 06-12 02:15:51.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [1e50 06-12 02:15:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [1e51 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1e52 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1e53 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1e54 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1e56 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1e58 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e55 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e57 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1e59 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e5a 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e5b 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e5c 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e5d 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1e5e 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e5f 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e60 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f12 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f13 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f14 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f15 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f16 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f17 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [1f18 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1f19 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [1f1a 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1f1b 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1f1c 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1f1d 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1f1e 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1f1f 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1f20 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [1f21 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f23 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f24 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1fb0 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fb1 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fb2 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [1fb3 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1fb4 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fb5 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fb6 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fb7 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [1fb8 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1fb9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fba 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1fbb 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fbc 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [1fbd 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [1fbe 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [1fbf 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1fc0 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [1fc1 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [1fc2 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [1fc3 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1fc5 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [1fc6 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2248 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2249 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [224a 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [224b 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [224c 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [224d 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [224e 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [224f 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [2250 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [2251 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2252 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [2253 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2254 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2255 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2256 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2257 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2258 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2259 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [225a 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [225b 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [225c 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [225d 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [225e 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1e61 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1e62 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1e63 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1e64 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1e65 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1e66 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1e67 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1e68 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1e69 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e6a 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1e6b 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e6c 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e6d 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1e6e 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1e6f 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [1e70 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e71 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e72 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e73 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e74 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e75 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e76 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1e77 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e78 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e79 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1f22 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" secret_envelope: > alive:\264Z\225\227qo\352\032\026\002 ;\006CP\307|>\367P\204?\310\036\355{\323!\032\217\035\351\220\246\214\356\313\227\346\006P\256\301" secret_envelope: > +peer1.org1.example.com | [1f25 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f26 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f27 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f28 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1f29 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f2a 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f2b 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1f2c 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1f2d 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f2e 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f2f 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f30 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f31 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f32 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f33 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f34 06-12 02:15:48.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f35 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f36 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f37 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [1f38 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f39 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fc7 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > alive: alive:" > +peer0.org2.example.com | [1fc8 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fc9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1fc4 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1fca 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fcb 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1fcc 06-12 02:15:52.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org2.example.com | [1fcd 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [1fce 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1fcf 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1fd0 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1fd1 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fd2 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1fd3 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fd4 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1fd5 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fd6 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1fd7 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fd8 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1fd9 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1fda 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fdb 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [225f 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2260 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2261 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2262 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2263 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2264 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [2265 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2266 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\207\001" signature:"0D\002 ~\207\222_\327\377\363\365N\005a:\177@\232\260u\215c\347\364\204}\356\232d\n+\r\217\373\207\002 \t\014\237X\304\377,#\230\215\031J8\361v`y\25124r\344\344\204)\322\020\225\266*\342\311" secret_envelope: > +peer0.org1.example.com | [2267 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [2268 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2269 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44280 +peer0.org1.example.com | [226a 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429b77fb0 +peer0.org1.example.com | [226b 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [226c 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [226d 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [226e 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [226f 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [2270 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429ba0af0, header 0xc429c00330 +peer0.org1.example.com | [2271 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [2272 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][5cefd27d] processing txid: 5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f +peer0.org1.example.com | [2273 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] +peer0.org1.example.com | [2274 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer0.org1.example.com | [2275 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2276 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] +peer0.org1.example.com | [2277 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][5cefd27d] Entry chaincode: name:"exp02" +peer0.org1.example.com | [2278 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f,syscc=true,proposal=0xc429ba0af0,canname=lscc:1.2.0) +peer0.org1.example.com | [2279 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [227a 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [227b 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cefd27d]Received message TRANSACTION from peer +peer0.org1.example.com | [227c 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5cefd27d] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [227d 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5cefd27d] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [227e 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer0.org1.example.com | [227f 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5cefd27d] Sending GET_STATE +peer0.org1.example.com | [2280 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5cefd27d] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [2281 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5cefd27d] handling GET_STATE from chaincode +peer0.org1.example.com | [2282 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [5cefd27d] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [2283 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [2284 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5cefd27d] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [2285 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cefd27d]Received message RESPONSE from peer +peer0.org1.example.com | [2286 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5cefd27d] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [2287 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [5cefd27d] before send +peer0.org1.example.com | [2288 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [5cefd27d] after send +peer0.org1.example.com | [2289 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5cefd27d] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [228a 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5cefd27d] GetState received payload RESPONSE +peer0.org1.example.com | [228b 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cefd27d] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [228c 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [5cefd27d] send state message COMPLETED +peer0.org1.example.com | [228d 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5cefd27d] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [228e 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [5cefd27d] notifying Txid:5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f, channelID:businesschannel +peer0.org1.example.com | [228f 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [2290 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org1.example.com | [2291 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] Entry chaincode: name:"exp02" version: 1.0 +peer0.org1.example.com | [2292 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f,syscc=false,proposal=0xc429ba0af0,canname=exp02:1.0) +peer0.org1.example.com | [2293 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer0.org1.example.com | [2294 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [2295 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5cefd27d] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [2296 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5cefd27d] handling GET_STATE from chaincode +peer0.org1.example.com | [2297 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [5cefd27d] getting state for chaincode exp02, key a, channel businesschannel +peer1.org1.example.com | [1f3a 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f3b 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f3c 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f3d 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f3e 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1f3f 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1f40 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1f41 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1f42 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1f43 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1f44 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1f45 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1f46 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [1f47 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f48 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > alive: +peer1.org1.example.com | [1f49 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f4a 06-12 02:15:48.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f4b 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f4c 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f4d 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f4e 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f4f 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1fdc 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1fdd 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fde 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [1fdf 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1fe0 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fe1 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [1fe2 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1fe3 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fe4 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [1fe5 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1fe6 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [1fe7 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fe8 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1fe9 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [1fea 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1feb 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [1fec 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1fed 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [1fee 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1fef 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [1ff0 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [1ff1 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ff2 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ff3 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ff4 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ff5 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ff6 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [1ff7 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e7a 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e7b 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1e7c 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e7d 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e7e 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1e7f 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1e80 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1e82 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1e81 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e83 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e84 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e85 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e86 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e87 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e88 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e89 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1e8a 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e8b 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1e8c 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1e8d 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2298 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [2299 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5cefd27d] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [229a 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5cefd27d] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [229b 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [5cefd27d] notifying Txid:5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f, channelID:businesschannel +peer0.org1.example.com | [229c 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [229d 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] Exit +peer0.org1.example.com | [229e 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [229f 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] +peer0.org1.example.com | [22a0 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][5cefd27d] Exit +peer0.org1.example.com | [22a1 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5cefd27d] Entry chaincode: name:"exp02" +peer0.org1.example.com | [22a2 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5cefd27d] escc for chaincode name:"exp02" is escc +peer0.org1.example.com | [22a3 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f, chaincode: exp02} +peer0.org1.example.com | [22a4 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f, chaincode: exp02} +peer0.org1.example.com | [22a5 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5cefd27d] Exit +peer0.org1.example.com | [22a6 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] +peer0.org1.example.com | [22a7 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44280 +peer0.org1.example.com | [22a8 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22a9 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22aa 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [22ab 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [22ac 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22ad 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22ae 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [22af 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [1ff8 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ff9 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ffa 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ffb 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ffc 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1ffd 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [1ffe 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [1fff 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2000 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2001 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2002 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2003 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2004 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [2005 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1e8e 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e8f 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1e90 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1e91 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1e92 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1e93 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1e94 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1e95 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1e96 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1e97 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org2.example.com | [1e98 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1e99 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1e9a 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1e9b 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1e9c 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1e9d 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1e9e 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1e9f 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ea0 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1ea1 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1ea2 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1ea3 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1ea4 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [1ea5 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1f50 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [1f51 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f52 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [1f53 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f54 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [1f55 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f56 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f57 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f58 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f59 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f5a 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f5b 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f5c 06-12 02:15:49.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f5d 06-12 02:15:49.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f5e 06-12 02:15:49.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f5f 06-12 02:15:49.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f60 06-12 02:15:49.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f61 06-12 02:15:49.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f62 06-12 02:15:49.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f63 06-12 02:15:49.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f64 06-12 02:15:49.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [22b0 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [22b1 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [22b2 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [22b3 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [22b4 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [22b5 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [22b6 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22b7 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [22b8 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [22b9 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22ba 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [22bb 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [22bc 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [22bd 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22be 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [22bf 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22c0 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [22c1 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22c2 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22c3 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [22c4 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [22c5 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22c6 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [22c7 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22c8 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [22c9 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ea6 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [1ea7 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1ea8 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1ea9 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1eaa 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1eab 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1eac 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ead 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1eae 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1eaf 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1eb0 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1eb1 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org2.example.com | [1eb2 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1eb3 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1eb4 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 127 but got ts: inc_num:1528769652429776900 seq_num:126 +peer1.org2.example.com | [1eb5 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1eb6 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1eb7 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1eb8 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org2.example.com | [1eb9 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1eba 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org2.example.com | [1ebb 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1ebc 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1ebd 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1ebe 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1ebf 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1ec0 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1ec1 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1ec2 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ec3 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ec4 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ec5 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [1ec6 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ec7 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1ec8 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1ec9 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1eca 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1ecb 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1ecc 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1ecd 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ece 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ecf 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ed0 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ed1 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ed2 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ed3 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ed4 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ed5 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ed6 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ed7 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ed8 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [22ca 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22cb 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22cc 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [22cd 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [22ce 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [22cf 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [22d0 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [22d1 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [22d2 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [22d3 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [22d4 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [22d5 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [22d6 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22d7 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [22d8 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22d9 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [22da 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22db 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22dc 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [22dd 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22de 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [22df 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22e0 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1f65 06-12 02:15:49.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f66 06-12 02:15:49.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f67 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f68 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f69 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f6a 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [1f6c 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f6d 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f6f 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f6b 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f6e 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1f70 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f71 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f73 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f72 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f75 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f74 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f76 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1f77 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1f78 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2006 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [2007 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2008 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [2009 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [200a 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [200b 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [200c 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [200d 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [200e 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [200f 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2010 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2011 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2012 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2013 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2014 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2015 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2016 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2017 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2018 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2019 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [201a 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [201b 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [201c 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [201d 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1ed9 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1eda 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1edb 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1edc 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1edd 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ede 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1edf 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ee0 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1ee1 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1ee2 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1ee3 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1ee4 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1ee5 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1ee6 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1ee7 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1ee8 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ee9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [1eea 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [22e1 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22e2 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [22e3 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [22e4 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [22e5 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [22e6 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer0.org1.example.com | [22e7 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer0.org1.example.com | [22e8 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [22e9 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org1.example.com | [22ea 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc429cbf480 env 0xc429c84b40 txn 0 +peer0.org1.example.com | [22eb 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc429c84b40 +peer0.org1.example.com | [22ec 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +peer0.org1.example.com | [22ed 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [22ee 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [22ef 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org1.example.com | [22f0 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [22f1 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [22f2 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [22f4 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes +peer0.org1.example.com | [22f3 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc429c40800, header channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +peer0.org1.example.com | [22f6 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [22f5 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org1.example.com | [22f7 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org1.example.com | [22f8 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org1.example.com | [22f9 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org1.example.com | [22fa 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +peer0.org1.example.com | [22fb 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [1f79 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1f7a 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1f7b 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1f7c 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1f7d 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1f7e 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f7f 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1f80 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1f81 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1f82 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1f83 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1f84 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1f85 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1f86 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1f87 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1f88 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1f89 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1f8a 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f8b 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1f8c 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1f8d 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1f8e 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [201e 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [201f 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2020 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2021 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2022 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2023 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2024 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2025 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2026 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2027 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2028 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2029 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [202a 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [202b 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [202c 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [202d 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [202e 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [202f 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2030 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2031 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2032 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [2033 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2034 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [2035 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2036 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2037 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2038 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2039 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [203a 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [203b 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [203c 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [203d 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [203e 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [203f 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2040 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2041 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2042 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2043 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2044 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [2045 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2046 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [2047 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2048 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2049 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [204a 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [204b 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [204c 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [204d 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 129 but got ts: inc_num:1528769652088169500 seq_num:128 +peer0.org2.example.com | [204e 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [204f 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [2050 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2051 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 129 but got ts: inc_num:1528769651824440500 seq_num:127 +peer0.org2.example.com | [2052 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2053 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer0.org2.example.com | [2054 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2055 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2056 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2058 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2057 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [205a 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [205b 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [205c 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [205d 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2059 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [205e 06-12 02:15:52.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [205f 06-12 02:15:52.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2060 06-12 02:15:52.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2061 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [2062 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [2063 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [2064 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2065 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [2066 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2067 06-12 02:15:52.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [2068 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2069 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [206a 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [206b 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org2.example.com | [206c 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org2.example.com | [206d 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer0.org2.example.com | [206e 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [206f 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2070 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2071 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2072 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2073 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2074 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2075 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 1] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [2076 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2077 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2078 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2079 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [207a 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [207b 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [207c 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [207d 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [207e 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1eeb 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > alive:N[o\017\212\311\345^H\225H+!\267\224\253j>E\247!\223\264\375\003\002 a\341\317\312o,X\001\252\203\376\347\326].+\366\247\302\311\016\243 +peer1.org2.example.com | [1eec 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [1eed 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1eee 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1eef 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ef0 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ef1 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ef2 06-12 02:15:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1ef3 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ef4 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ef5 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ef6 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1ef7 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1ef8 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1ef9 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1efa 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1efb 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1efc 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1efd 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1efe 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1eff 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1f00 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f02 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f01 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f03 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f04 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f05 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1f06 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f07 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f08 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1f09 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f0a 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f0b 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1f0c 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f0d 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f0e 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f0f 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f10 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1f11 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1f12 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1f13 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1f14 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1f15 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1f16 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1f17 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1f18 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1f19 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [1f1a 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1f1b 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:G\343\013\242\201\344\027\322/\277\352\322\014\300?\210D6\2717}v" secret_envelope: > +peer1.org2.example.com | [1f1c 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f1d 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f1e 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f1f 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f20 06-12 02:15:52.60 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org2.example.com | [1f21 06-12 02:15:52.60 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org2.example.com | [1f22 06-12 02:15:52.60 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org2.example.com | [1f23 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f24 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f25 06-12 02:15:52.62 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [1f26 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f27 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f28 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 1] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [1f29 06-12 02:15:52.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f2a 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [1f2b 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f2c 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f2d 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f2f 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f2e 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f30 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f31 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f32 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f33 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f34 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f35 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f36 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f37 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f38 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1f39 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1f3a 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f3b 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f3c 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f3d 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f3e 06-12 02:15:52.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f3f 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f40 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f41 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f42 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [1f43 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f44 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f45 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f46 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1f47 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f48 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f49 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f4a 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1f4b 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1f4c 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1f4d 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1f4e 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1f4f 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1f50 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1f51 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1f52 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1f53 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [1f54 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f55 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f56 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f57 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f58 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f59 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1f5a 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f5b 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f5c 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1f5d 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f5e 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1f5f 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f60 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f61 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1f62 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f63 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f64 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f65 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f66 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1f67 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1f68 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1f69 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1f6a 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1f6b 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1f6c 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1f6d 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1f6e 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1f6f 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [1f70 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1f71 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > alive: +peer1.org2.example.com | [1f72 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f73 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f74 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f75 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f76 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1f78 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f77 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1f79 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f7b 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f7c 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f7d 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f7e 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f7f 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1f80 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f81 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f82 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1f83 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1f84 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1f85 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1f86 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1f87 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1f88 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1f89 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1f8b 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1f7a 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1f8c 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f8d 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1f8a 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [1f8e 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1f8f 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1f90 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1f91 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1f92 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1f93 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1f94 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1f95 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1f96 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1f97 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1f98 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1f99 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1f9a 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [1f9b 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1f9c 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1f9d 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [1f9e 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1f9f 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1fa0 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1fa1 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fa2 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1fa3 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [1fa4 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 130 but got ts: inc_num:1528769653227426900 seq_num:129 +peer1.org2.example.com | [1fa5 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1fa6 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1fa7 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1fa8 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1fa9 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org2.example.com | [1faa 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 131 but got ts: inc_num:1528769652429776900 seq_num:130 +peer1.org2.example.com | [1fab 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1fac 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1fad 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1fae 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1faf 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1fb0 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [1fb1 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1fb2 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [1fb3 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1fb4 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1fb5 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1fb6 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1fb7 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1fb8 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1fb9 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fba 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1fbb 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [1fbc 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1fbd 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1fbe 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [22fc 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc4289a8400 +peer0.org1.example.com | [22fd 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [3e67bb5b-2e03-49f2-b1d9-0e7f15487110] +peer0.org1.example.com | [22fe 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [22ff 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [3e67bb5b-2e03-49f2-b1d9-0e7f15487110] +peer0.org1.example.com | [2300 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin +peer0.org1.example.com | [2301 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org1.example.com | [2302 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: +peer0.org1.example.com | [2303 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 appears to be valid +peer0.org1.example.com | [2304 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc4289a8400 +peer0.org1.example.com | [2305 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc429cbf480 env 0xc429c84b40 txn 0 +peer0.org1.example.com | [2306 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [2307 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [2308 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +peer0.org1.example.com | [2309 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [230a 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +peer0.org1.example.com | [230b 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [230c 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org1.example.com | [230d 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [230e 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org1.example.com | [230f 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org1.example.com | [2310 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org1.example.com | [2311 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [2312 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org1.example.com | [2313 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] marked as valid by state validator +peer0.org1.example.com | [2314 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org1.example.com | [2315 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [2316 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [207f 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2080 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2081 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2082 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2083 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2084 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2085 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2086 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1fbf 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [1fc0 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1fc1 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [1fc2 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [1fc3 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [1fc4 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1fc5 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1fc6 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1fc7 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1fc8 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fc9 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fca 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [1fcb 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1fcc 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [1fcd 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1fce 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [1fcf 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1fd0 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [1fd1 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1fd2 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fd3 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1fd4 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fd5 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1fd6 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fd7 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1fd8 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fd9 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fda 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fdb 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1fdc 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fdd 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fde 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1fdf 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fe0 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fe1 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1fe2 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fe3 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fe4 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1fe5 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fe6 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1fe7 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [1fe8 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [1fe9 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [1fea 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1f8f 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1f90 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1f91 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1f92 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1f94 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1f95 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f93 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [1f96 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f97 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [1f98 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 126 but got ts: inc_num:1528769652429776900 seq_num:125 +peer1.org1.example.com | [1f99 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1f9a 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1f9b 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1f9c 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1f9d 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1f9e 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1f9f 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1fa0 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 124 but got ts: inc_num:1528769652088169500 seq_num:123 +peer1.org1.example.com | [1fa1 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1fa2 06-12 02:15:49.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1fa3 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1fa4 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1fa5 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [1fa6 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1fa7 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [1fa8 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1fa9 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1faa 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2317 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +peer0.org1.example.com | [2318 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] +peer0.org1.example.com | [2319 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x12, 0x94, 0xe5, 0x39, 0xf6, 0xe8, 0xbe, 0xfb, 0xa0, 0xcc, 0x5d, 0x8, 0x16, 0x74, 0xa, 0xdc, 0xf, 0x11, 0x32, 0x37, 0x9b, 0x1e, 0x59, 0x66, 0x4, 0xb5, 0xd8, 0x4c, 0xce, 0xe8, 0xdd, 0x43} txOffsets= +peer0.org1.example.com | txId=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 locPointer=offset=70, bytesLength=2915 peer0.org1.example.com | ] -peer0.org1.example.com | [2261 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to index -peer0.org1.example.com | [2262 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx number:[0] ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to blockNumTranNum index -peer0.org1.example.com | [2263 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org1.example.com | [2264 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -peer0.org1.example.com | [2265 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] -peer0.org1.example.com | [2266 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer0.org1.example.com | [2267 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer0.org1.example.com | [2268 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [2269 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [226a 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org1.example.com | [226b 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org1.example.com | [226c 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [226d 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] -peer0.org1.example.com | [226e 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer0.org1.example.com | [226f 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org1.example.com | [2270 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org1.example.com | [2271 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [2272 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 -peer0.org1.example.com | [2273 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [2266 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2267 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2268 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2269 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [226a 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [226b 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [226c 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [226d 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [226e 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [226f 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2270 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2271 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2272 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2273 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2274 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2275 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2276 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2277 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2278 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2279 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [227a 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [227b 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [227c 05-31 05:23:16.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [227d 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2060 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\201\001" signature:"0D\002 \016\366\\;\310cS\21217A\003\352\312\262\235\362\316\022?\027H\003\237&\007\260\233\223;\212Q\002 \002\210\t\364\233\356\376hQZ\207\266\301[\216\025qF\233\032\327\206\232.\253\202\210\305\347\353`\345" > alive:B\333\201/\371\030\2539<\177\344h\305\361J\3705[\000E\325\022x\013\002 7\224\033j`o\364NN3q\331\360\334\253?w\031\330\242\022\320\202\234\353\371\017q-:~f" secret_envelope:\274\277\223\315\024\315\330]\002 l\217\373\031T v\017|Z\022\224\367t\022\210\357n\003X\001\315\216gs\311\037\035/\257\217\202" > > -peer1.org1.example.com | [2061 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [2062 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2057 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2063 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2064 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2065 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2066 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2067 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2068 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2069 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [206a 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [206b 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [206c 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [206d 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [206e 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [206f 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2070 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2071 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2072 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2073 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2074 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2075 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2076 05-31 05:23:11.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2077 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2078 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2079 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [207a 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [207b 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [207c 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [207d 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [207e 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [207f 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2080 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2081 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2082 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2083 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2084 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2085 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2086 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2087 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [208a 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2088 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2089 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [208c 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [208d 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [208e 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [208b 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [227e 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [227f 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2280 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2281 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2282 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2283 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2284 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2285 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2286 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2287 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2288 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2289 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [228a 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [228b 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [228c 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [228d 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [228e 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [228f 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2290 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2291 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2292 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2293 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2294 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2274 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [2275 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [2276 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [2277 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [2278 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [2279 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [227a 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [227b 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [227c 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [227d 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [227e 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [227f 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2280 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2281 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2282 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2283 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2284 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2285 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2286 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2287 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2288 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2289 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [228b 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [228c 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [228d 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [228e 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [228f 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [228a 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2290 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2291 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2292 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2294 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2293 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2295 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2296 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2297 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2298 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2299 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [229a 05-31 05:23:21.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [229b 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [229c 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [229d 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [229e 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [229f 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [22a0 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22a1 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [22a2 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22a3 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [22a4 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22a5 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [22a6 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [22a7 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22a8 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22a9 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [22aa 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [22ab 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [22ac 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [22ad 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [22ae 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [22af 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [22b0 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [22b1 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22b2 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22b3 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [22b4 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [22b5 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22b6 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [22b7 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [22b8 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [22b9 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22bb 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [22ba 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22bc 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [22bd 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22be 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [22bf 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2534 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org2.example.com | [2535 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [2536 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org2.example.com | [2537 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator -peer1.org2.example.com | [2538 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org2.example.com | [2539 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org2.example.com | [253b 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org2.example.com | [253c 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -peer1.org2.example.com | [253a 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer1.org2.example.com | [253d 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] -peer1.org1.example.com | [208f 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2090 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2091 05-31 05:23:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2093 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2094 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2092 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2095 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2096 05-31 05:23:11.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2097 05-31 05:23:11.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2098 05-31 05:23:11.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2099 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [209a 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [209b 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [209c 05-31 05:23:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [209d 05-31 05:23:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [209e 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [209f 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [20a0 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20a1 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [20a2 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [20a3 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [20a4 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2295 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2296 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2297 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2298 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2299 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [229a 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [229b 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [229c 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [229d 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [229e 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [229f 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22a0 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [22a1 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [22a2 05-31 05:23:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [22a3 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [22a4 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [22a6 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [22a5 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [22a7 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [22a8 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22a9 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22aa 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [22ab 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22ac 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [22ad 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [22ae 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [22c0 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [22c1 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [22c2 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55410 -peer0.org1.example.com | [22c3 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429ad0b10 -peer0.org1.example.com | [22c4 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [22c5 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [22c6 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [22c7 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [22c8 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [22c9 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429a258b0, header 0xc429ad0e70 -peer0.org1.example.com | [22ca 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org1.example.com | [22cb 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][c2348d62] processing txid: c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0 -peer0.org1.example.com | [22cc 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] -peer0.org1.example.com | [22cd 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer0.org1.example.com | [22ce 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [22cf 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] -peer0.org1.example.com | [22d0 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][c2348d62] Entry chaincode: name:"exp02" -peer0.org1.example.com | [22d1 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0,syscc=true,proposal=0xc429a258b0,canname=lscc:1.2.0) -peer0.org1.example.com | [22d2 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [22d3 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [22d4 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2348d62]Received message TRANSACTION from peer -peer0.org1.example.com | [22d5 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2348d62] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [22d6 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c2348d62] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [22d7 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer0.org1.example.com | [22d8 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c2348d62] Sending GET_STATE -peer0.org1.example.com | [22d9 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c2348d62] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [22da 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2348d62] handling GET_STATE from chaincode -peer0.org1.example.com | [22db 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [c2348d62] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org1.example.com | [20a5 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [20a6 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [20a7 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [20a8 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [20a9 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [20aa 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [20ab 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [20ac 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [20ad 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\201\001" signature:"0D\002 \016\366\\;\310cS\21217A\003\352\312\262\235\362\316\022?\027H\003\237&\007\260\233\223;\212Q\002 \002\210\t\364\233\356\376hQZ\207\266\301[\216\025qF\233\032\327\206\232.\253\202\210\305\347\353`\345" > alive: alive: alive: -peer1.org1.example.com | [20ae 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [20af 05-31 05:23:11.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20b0 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [20b1 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [20b2 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [20b3 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [20b4 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20b5 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [20b6 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [20b7 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20b8 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [22af 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [22b0 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22b1 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [22b2 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [22b3 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22b4 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [22b5 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [22b6 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22b7 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [22b8 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [22b9 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [22ba 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [22bb 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [22bc 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [22bd 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [22be 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [22bf 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [22c0 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [22c1 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [22c2 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [22c3 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\263w\241\002 2P\231c3\236T\250>\370\212G|:S\214\264\374\211Q\376\371\220H\357\355\324%!\217\311)" secret_envelope:$\347\313}\263\236\n\033\377\234h\2451\002 \0332L\304\371y\311@\372U\363\022\206'l\330\032\232\316\2729\375\363\\\223p\247M\010zxv" > > -peer0.org2.example.com | [22c4 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [22c5 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22c6 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [22c7 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22c8 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [22c9 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22ca 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer0.org2.example.com | [22cb 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [22cd 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22ce 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [22cf 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22cc 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [22d0 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [22d1 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22d2 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [22d4 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [22d5 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22d3 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [22d7 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22d8 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [22d6 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [22d9 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22da 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22db 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [22dc 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [22dd 05-31 05:23:19.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [22de 05-31 05:23:19.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22df 05-31 05:23:19.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer0.org2.example.com | [22e0 05-31 05:23:19.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22e1 05-31 05:23:19.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [22e2 05-31 05:23:19.48 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [22e3 05-31 05:23:19.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [22e4 05-31 05:23:19.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [22e5 05-31 05:23:19.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [22e6 05-31 05:23:19.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [22e7 05-31 05:23:19.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer0.org2.example.com | [22e8 05-31 05:23:19.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22e9 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [22ea 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [22eb 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [22ec 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22ed 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [22ee 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [22ef 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22f0 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [22f1 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [22f2 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [22f3 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [22f4 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [22f5 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [22f6 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [22f7 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [22f8 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [22f9 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [22fa 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [22fb 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [22fc 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [22fd 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [22fe 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\207\001" signature:"0D\002 .;\231\242\212^\273v\363~I!(\333\254\354-\336\243 S\246\326\311\277k\342[,\252\006\244\002 Q\033\206t\206\375\240\200\372\312\216\224\366\247\201k\r`\276\215h`keAw\337\233\325*@\311" > alive: alive:\002 N\227\371s;\004\327\311\027\223{\330\300r\266`g\321\350\206\033\310\004\215\367\2038\235tI\302W" > -peer0.org2.example.com | [22ff 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2300 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2301 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [2302 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [2303 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [2304 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 1] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2305 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2306 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2307 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2308 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2309 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [230a 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [230b 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [230c 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [230d 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [230e 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [230f 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2310 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2311 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2312 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2313 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [2314 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2315 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > alive: -peer0.org2.example.com | [2316 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [2317 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2318 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2319 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [231a 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [231b 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [231c 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [231d 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [231e 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2320 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [231f 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [2321 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2322 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2323 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [2324 05-31 05:23:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2326 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2327 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2328 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2329 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2325 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [232a 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [232b 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [232d 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [232c 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [232e 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [232f 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2330 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2331 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2332 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2333 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2334 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\311\217\303%W\274\200e,v\352`9\301\303.\004\2672'{\323%G:\376\002 \030\332[\233jg\354\272R\301\2340Lw\225\255\031L\033\324\245\261\263c\035\220>\324>\333\036\001" > > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2335 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2336 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2337 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2338 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2339 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [233a 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [233b 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [233d 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [233c 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [233e 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [233f 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [2340 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2341 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2342 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2343 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2344 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2345 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2346 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2347 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2348 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2349 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [234a 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [234b 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [234c 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [234d 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [234e 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [234f 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2350 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2351 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2352 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2353 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2354 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2355 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2356 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2357 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2358 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2359 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [235a 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [235b 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [253e 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer1.org2.example.com | [253f 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xc4, 0x16, 0x22, 0xe7, 0x46, 0x1a, 0xfc, 0xec, 0xc7, 0x69, 0xc, 0xf3, 0xe0, 0x1, 0x23, 0x22, 0x90, 0xfe, 0x17, 0x1c, 0xa7, 0xb2, 0xe9, 0x74, 0x12, 0x78, 0x2c, 0xe5, 0xd0, 0xba, 0x37, 0xee} txOffsets= -peer1.org2.example.com | txId= locPointer=offset=71, bytesLength=19393 -peer1.org2.example.com | ] -peer1.org2.example.com | [2540 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index -peer1.org2.example.com | [2541 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org2.example.com | [2542 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] -peer1.org2.example.com | [2543 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] -peer1.org2.example.com | [2544 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] -peer1.org2.example.com | [2545 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -peer1.org2.example.com | [2546 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -peer1.org2.example.com | [2547 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org2.example.com | [2548 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org2.example.com | [2549 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org2.example.com | [254a 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org2.example.com | [254b 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] -peer1.org2.example.com | [254c 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database -peer1.org2.example.com | [254d 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions -peer1.org2.example.com | [254e 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer1.org2.example.com | [254f 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org2.example.com | [2552 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:3008996468516081304 tag:EMPTY mem_req: > > , Envelope: 281 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2553 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] -peer1.org2.example.com | [2554 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org2.example.com | [2555 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [20b9 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [20ba 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [20bb 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [20bc 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [20bd 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [20be 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [20bf 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [20c0 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [20c1 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [20c2 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [20c3 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [20c4 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\201\001" signature:"0D\002 \016\366\\;\310cS\21217A\003\352\312\262\235\362\316\022?\027H\003\237&\007\260\233\223;\212Q\002 \002\210\t\364\233\356\376hQZ\207\266\301[\216\025qF\233\032\327\206\232.\253\202\210\305\347\353`\345" > alive: alive:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > alive: -peer1.org1.example.com | [20c5 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [20c6 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20c7 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [20c8 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [20c9 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20ca 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [20cb 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [20cc 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [20cd 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 1] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [20ce 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [235c 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [235d 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [235e 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 135 but got ts: inc_num:1527744091508552400 seq_num:134 -peer0.org2.example.com | [235f 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2360 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2361 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2362 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2364 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org2.example.com | [2365 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org2.example.com | [2363 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2366 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2367 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2368 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2369 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [236a 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [236b 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [236c 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [236d 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [236e 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [22dc 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [22dd 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2348d62] Completed GET_STATE. Sending RESPONSE -peer0.org1.example.com | [22de 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2348d62]Received message RESPONSE from peer -peer0.org1.example.com | [22df 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2348d62] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [22e0 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [c2348d62] before send -peer0.org1.example.com | [22e1 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [c2348d62] after send -peer0.org1.example.com | [22e2 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c2348d62] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [22e3 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c2348d62] GetState received payload RESPONSE -peer0.org1.example.com | [22e4 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2348d62] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [22e5 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [c2348d62] send state message COMPLETED -peer0.org1.example.com | [22e6 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c2348d62] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [22e7 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c2348d62] notifying Txid:c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0, channelID:businesschannel -peer0.org1.example.com | [22e8 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [22e9 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [22ea 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] Entry chaincode: name:"exp02" version: 1.0 -peer0.org1.example.com | [22eb 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0,syscc=false,proposal=0xc429a258b0,canname=exp02:1.0) -peer0.org1.example.com | [22ec 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer0.org1.example.com | [22ed 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [22ee 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c2348d62] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [22ef 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2348d62] handling GET_STATE from chaincode -peer0.org1.example.com | [22f0 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [c2348d62] getting state for chaincode exp02, key a, channel businesschannel -peer0.org1.example.com | [22f1 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org1.example.com | [22f2 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2348d62] Completed GET_STATE. Sending RESPONSE -peer0.org1.example.com | [22f3 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c2348d62] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [22f4 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c2348d62] notifying Txid:c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0, channelID:businesschannel -peer0.org1.example.com | [22f5 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [22f6 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] Exit -peer0.org1.example.com | [22f7 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [22f8 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] -peer0.org1.example.com | [22f9 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][c2348d62] Exit -peer0.org1.example.com | [22fa 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][c2348d62] Entry chaincode: name:"exp02" -peer0.org1.example.com | [22fb 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][c2348d62] escc for chaincode name:"exp02" is escc -peer1.org2.example.com | [2556 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [2557 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [2558 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [2559 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [255a 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org2.example.com | [255b 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org2.example.com | [255c 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org2.example.com | [255d 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org2.example.com | [2551 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:45420 disconnected -peer1.org2.example.com | [2550 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer1.org2.example.com | [255e 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer1.org2.example.com | [255f 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:3008996468516081304 tag:EMPTY mem_req: > > , Envelope: 281 bytes, Signature: 0 bytes -peer1.org2.example.com | [2560 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2561 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer1.org2.example.com | [2562 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer1.org2.example.com | [2563 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer1.org2.example.com | [2564 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer1.org2.example.com | [2565 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2566 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 3008996468516081304, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes -peer1.org2.example.com | [2567 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 3008996468516081304, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes -peer1.org2.example.com | [2568 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2569 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 3008996468516081304, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes -peer1.org2.example.com | [256a 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [256b 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [236f 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2370 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2371 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2372 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2373 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2374 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2375 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2376 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2377 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org2.example.com | [2378 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2379 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [237a 05-31 05:23:19.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [237b 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [237c 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [237d 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [237e 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [237f 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [2380 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2381 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2382 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2383 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2384 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2385 05-31 05:23:20.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2386 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2387 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [22fc 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0, chaincode: exp02} -peer0.org1.example.com | [22fd 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0, chaincode: exp02} -peer0.org1.example.com | [22fe 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][c2348d62] Exit -peer0.org1.example.com | [22ff 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] -peer0.org1.example.com | [2300 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55410 -peer0.org1.example.com | [2301 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55414 -peer0.org1.example.com | [2302 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429adf050 -peer0.org1.example.com | [2303 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [2304 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [2305 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [2306 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [2307 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [2308 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429b6c2d0, header 0xc429adf3b0 -peer0.org1.example.com | [2309 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [230a 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][a95d329e] processing txid: a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e -peer0.org1.example.com | [230b 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] -peer0.org1.example.com | [230c 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [230d 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] -peer0.org1.example.com | [230e 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a95d329e] Entry chaincode: name:"lscc" -peer0.org1.example.com | [230f 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org1.example.com | [2310 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e,syscc=true,proposal=0xc429b6c2d0,canname=lscc:1.2.0) -peer0.org1.example.com | [2311 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [2312 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [2313 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a95d329e]Received message TRANSACTION from peer -peer0.org1.example.com | [2314 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a95d329e] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [20cf 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [20d0 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [20d1 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20d2 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [20d3 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20d4 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [20d5 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20d7 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [20d6 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [20d8 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [20d9 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20da 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [20db 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [20dc 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20dd 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [20de 05-31 05:23:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20df 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [20e0 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [20e1 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [20e2 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20e3 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org1.example.com | [20e4 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org1.example.com | [20e5 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -peer1.org1.example.com | [20e6 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20e7 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [20e8 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [20e9 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20ea 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [20eb 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [20ec 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [20ed 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2388 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2389 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [238a 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [238b 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [238c 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [238d 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [238e 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [238f 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2390 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2391 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2392 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2393 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2394 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2395 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2396 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2397 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2398 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2399 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [239a 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [239b 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [239c 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [239d 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [239e 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [239f 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2315 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a95d329e] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [2316 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/ChaincodeExists -peer0.org1.example.com | [2317 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [a95d329e] Sending GET_STATE -peer0.org1.example.com | [2318 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a95d329e] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [2319 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a95d329e] handling GET_STATE from chaincode -peer0.org1.example.com | [231a 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [a95d329e] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [231b 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [231c 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a95d329e] Completed GET_STATE. Sending RESPONSE -peer0.org1.example.com | [231d 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a95d329e]Received message RESPONSE from peer -peer0.org1.example.com | [231e 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a95d329e] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [231f 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a95d329e] before send -peer0.org1.example.com | [2320 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a95d329e] after send -peer0.org1.example.com | [2321 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a95d329e] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [2322 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [a95d329e] GetState received payload RESPONSE -peer0.org1.example.com | [2323 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a95d329e] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2324 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a95d329e] send state message COMPLETED -peer0.org1.example.com | [2325 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a95d329e] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2326 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a95d329e] notifying Txid:a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e, channelID:businesschannel -peer0.org1.example.com | [2327 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [2328 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] Exit -peer0.org1.example.com | [2329 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [232a 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] -peer0.org1.example.com | [232b 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a95d329e] Exit -peer0.org1.example.com | [232c 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a95d329e] Entry chaincode: name:"lscc" -peer0.org1.example.com | [232d 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a95d329e] escc for chaincode name:"lscc" is escc -peer0.org1.example.com | [232e 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e, chaincode: lscc} -peer0.org1.example.com | [232f 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e, chaincode: lscc} -peer0.org1.example.com | [2330 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a95d329e] Exit -peer0.org1.example.com | [2331 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] -peer0.org1.example.com | [2332 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55414 -peer0.org1.example.com | [2333 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55416 -peer0.org1.example.com | [2334 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429b54cc0 -peer0.org1.example.com | [2335 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org2.example.com | [256c 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [256d 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [256e 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [256f 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2570 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [2571 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2572 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2573 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2574 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2575 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2576 05-31 05:23:32.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2577 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.6:40744 -peer1.org2.example.com | [2578 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:40744 -peer1.org2.example.com | [2579 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:40744 -peer1.org2.example.com | [257a 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:40744 -peer1.org2.example.com | [257b 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [257c 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [257d 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [257f 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2580 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [257e 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [20ee 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [20f0 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [20ef 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [20f1 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [20f2 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20f3 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20f4 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [20f5 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [20f6 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [20f7 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [20f8 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [20f9 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20fa 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [20fb 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [20fc 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [20fd 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [20fe 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [20ff 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [23a0 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [23a1 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [23a2 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [23a3 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [23a4 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [23a5 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [23a6 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [23a7 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [23a8 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [23a9 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [23aa 05-31 05:23:21.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [23ab 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -peer0.org2.example.com | [23ac 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -peer0.org2.example.com | [23ad 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org2.example.com | [23ae 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [23af 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42416e160 env 0xc423ea98c0 txn 0 -peer0.org2.example.com | [23b0 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423ea98c0 -peer0.org2.example.com | [23b1 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -peer0.org2.example.com | [23b2 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [23b3 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [23b4 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org2.example.com | [23b5 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [23b6 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [23b7 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422f87800, header channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -peer0.org2.example.com | [23b8 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer0.org2.example.com | [23b9 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer0.org2.example.com | [23ba 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer0.org2.example.com | [23bb 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org2.example.com | [23bc 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -peer0.org2.example.com | [23bd 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer0.org2.example.com | [23be 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc4226ab400 -peer0.org2.example.com | [23c0 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4794 bytes, seq: 6}, Envelope: 4824 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [23bf 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [2116a382-8c55-4914-a022-fb58314bd1a2] -peer0.org2.example.com | [23c1 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [23c3 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [2116a382-8c55-4914-a022-fb58314bd1a2] -peer0.org2.example.com | [23c4 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin -peer0.org2.example.com | [23c2 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4794 bytes, seq: 6}, Envelope: 4824 bytes, Signature: 0 bytes -peer0.org2.example.com | [23c5 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer0.org2.example.com | [23c6 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [23c7 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: -peer0.org2.example.com | [23c8 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 appears to be valid -peer0.org2.example.com | [23c9 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc4226ab400 -peer0.org2.example.com | [23ca 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42416e160 env 0xc423ea98c0 txn 0 -peer0.org2.example.com | [23cb 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [23cc 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [23cd 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -peer0.org2.example.com | [23ce 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [23cf 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -peer0.org2.example.com | [23d0 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org2.example.com | [23d1 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer0.org2.example.com | [23d2 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org2.example.com | [23d3 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer0.org2.example.com | [23d4 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -peer0.org2.example.com | [23d5 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer0.org2.example.com | [23d6 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org2.example.com | [23d7 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer0.org2.example.com | [23d8 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] marked as valid by state validator -peer0.org2.example.com | [23d9 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [23da 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [23db 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [23dc 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -peer0.org2.example.com | [23dd 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] -peer0.org2.example.com | [23de 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x85, 0xb2, 0xc2, 0xca, 0xb9, 0x19, 0xa4, 0x86, 0x81, 0xab, 0xe7, 0xe5, 0x91, 0x9e, 0xc6, 0x6d, 0x34, 0xc3, 0x50, 0xbe, 0xd5, 0x41, 0x10, 0xaf, 0xb5, 0xb4, 0x21, 0x8f, 0x8b, 0xf9, 0x7f, 0xc8} txOffsets= -peer0.org2.example.com | txId=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 locPointer=offset=70, bytesLength=2917 -peer0.org2.example.com | ] -peer0.org2.example.com | [23df 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to index -peer0.org2.example.com | [23e0 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx number:[0] ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to blockNumTranNum index -peer0.org2.example.com | [23e1 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] -peer0.org2.example.com | [23e2 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -peer0.org2.example.com | [23e3 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] -peer0.org2.example.com | [23e4 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer0.org2.example.com | [23e5 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer0.org2.example.com | [23e6 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [23e7 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [23e8 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer0.org2.example.com | [23e9 05-31 05:23:21.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer0.org2.example.com | [23ea 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [23eb 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] -peer0.org2.example.com | [23ec 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer0.org2.example.com | [23ed 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer0.org2.example.com | [23ee 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer0.org2.example.com | [23ef 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [23f0 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 -peer0.org2.example.com | [23f1 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [23f2 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [23f3 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [23f4 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [23f5 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [23f6 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [23f7 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [23f8 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [23f9 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [23fa 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [23fb 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [23fc 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [23fd 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [23fe 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [23ff 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2400 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2401 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2402 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2403 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2404 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2405 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2406 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2407 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2336 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [2337 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [2338 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [2339 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [233a 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429bb8370, header 0xc429b55020 -peer0.org1.example.com | [233b 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [233c 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][2658e5a7] processing txid: 2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c -peer0.org1.example.com | [233d 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] -peer0.org1.example.com | [233e 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [233f 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] -peer0.org1.example.com | [2340 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2658e5a7] Entry chaincode: name:"lscc" -peer0.org1.example.com | [2341 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org1.example.com | [2342 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c,syscc=true,proposal=0xc429bb8370,canname=lscc:1.2.0) -peer0.org1.example.com | [2343 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [2344 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [2345 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2658e5a7]Received message TRANSACTION from peer -peer0.org1.example.com | [2346 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2658e5a7] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [2347 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2658e5a7] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [2348 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetDeploymentSpec -peer0.org1.example.com | [2349 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2658e5a7] Sending GET_STATE -peer0.org1.example.com | [234a 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2658e5a7] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [234b 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2658e5a7] handling GET_STATE from chaincode -peer0.org1.example.com | [234c 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [2658e5a7] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [234d 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [234e 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2658e5a7] Completed GET_STATE. Sending RESPONSE -peer0.org1.example.com | [234f 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2658e5a7]Received message RESPONSE from peer -peer0.org1.example.com | [2350 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2658e5a7] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [2351 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2658e5a7] before send -peer0.org1.example.com | [2352 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2658e5a7] after send -peer0.org1.example.com | [2353 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2658e5a7] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [2354 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2658e5a7] GetState received payload RESPONSE -peer1.org2.example.com | [2581 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2583 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2584 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2585 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2586 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2587 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [2588 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [2589 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [2582 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [258a 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [258b 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [258c 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [258d 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [258e 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [258f 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [2590 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [2591 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2592 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [2593 05-31 05:23:34.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [2594 05-31 05:23:34.99 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2596 05-31 05:23:34.99 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2597 05-31 05:23:34.99 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2598 05-31 05:23:34.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2599 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2595 05-31 05:23:34.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org2.example.com | [259a 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [259b 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [259c 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [259d 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [259e 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [259f 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25a0 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [25a1 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [25a3 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [25a2 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [25a4 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [25a5 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [25a6 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25a7 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org2.example.com | [25a8 05-31 05:23:35.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25a9 05-31 05:23:35.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [25aa 05-31 05:23:35.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25ab 05-31 05:23:35.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [25ac 05-31 05:23:35.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org2.example.com | [25ad 05-31 05:23:35.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [25ae 05-31 05:23:35.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [25af 05-31 05:23:35.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [25b0 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25b1 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [25b2 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [25b3 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 162 but got ts: inc_num:1527744091840124700 seq_num:155 -peer1.org2.example.com | [25b4 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25b5 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [25b6 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [25b7 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [25b8 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [25b9 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [25ba 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [25bb 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [25bc 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25bd 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [25be 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [25bf 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [25c0 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [25c1 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 162 but got ts: inc_num:1527744091840124700 seq_num:161 -peer1.org2.example.com | [25c2 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25c3 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [25c4 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [25c5 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 158 but got ts: inc_num:1527744091508552400 seq_num:150 -peer1.org2.example.com | [25c6 05-31 05:23:35.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25c7 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25c8 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [25c9 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [25ca 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [25cb 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [25cc 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25cd 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [25ce 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [25cf 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [25d0 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [25d1 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [25d2 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes in aliveMembership -peer1.org2.example.com | [25d3 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [25d4 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25d5 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [25d6 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer1.org2.example.com | [25d7 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [25d9 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [25d8 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25da 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [25db 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25dc 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [25dd 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [25de 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [25df 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [25e0 05-31 05:23:35.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [25e1 05-31 05:23:35.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [25e2 05-31 05:23:35.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [25e3 05-31 05:23:35.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [25e4 05-31 05:23:35.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [25e5 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25e6 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25e7 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25e8 05-31 05:23:35.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [25e9 05-31 05:23:35.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25ea 05-31 05:23:35.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25eb 05-31 05:23:35.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2100 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2101 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2102 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2103 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2105 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2104 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 273 bytes, Signature: 0 bytes -peer1.org1.example.com | [2106 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2107 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2108 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2109 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [210a 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [210b 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [210c 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [210d 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [210e 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [210f 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2110 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2111 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [2112 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2113 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2408 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2409 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [240a 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [240b 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [240c 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [240d 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [240e 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [240f 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2410 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2411 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2412 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2413 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2414 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2415 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2416 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2417 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2418 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2419 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [241a 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [241b 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [241c 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [241d 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [241e 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [241f 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2420 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2421 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2422 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2423 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2424 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2425 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2426 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2427 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2428 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2429 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [242a 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [242b 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [242c 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [242d 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [242e 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2430 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [242f 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2431 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2432 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2433 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2434 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2435 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2436 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2437 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2438 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [25ec 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer1.org2.example.com | [25ed 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25ee 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [25ef 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25f0 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [25f1 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [25f2 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [25f3 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25f4 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25f5 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25f6 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [25f7 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer1.org2.example.com | [25f8 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25f9 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [25fa 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [25fb 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [25fc 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [25fd 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [25fe 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [25ff 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [7 1 2 3 4 5 6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2600 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2601 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2602 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2603 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [2604 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2605 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [2607 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2606 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2608 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2609 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [260a 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [260b 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [260c 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [260d 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [260e 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [260f 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2610 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer1.org2.example.com | [2612 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [2613 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2614 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [2615 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2616 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [2617 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2611 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2618 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2355 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2658e5a7] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2356 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [2658e5a7] send state message COMPLETED -peer0.org1.example.com | [2357 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2658e5a7] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2358 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2658e5a7] notifying Txid:2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c, channelID:businesschannel -peer0.org1.example.com | [2359 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [235a 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] Exit -peer0.org1.example.com | [235b 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [235c 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] -peer0.org1.example.com | [235d 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2658e5a7] Exit -peer0.org1.example.com | [235e 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2658e5a7] Entry chaincode: name:"lscc" -peer0.org1.example.com | [235f 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2658e5a7] escc for chaincode name:"lscc" is escc -peer0.org1.example.com | [2360 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c, chaincode: lscc} -peer0.org1.example.com | [2361 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c, chaincode: lscc} -peer0.org1.example.com | [2362 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2658e5a7] Exit -peer0.org1.example.com | [2363 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] -peer0.org1.example.com | [2364 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55416 -peer0.org1.example.com | [2365 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2366 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2367 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2368 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [2369 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [236a 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [236b 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [236c 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [236d 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2370 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [236e 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2439 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [243a 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [243b 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [243c 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [243d 05-31 05:23:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [243e 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [243f 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2440 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2441 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2442 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2443 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2444 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2445 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2446 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2447 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49118 -peer0.org2.example.com | [2448 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4242f50b0 -peer0.org2.example.com | [2449 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org2.example.com | [244a 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [244b 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer0.org2.example.com | [244c 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [244d 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [244e 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc424336320, header 0xc4242f5410 -peer0.org2.example.com | [244f 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer0.org2.example.com | [2450 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][b278eedd] processing txid: b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae -peer0.org2.example.com | [2451 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae] -peer1.org1.example.com | [2114 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2115 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2116 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2118 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org1.example.com | [2119 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org1.example.com | [2117 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [211a 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [211c 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [211b 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [211d 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [211e 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [211f 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2120 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2121 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2122 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2123 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2124 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2125 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2126 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2127 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2128 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2129 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [212a 05-31 05:23:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [212b 05-31 05:23:15.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2619 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [261a 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [261b 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [261c 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [261d 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [261e 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [261f 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2620 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2621 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2622 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2623 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2624 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2625 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [2626 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2627 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2629 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [262a 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2628 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\240\001" signature:"0E\002!\000\303M\017\014C\305\321\210\263\305\003\034v2iN\261\225\264.DU\356\023`\335\330@\275\371\260\244\002 F\350]\022\221\232\355\204\304\027aH\347S{\005\324s\021\242r\273\330\242Ib~>\333QNn" > alive: alive: -peer1.org2.example.com | [262b 05-31 05:23:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [262c 05-31 05:23:35.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [262d 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [262e 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [262f 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org2.example.com | [2630 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org2.example.com | [2631 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org2.example.com | [2632 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2633 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2634 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2635 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [2636 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2637 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2638 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2639 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [263a 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [263b 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [263c 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [263d 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [263e 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [263f 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2640 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2641 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2642 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2643 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [2644 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2645 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > alive: alive: -peer1.org2.example.com | [2646 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [2647 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2648 05-31 05:23:35.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org2.example.com | [2649 05-31 05:23:35.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [264a 05-31 05:23:35.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [264b 05-31 05:23:35.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [264c 05-31 05:23:35.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [264d 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [264e 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [264f 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2650 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [2651 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2652 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2653 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2654 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2655 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2656 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2657 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2658 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [2659 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [265a 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [265b 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [265c 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [265d 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [265e 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [265f 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2660 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2661 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2662 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2663 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2664 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2665 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [2666 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2667 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [2668 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org2.example.com | [2669 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [266a 05-31 05:23:36.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [266b 05-31 05:23:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [266c 05-31 05:23:36.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [266d 05-31 05:23:36.44 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org2.example.com | [266e 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [266f 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2670 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2671 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2672 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2673 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2674 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2675 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2676 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2677 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2678 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2679 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [267a 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [267b 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [267c 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [267d 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [267e 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [267f 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2680 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2681 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2682 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2683 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2684 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2685 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2686 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2687 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2688 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2689 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [268a 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [268b 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [268c 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [268d 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [268e 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [268f 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2690 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2691 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2692 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2693 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2694 05-31 05:23:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2696 05-31 05:23:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2695 05-31 05:23:36.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2697 05-31 05:23:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2698 05-31 05:23:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2699 05-31 05:23:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [269a 05-31 05:23:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [269c 05-31 05:23:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [269d 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [269e 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [269f 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26a0 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [26a1 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26a2 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [269b 05-31 05:23:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26a3 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [26a4 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26a5 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26a6 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [26a7 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26a8 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26a9 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [26aa 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26ab 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26ac 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [26ad 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26ae 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26b0 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [26af 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26b1 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26b2 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [212c 05-31 05:23:15.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [212d 05-31 05:23:15.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [212e 05-31 05:23:15.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [212f 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2130 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2131 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2132 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org1.example.com | [2133 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [2134 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2135 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [2136 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2137 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [2138 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2139 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [213a 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [213b 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [213d 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [213c 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [213e 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [213f 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2140 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2141 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2142 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [2143 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2144 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2145 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 131 but got ts: inc_num:1527744090808810100 seq_num:130 -peer1.org1.example.com | [2146 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2147 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2148 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2149 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 132 but got ts: inc_num:1527744091618763800 seq_num:130 -peer1.org1.example.com | [214a 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [214b 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [214c 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [214d 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [214e 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [214f 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2150 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2151 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2152 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2154 05-31 05:23:15.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2153 05-31 05:23:15.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2155 05-31 05:23:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2156 05-31 05:23:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2157 05-31 05:23:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2158 05-31 05:23:15.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2159 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [215a 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [215b 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [215c 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [215d 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [215e 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [215f 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2160 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2161 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2162 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2163 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2164 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2165 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2166 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2167 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2168 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2169 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [216a 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [216b 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [216c 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [216d 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > alive: > -peer1.org1.example.com | [216e 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer1.org1.example.com | [216f 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2170 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2171 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2172 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2173 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2174 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2175 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2176 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2177 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2178 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2179 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [217a 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [217b 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [217c 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [217d 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2371 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 779 bytes, Signature: 0 bytes -peer0.org1.example.com | [2373 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2372 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [236f 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55418 -peer0.org1.example.com | [2374 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [2375 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer0.org1.example.com | [2377 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [2378 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2376 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429ba0780 -peer0.org1.example.com | [2379 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [237a 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [237b 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [237c 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [237d 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [237e 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429b6d9f0, header 0xc429c78600 -peer0.org1.example.com | [237f 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [2380 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][7136f80e] processing txid: 7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b -peer0.org1.example.com | [2381 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] -peer0.org1.example.com | [2382 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [2383 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] -peer0.org1.example.com | [2384 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][7136f80e] Entry chaincode: name:"lscc" -peer0.org1.example.com | [2385 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org1.example.com | [2386 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b,syscc=true,proposal=0xc429b6d9f0,canname=lscc:1.2.0) -peer0.org1.example.com | [2387 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [2388 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [2389 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7136f80e]Received message TRANSACTION from peer -peer0.org1.example.com | [238a 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7136f80e] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [238b 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [7136f80e] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [238c 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [238d 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [238e 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [238f 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2390 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer0.org1.example.com | [2391 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7136f80e] Sending GET_STATE -peer0.org1.example.com | [2392 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [7136f80e] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org1.example.com | [2393 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7136f80e] handling GET_STATE from chaincode -peer0.org1.example.com | [2394 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [7136f80e] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [2395 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer0.org1.example.com | [2396 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7136f80e] Completed GET_STATE. Sending RESPONSE -peer0.org1.example.com | [2397 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7136f80e]Received message RESPONSE from peer -peer0.org1.example.com | [2398 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7136f80e] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [2399 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [7136f80e] before send -peer0.org1.example.com | [239a 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [7136f80e] after send -peer0.org1.example.com | [239b 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [7136f80e] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [239c 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7136f80e] GetState received payload RESPONSE -peer0.org1.example.com | [239d 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7136f80e] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [239e 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [7136f80e] send state message COMPLETED -peer0.org1.example.com | [239f 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [7136f80e] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [23a0 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [7136f80e] notifying Txid:7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b, channelID:businesschannel -peer0.org1.example.com | [23a1 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [23a2 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] Exit -peer0.org1.example.com | [23a3 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [23a4 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] -peer0.org1.example.com | [23a5 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][7136f80e] Exit -peer0.org1.example.com | [23a6 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][7136f80e] Entry chaincode: name:"lscc" -peer0.org1.example.com | [23a7 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][7136f80e] escc for chaincode name:"lscc" is escc -peer0.org1.example.com | [23a8 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b, chaincode: lscc} -peer0.org1.example.com | [23a9 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b, chaincode: lscc} -peer0.org1.example.com | [23aa 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][7136f80e] Exit -peer0.org1.example.com | [23ab 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] -peer0.org1.example.com | [23ac 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55418 -peer0.org1.example.com | [23ad 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [23ae 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [23af 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [23b0 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [23b1 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [23b2 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [23b3 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [23b4 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [23b5 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [23b6 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [23b7 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [23b8 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [23b9 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [23ba 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [23bb 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [23bc 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [217e 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [23bd 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [23be 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org2.example.com | [26b3 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2452 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer1.org2.example.com | [26b4 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [26b5 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [26b6 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2453 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org2.example.com | [26b7 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [23bf 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [23c0 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\310\316ZR\032@\253\031\217\213\020:\317\233\374R\317*\003\037\233\312\177\307\246\204" > alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\215\001" signature:"0D\002 s\266\353a -peer1.org2.example.com | [26b8 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2454 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae] -peer0.org1.example.com | [23c1 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [26b9 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [26ba 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2455 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][b278eedd] Entry chaincode: name:"exp02" -peer0.org2.example.com | [2456 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae,syscc=true,proposal=0xc424336320,canname=lscc:1.2.0) -peer1.org2.example.com | [26bb 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26bc 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2457 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org2.example.com | [2458 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org2.example.com | [2459 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b278eedd]Received message TRANSACTION from peer -peer0.org1.example.com | [23c2 05-31 05:23:22.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [245a 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b278eedd] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org2.example.com | [26bd 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [217f 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [23c3 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [245b 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b278eedd] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org2.example.com | [26bf 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2180 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2181 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [26be 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [245c 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer0.org1.example.com | [23c4 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [26c1 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2182 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [245d 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b278eedd] Sending GET_STATE -peer0.org1.example.com | [23c5 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [26c0 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2183 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2184 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [245e 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b278eedd] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org2.example.com | [26c2 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2185 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [245f 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b278eedd] handling GET_STATE from chaincode -peer0.org1.example.com | [23c6 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [26c3 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2460 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [b278eedd] getting state for chaincode lscc, key exp02, channel businesschannel -peer0.org1.example.com | [23c7 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer1.org2.example.com | [26c4 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2461 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [2186 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [23c8 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer1.org2.example.com | [26c5 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2462 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b278eedd] Completed GET_STATE. Sending RESPONSE -peer0.org2.example.com | [2463 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b278eedd]Received message RESPONSE from peer -peer0.org2.example.com | [2464 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b278eedd] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org2.example.com | [26c6 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2465 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [b278eedd] before send -peer1.org2.example.com | [26c7 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2466 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [b278eedd] after send -peer0.org2.example.com | [2467 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b278eedd] Received RESPONSE, communicated (state:ready) -peer0.org2.example.com | [2468 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b278eedd] GetState received payload RESPONSE -peer0.org2.example.com | [2469 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b278eedd] Transaction completed. Sending COMPLETED -peer1.org2.example.com | [26c8 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [26c9 05-31 05:23:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26ca 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [26cb 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [26cc 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [26cd 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [26ce 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [23c9 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26cf 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [26d0 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2187 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2188 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [246a 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b278eedd] send state message COMPLETED -peer1.org2.example.com | [26d1 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [26d2 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [26d3 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [26d4 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2189 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [26d5 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [246b 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b278eedd] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [218a 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [23ca 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [26d6 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [246c 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b278eedd] notifying Txid:b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae, channelID:businesschannel -peer0.org1.example.com | [23cb 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [218b 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [26d7 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [246d 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [23cc 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [218c 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [26d8 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [246e 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org1.example.com | [23cd 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [218d 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [26d9 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [246f 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae] Entry chaincode: name:"exp02" version: 1.0 -peer0.org1.example.com | [23ce 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [218e 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26da 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2470 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae,syscc=false,proposal=0xc424336320,canname=exp02:1.0) -peer0.org1.example.com | [23cf 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [23d0 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org2.example.com | [26db 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2471 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer0.org2.example.com | [2472 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org2.example.com | [26dc 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26dd 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [26de 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [26df 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2473 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b278eedd] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer0.org2.example.com | [2474 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b278eedd] handling GET_STATE from chaincode -peer0.org2.example.com | [2475 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [b278eedd] getting state for chaincode exp02, key a, channel businesschannel -peer1.org1.example.com | [218f 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2190 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2192 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2191 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [23d1 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [2476 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer0.org2.example.com | [2477 05-31 05:23:22.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b278eedd] Completed GET_STATE. Sending RESPONSE -peer1.org2.example.com | [26e0 05-31 05:23:38.99 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2193 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org2.example.com | [2478 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b278eedd] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org2.example.com | [2479 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b278eedd] notifying Txid:b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae, channelID:businesschannel -peer1.org2.example.com | [26e1 05-31 05:23:38.99 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [23d2 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [247a 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org2.example.com | [26e2 05-31 05:23:38.99 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2194 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [247b 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae] Exit -peer1.org2.example.com | [26e3 05-31 05:23:38.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [23d3 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55420 -peer1.org1.example.com | [2195 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2196 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [247c 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org2.example.com | [26e4 05-31 05:23:38.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [247d 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae] -peer0.org2.example.com | [247e 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][b278eedd] Exit -peer1.org2.example.com | [26e6 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [247f 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b278eedd] Entry chaincode: name:"exp02" -peer0.org2.example.com | [2480 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b278eedd] escc for chaincode name:"exp02" is escc -peer0.org2.example.com | [2481 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae, chaincode: exp02} -peer1.org2.example.com | [26e5 05-31 05:23:38.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2482 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae, chaincode: exp02} -peer0.org2.example.com | [2483 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b278eedd] Exit -peer0.org2.example.com | [2484 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b278eedd8e46996656f06107282e47b184fb1390074abe7362194a6ff895e6ae] -peer0.org2.example.com | [2485 05-31 05:23:22.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49118 -peer0.org1.example.com | [23d4 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429d07d10 -peer0.org2.example.com | [2486 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [26e7 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [23d5 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [2197 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2487 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [26e8 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [23d6 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [2198 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2488 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [26e9 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org1.example.com | [23d7 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org1.example.com | [2199 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2489 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org2.example.com | [26ea 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [23d8 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [219a 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [248a 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26eb 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [23d9 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [219b 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [248b 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [26ec 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org2.example.com | [26ed 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [248c 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [26ee 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [26ef 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [26f0 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [26f1 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [26f2 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [248d 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [26f3 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [248e 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [219c 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [26f4 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [26f5 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [248f 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [219d 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [219e 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2490 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [219f 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [21a0 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2491 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer0.org1.example.com | [23da 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429ced3b0, header 0xc429d94090 -peer1.org2.example.com | [26f6 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [21a1 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [21a2 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [21a3 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [26f7 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [21a4 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > alive: alive: alive: -peer1.org1.example.com | [21a5 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes -peer1.org2.example.com | [26f8 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [26f9 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [26fa 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [21a6 05-31 05:23:15.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [23db 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [23dc 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][cc2ce04f] processing txid: cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216 -peer0.org1.example.com | [23dd 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] -peer0.org1.example.com | [23de 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [23df 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] -peer0.org1.example.com | [23e0 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][cc2ce04f] Entry chaincode: name:"lscc" -peer0.org1.example.com | [23e1 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org1.example.com | [23e2 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216,syscc=true,proposal=0xc429ced3b0,canname=lscc:1.2.0) -peer0.org1.example.com | [23e3 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [23e4 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [23e5 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc2ce04f]Received message TRANSACTION from peer -peer0.org1.example.com | [23e6 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cc2ce04f] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [23e7 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [cc2ce04f] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [23e8 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc2ce04f] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [23e9 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [cc2ce04f] send state message COMPLETED -peer0.org2.example.com | [2492 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [2493 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [2494 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2495 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2496 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [2497 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2498 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [2499 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [249a 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [249b 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [249c 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [249d 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [21a7 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [21a8 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [21a9 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [21aa 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [21ab 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [21ac 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [21ad 05-31 05:23:16.20 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 -peer1.org1.example.com | [21ae 05-31 05:23:16.20 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully -peer1.org1.example.com | [21af 05-31 05:23:16.20 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 -peer1.org1.example.com | [21b0 05-31 05:23:16.29 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 -peer1.org1.example.com | [21b1 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [21b2 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer1.org1.example.com | [21b3 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [21b4 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [21b5 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [21b6 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [21b7 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [21b8 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [21b9 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [21ba 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [21bb 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21bc 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21bd 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [23ea 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [cc2ce04f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [21be 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [21bf 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21c0 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21c1 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [21c2 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [21c3 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [21c4 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [21c5 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [21c6 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [21c7 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [26fb 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org1.example.com | [23eb 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [cc2ce04f] notifying Txid:cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216, channelID:businesschannel -peer0.org1.example.com | [23ec 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [23ed 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] Exit -peer1.org2.example.com | [26fc 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [21c8 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [249e 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [249f 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [24a0 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [24a1 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [24a2 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [24a3 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [24a4 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [24a5 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [24a6 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [24a7 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\335\370\002 ]6(\316a\355O\363F\272\345vKl\224j\360\024If\366i\240tJ}f\206H\253\326\302" > > -peer0.org2.example.com | [24a8 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org2.example.com | [24a9 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24aa 05-31 05:23:22.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [24ab 05-31 05:23:22.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [24ac 05-31 05:23:22.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24ad 05-31 05:23:23.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [24ae 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24af 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [24b0 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24b1 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer1.org1.example.com | [21c9 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [26fd 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [21ca 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21cb 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [23ee 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [24b2 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [24b4 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24b3 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [24b5 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24b6 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [24b7 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [24b8 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24b9 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [24ba 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [26fe 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [21cc 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [23ef 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] -peer0.org2.example.com | [24bb 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [26ff 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [21cd 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21ce 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [23f0 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][cc2ce04f] Exit -peer1.org2.example.com | [2700 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [21cf 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [21d0 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [21d1 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21d2 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21d3 05-31 05:23:16.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [21d4 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21d5 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21d6 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [21d7 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [21d8 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [21d9 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21da 05-31 05:23:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [21db 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21dc 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21dd 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [21de 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [21df 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21e0 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21e1 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [21e2 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [21e3 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [21e4 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [21e5 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [21e6 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [23f1 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][cc2ce04f] Entry chaincode: name:"lscc" -peer0.org1.example.com | [23f2 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][cc2ce04f] escc for chaincode name:"lscc" is escc -peer0.org1.example.com | [23f3 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216, chaincode: lscc} -peer0.org1.example.com | [23f4 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216, chaincode: lscc} -peer0.org1.example.com | [23f5 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][cc2ce04f] Exit -peer0.org1.example.com | [23f6 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] -peer0.org1.example.com | [23f7 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55420 -peer0.org1.example.com | [23f8 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [23f9 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [23fa 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [23fb 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [23fc 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55422 -peer0.org1.example.com | [23fd 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429cebd40 -peer0.org1.example.com | [23fe 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [23ff 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [2400 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [2401 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [2402 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [2403 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429d74780, header 0xc429dea0c0 -peer0.org1.example.com | [2404 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -peer0.org1.example.com | [2405 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][a45f011a] processing txid: a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b -peer0.org1.example.com | [2406 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] -peer0.org1.example.com | [2407 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [2408 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] -peer0.org1.example.com | [2409 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a45f011a] Entry chaincode: name:"lscc" -peer0.org1.example.com | [240a 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] Entry chaincode: name:"lscc" version: 1.2.0 -peer0.org1.example.com | [240b 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b,syscc=true,proposal=0xc429d74780,canname=lscc:1.2.0) -peer0.org1.example.com | [240c 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer0.org1.example.com | [240d 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [240e 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a45f011a]Received message TRANSACTION from peer -peer0.org1.example.com | [240f 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a45f011a] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [2410 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a45f011a] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [2411 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetInstantiatedChaincodes -peer0.org1.example.com | [2412 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [a45f011a] Sending GET_STATE_BY_RANGE -peer0.org1.example.com | [2413 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a45f011a] Fabric side handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -peer0.org1.example.com | [2414 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a45f011a] handling GET_STATE_BY_RANGE from chaincode -peer0.org1.example.com | [2415 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] HandleGetStateByRange-fm.HandleGetStateByRange.GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -peer0.org1.example.com | [2416 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] HandleGetStateByRange-fm.HandleGetStateByRange.BuildQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -peer0.org1.example.com | [2417 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetStateByRange-fm.HandleGetStateByRange -> DEBU Got keys and values. Sending RESPONSE -peer0.org1.example.com | [2418 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a45f011a] Completed GET_STATE_BY_RANGE. Sending RESPONSE -peer0.org1.example.com | [2419 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a45f011a]Received message RESPONSE from peer -peer0.org1.example.com | [241a 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a45f011a] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [241b 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a45f011a] before send -peer0.org1.example.com | [241c 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a45f011a] after send -peer0.org1.example.com | [241d 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a45f011a] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [241e 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [a45f011a] Received RESPONSE. Successfully got range -peer0.org1.example.com | [241f 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [a45f011a] Sending QUERY_STATE_CLOSE -peer0.org1.example.com | [2420 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a45f011a] Fabric side handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -peer0.org1.example.com | [2421 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a45f011a] handling QUERY_STATE_CLOSE from chaincode -peer1.org1.example.com | [21e7 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [21e8 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [21e9 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [21ea 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [21eb 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21ec 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [21ed 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21ee 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [21ef 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21f0 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21f1 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [21f2 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [21f3 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21f4 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [21f5 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21f6 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21f7 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [21f8 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [21f9 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [21fa 05-31 05:23:16.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [21fb 05-31 05:23:16.94 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 | [21fc 05-31 05:23:16.94 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) -peer1.org1.example.com | [21fd 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -peer1.org1.example.com | [21fe 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -peer1.org1.example.com | [21ff 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -peer1.org1.example.com | [2200 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -peer1.org1.example.com | [2201 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 -peer0.org2.example.com | [24bc 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24bd 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [24be 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24bf 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24c0 05-31 05:23:23.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [24c1 05-31 05:23:23.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [24c2 05-31 05:23:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24c3 05-31 05:23:23.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [24c5 05-31 05:23:23.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [24c6 05-31 05:23:23.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24c7 05-31 05:23:23.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [24c4 05-31 05:23:23.38 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer0.org2.example.com | [24c8 05-31 05:23:23.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [24c9 05-31 05:23:23.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2701 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2702 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [2703 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2704 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2705 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2706 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2707 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2708 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2709 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [270a 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [270b 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [270c 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [270d 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [270e 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [270f 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2710 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2711 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2712 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2713 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2714 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2715 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2716 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [2717 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2718 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2719 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [271a 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [271b 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [271c 05-31 05:23:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [271d 05-31 05:23:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [271e 05-31 05:23:39.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [271f 05-31 05:23:39.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [2720 05-31 05:23:39.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [2721 05-31 05:23:39.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [2722 05-31 05:23:39.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [6 7 1 2 3 4 5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2723 05-31 05:23:39.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2724 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [2725 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2726 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2727 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2728 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2729 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [272a 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [272b 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [272c 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [272d 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [272e 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [272f 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [2730 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2731 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [2732 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [2733 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2734 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [2735 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2736 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2737 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2738 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2739 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [273a 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [273b 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [273c 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [273d 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [273e 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [273f 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2740 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2741 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2742 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [2743 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2744 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\245\001" signature:"0D\002 k\311\250Tc<\346\004\377V\360\335\364{c\177\021\214\027H\321\200\337~\203\256\0063\257j0=\002 \004\324\213[\277\027M\326$\363^)\255\210\213W\027\314\234\024\241\221\230\342L\212d\353w\013\214\347" > alive: alive: alive: -peer1.org2.example.com | [2745 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [2746 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2747 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [2748 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2749 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [274a 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [274b 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer1.org2.example.com | [274c 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer1.org2.example.com | [274d 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer1.org2.example.com | [274e 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [274f 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2750 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2751 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [2752 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2753 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2754 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2202 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -peer1.org1.example.com | [2203 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" -peer1.org1.example.com | [2204 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" -peer1.org1.example.com | [2205 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" -peer1.org1.example.com | [2206 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -peer1.org1.example.com | [2207 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer1.org1.example.com | [2208 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [2209 05-31 05:23:17.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [28e05e5c] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [220a 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [28e05e5c] handling GET_STATE from chaincode -peer1.org1.example.com | [220b 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [28e05e5c] getting state for chaincode exp02, key a, channel businesschannel -peer1.org1.example.com | [220c 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [220d 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [28e05e5c] Completed GET_STATE. Sending RESPONSE -peer1.org1.example.com | [220e 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [28e05e5c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [220f 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [28e05e5c] notifying Txid:28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16, channelID:businesschannel -peer1.org1.example.com | [2210 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [2211 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16] Exit -peer1.org1.example.com | [2212 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [2213 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16] -peer1.org1.example.com | [2214 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][28e05e5c] Exit -peer1.org1.example.com | [2215 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][28e05e5c] Entry chaincode: name:"exp02" -peer1.org1.example.com | [2216 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][28e05e5c] escc for chaincode name:"exp02" is escc -peer1.org1.example.com | [2217 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16, chaincode: exp02} -peer1.org1.example.com | [2218 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16, chaincode: exp02} -peer1.org1.example.com | [2219 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][28e05e5c] Exit -peer1.org1.example.com | [221a 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [28e05e5c44e15a231b006444a79893c97fe062612497f57ca1749c9a10a72b16] -peer1.org1.example.com | [221b 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55382 -peer1.org1.example.com | [221c 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [24ca 05-31 05:23:23.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [24cb 05-31 05:23:23.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24cc 05-31 05:23:23.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [24cd 05-31 05:23:23.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24ce 05-31 05:23:23.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24cf 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [24d0 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [24d1 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [24d2 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24d3 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer0.org2.example.com | [24d4 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer0.org2.example.com | [24d5 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer0.org2.example.com | [24d6 05-31 05:23:23.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24d7 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [24d8 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [24d9 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [24da 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24db 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [24dc 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [24dd 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24de 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [24df 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24e0 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [24e1 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2422 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a45f011a] Completed QUERY_STATE_CLOSE. Sending RESPONSE -peer0.org1.example.com | [2423 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a45f011a]Received message RESPONSE from peer -peer0.org1.example.com | [2424 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a45f011a] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer0.org1.example.com | [2425 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a45f011a] before send -peer0.org1.example.com | [2426 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a45f011a] after send -peer0.org1.example.com | [2427 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a45f011a] Received RESPONSE, communicated (state:ready) -peer0.org1.example.com | [2428 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [a45f011a] Received RESPONSE. Successfully got range -peer0.org1.example.com | [2429 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a45f011a] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [242a 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a45f011a] send state message COMPLETED -peer1.org2.example.com | [2755 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org2.example.com | [2756 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [221d 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [221e 05-31 05:23:17.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org1.example.com | [221f 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [2220 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] -peer1.org1.example.com | [2221 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -peer1.org1.example.com | [2222 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -peer1.org1.example.com | [2223 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -peer1.org1.example.com | [2224 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [2225 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 -peer1.org1.example.com | [2226 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [2227 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [2228 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [2229 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [222a 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [222b 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [222c 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [222d 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [222e 05-31 05:23:17.02 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [222f 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2230 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2231 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2232 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [2233 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2234 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2235 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2236 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2237 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [242b 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a45f011a] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [242c 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a45f011a] notifying Txid:a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b, channelID:businesschannel -peer0.org1.example.com | [242d 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [242e 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] Exit -peer0.org1.example.com | [242f 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [2430 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] -peer0.org1.example.com | [2431 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a45f011a] Exit -peer0.org1.example.com | [2432 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a45f011a] Entry chaincode: name:"lscc" -peer0.org1.example.com | [2433 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a45f011a] escc for chaincode name:"lscc" is escc -peer0.org1.example.com | [2434 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b, chaincode: lscc} -peer0.org1.example.com | [2435 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b, chaincode: lscc} -peer0.org1.example.com | [2436 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a45f011a] Exit -peer0.org1.example.com | [2437 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] -peer0.org1.example.com | [2438 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55422 -peer0.org1.example.com | [2439 05-31 05:23:23.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [243a 05-31 05:23:23.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [243b 05-31 05:23:23.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [243c 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [243d 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [243e 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [243f 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2440 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2441 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2442 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [2443 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2444 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2445 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2446 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2447 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [2448 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [2449 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [244a 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [244b 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [244c 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [244d 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [244e 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [244f 05-31 05:23:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [2450 05-31 05:23:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2451 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2452 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2453 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2454 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2455 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2456 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [2457 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2458 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\216\001" signature:"0D\002 R\317\234^=p\303\201\347v\214\315\335\025\246\3737]\022f\035\317\344~\225\254;U\360&^\373\002 u&g\246_d\301\226\325~\364e\351\274}\310\311\235\326\277\027P'\243\332\375\271~\251k\206\335" secret_envelope: > -peer0.org1.example.com | [2459 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [245a 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [245b 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [245c 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [245d 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [245e 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [245f 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [2460 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2757 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2758 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [2759 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [275a 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [275b 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [275c 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [275d 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [275e 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [275f 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [2760 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2761 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > alive: alive: alive:r\006t\271w\327\002 \013\204\014\265\365~ -peer1.org2.example.com | [2762 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [2763 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2764 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2765 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2766 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2767 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2768 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2769 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [276a 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [276b 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [276c 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org2.example.com | [276d 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [276e 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [276f 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org2.example.com | [2770 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2771 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2772 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2773 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2774 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2775 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2776 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org2.example.com | [2777 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2778 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org2.example.com | [2779 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [277a 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [277b 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org2.example.com | [277c 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2238 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2239 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [223a 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [223b 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [223c 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [223d 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [223e 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [223f 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2240 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2241 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2242 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2243 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2244 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [2245 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2246 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\207\001" signature:"0D\002 .;\231\242\212^\273v\363~I!(\333\254\354-\336\243 S\246\326\311\277k\342[,\252\006\244\002 Q\033\206t\206\375\240\200\372\312\216\224\366\247\201k\r`\276\215h`keAw\337\233\325*@\311" > alive: alive: alive: -peer1.org1.example.com | [2247 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2248 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2249 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [224a 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [224b 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [224c 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [224d 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [224e 05-31 05:23:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [224f 05-31 05:23:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2250 05-31 05:23:19.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2251 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2252 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2253 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2254 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2255 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer1.org1.example.com | [2256 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2257 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2258 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2259 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [225a 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [225b 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [225c 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [225d 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [225e 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [225f 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [2260 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [2261 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [2262 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2263 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -peer1.org1.example.com | [2264 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2265 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55386 -peer1.org1.example.com | [2266 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4222fd110 -peer1.org1.example.com | [2267 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [2268 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [2269 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer1.org1.example.com | [226a 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [226b 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [226c 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4223451d0, header 0xc4222fd5c0 -peer1.org1.example.com | [226d 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -peer1.org1.example.com | [226e 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][1b6a7c53] processing txid: 1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04 -peer1.org1.example.com | [226f 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04] -peer1.org1.example.com | [2270 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -peer1.org1.example.com | [2271 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [2272 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2273 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2274 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04] -peer1.org1.example.com | [2275 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][1b6a7c53] Entry chaincode: name:"exp02" -peer1.org1.example.com | [2276 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04,syscc=true,proposal=0xc4223451d0,canname=lscc:1.2.0) -peer1.org1.example.com | [2277 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -peer1.org1.example.com | [2278 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [2279 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b6a7c53]Received message TRANSACTION from peer -peer1.org1.example.com | [227a 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1b6a7c53] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer1.org1.example.com | [227b 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1b6a7c53] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer1.org1.example.com | [227c 05-31 05:23:19.16 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -peer1.org1.example.com | [227d 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [227e 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [1b6a7c53] Sending GET_STATE -peer0.org2.example.com | [24e2 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [24e3 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [24e4 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [24e5 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [24e6 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [24e7 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [24e8 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [24e9 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [24ea 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [24eb 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [24ec 05-31 05:23:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [24ee 05-31 05:23:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [24ef 05-31 05:23:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24f0 05-31 05:23:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [24f1 05-31 05:23:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [24ed 05-31 05:23:23.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\214\001" signature:"0E\002!\000\356\177;:\214Y\204\331]l@H\014R\232\343\024\240\251\275c\246f\240\337Q\377\377\303&\261\273\002 d:\275\031y\226\014\306\341I\330\311.\370\360\230\2673J\357(m\340H^aG\357t\013=\217" > alive: alive: -peer0.org2.example.com | [24f2 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [24f3 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [24f4 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [24f5 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [24f6 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24f7 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [24f8 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [24f9 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [24fa 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [24fb 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24fc 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [24fd 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [24fe 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [24ff 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2500 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2501 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2502 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2503 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2504 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2505 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2506 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2507 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2508 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2509 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [250a 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [250b 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > alive: alive: -peer0.org2.example.com | [250c 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [250d 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [250e 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [250f 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2510 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [2511 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2513 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [2512 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2514 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2515 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2516 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2517 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2518 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2519 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [251a 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2461 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2464 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2462 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2465 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2466 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2463 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2467 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2469 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [246a 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [246b 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [246c 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [246d 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [246e 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [246f 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2470 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2471 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2472 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [2468 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2473 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2474 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2475 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2476 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2477 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2478 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2479 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [247a 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [247b 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [247c 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [247d 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [247e 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [247f 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2480 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2481 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2482 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2483 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2484 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2485 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2486 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2487 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2488 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2489 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [248a 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [248b 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [248c 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [248d 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [248e 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [248f 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2490 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2491 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2492 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2493 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2494 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2495 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2496 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2498 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2499 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org1.example.com | [2497 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [249a 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [251b 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [251c 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [251d 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [251e 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [251f 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2520 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [249b 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [249c 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 142 but got ts: inc_num:1527744090808810100 seq_num:140 -peer0.org1.example.com | [249d 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [249e 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55424 -peer0.org1.example.com | [249f 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429f224e0 -peer0.org1.example.com | [24a0 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [24a1 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [24a2 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [24a3 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [24a4 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [24a5 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429d75860, header 0xc429f22840 -peer0.org1.example.com | [24a6 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -peer0.org1.example.com | [24a7 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][f123ecb7] processing txid: f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32 -peer0.org1.example.com | [24a8 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] -peer0.org1.example.com | [24aa 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [24a9 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [24ac 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [24ab 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] -peer0.org1.example.com | [24ad 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f123ecb7] Entry chaincode: name:"qscc" -peer0.org1.example.com | [24af 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] Entry chaincode: name:"qscc" version: 1.2.0 -peer0.org1.example.com | [24b0 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32,syscc=true,proposal=0xc429d75860,canname=qscc:1.2.0) -peer0.org1.example.com | [24b1 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer0.org1.example.com | [24ae 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [24b3 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [24b4 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [24b5 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [24b2 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [24b7 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f123ecb7]Received message TRANSACTION from peer -peer0.org1.example.com | [24b6 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [24b8 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [24b9 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [24ba 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f123ecb7] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [24bc 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f123ecb7] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [24bb 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [24bd 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [24bf 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [24be 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -peer0.org1.example.com | [24c0 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [24c1 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo -peer0.org1.example.com | [24c3 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f123ecb7] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [24c2 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [24c5 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [24c6 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [24c4 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [f123ecb7] send state message COMPLETED -peer0.org1.example.com | [24c7 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f123ecb7] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [24c9 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f123ecb7] notifying Txid:f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32, channelID:businesschannel -peer0.org1.example.com | [24ca 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [24cb 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] Exit -peer0.org1.example.com | [24cc 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [24cd 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] -peer0.org1.example.com | [24ce 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f123ecb7] Exit -peer0.org1.example.com | [24cf 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f123ecb7] Entry chaincode: name:"qscc" -peer0.org1.example.com | [24d0 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f123ecb7] escc for chaincode name:"qscc" is escc -peer0.org1.example.com | [24d1 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32, chaincode: qscc} -peer0.org1.example.com | [24d2 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32, chaincode: qscc} -peer0.org1.example.com | [24d3 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f123ecb7] Exit -peer0.org1.example.com | [24d4 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] -peer0.org1.example.com | [24d5 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55424 -peer0.org1.example.com | [24c8 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org1.example.com | [24d6 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [24d7 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [24d8 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [24d9 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [24da 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [24db 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [24dc 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [24dd 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [24de 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [24df 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [24e0 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [24e1 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [24e2 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [24e3 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [24e4 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55426 -peer0.org1.example.com | [24e5 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429f23d10 -peer0.org1.example.com | [24e6 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer0.org1.example.com | [24e7 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [227f 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1b6a7c53] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [2280 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1b6a7c53] handling GET_STATE from chaincode -peer1.org1.example.com | [2282 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [1b6a7c53] getting state for chaincode lscc, key exp02, channel businesschannel -peer1.org2.example.com | [277d 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2281 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2283 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [2284 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [2285 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer0.org1.example.com | [24e8 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -peer0.org1.example.com | [24e9 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -peer1.org2.example.com | [277e 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [277f 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [24ea 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [2521 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [24eb 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429f9c370, header 0xc429fb2090 -peer0.org1.example.com | [24ec 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -peer1.org1.example.com | [2286 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes -peer1.org1.example.com | [2287 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2780 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2288 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1b6a7c53] Completed GET_STATE. Sending RESPONSE -peer1.org1.example.com | [2289 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b6a7c53]Received message RESPONSE from peer -peer1.org1.example.com | [228a 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1b6a7c53] Handling ChaincodeMessage of type: RESPONSE(state:ready) -peer1.org1.example.com | [228b 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [1b6a7c53] before send -peer1.org1.example.com | [228c 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [1b6a7c53] after send -peer1.org1.example.com | [228d 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1b6a7c53] Received RESPONSE, communicated (state:ready) -peer1.org1.example.com | [228e 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [1b6a7c53] GetState received payload RESPONSE -peer1.org1.example.com | [228f 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1b6a7c53] Transaction completed. Sending COMPLETED -peer1.org1.example.com | [2290 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [1b6a7c53] send state message COMPLETED -peer1.org1.example.com | [2291 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1b6a7c53] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [2292 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1b6a7c53] notifying Txid:1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04, channelID:businesschannel -peer1.org1.example.com | [2293 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [2294 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -peer0.org2.example.com | [2522 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2523 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2524 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2525 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2526 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2527 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2781 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2782 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2783 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2784 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2785 05-31 05:23:41.41 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting -peer1.org2.example.com | [2786 05-31 05:23:41.41 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false -peer1.org2.example.com | [2787 05-31 05:23:41.41 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering -peer1.org2.example.com | [2788 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [2789 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org2.example.com | [278a 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [24ed 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][20c56ec5] processing txid: 20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959 -peer0.org2.example.com | [2528 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [278b 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration -peer1.org1.example.com | [2295 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04] Entry chaincode: name:"exp02" version: 1.0 -peer0.org1.example.com | [24ee 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] -peer0.org1.example.com | [24ef 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2296 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04,syscc=false,proposal=0xc4223451d0,canname=exp02:1.0) -peer0.org1.example.com | [24f0 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] -peer1.org1.example.com | [2297 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -peer1.org1.example.com | [2298 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer1.org1.example.com | [2299 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1b6a7c53] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -peer1.org1.example.com | [229a 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1b6a7c53] handling GET_STATE from chaincode -peer1.org1.example.com | [229b 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [1b6a7c53] getting state for chaincode exp02, key a, channel businesschannel -peer1.org2.example.com | [278c 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [229c 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org2.example.com | [278d 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [278e 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [278f 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2790 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2791 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2792 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [2793 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2794 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2795 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [229d 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [1b6a7c53] Completed GET_STATE. Sending RESPONSE -peer1.org1.example.com | [229e 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1b6a7c53] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer1.org1.example.com | [229f 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1b6a7c53] notifying Txid:1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04, channelID:businesschannel -peer1.org1.example.com | [22a0 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer1.org1.example.com | [22a1 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04] Exit -peer1.org1.example.com | [22a2 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [22a3 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04] -peer1.org1.example.com | [22a4 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][1b6a7c53] Exit -peer1.org1.example.com | [22a5 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][1b6a7c53] Entry chaincode: name:"exp02" -peer1.org1.example.com | [22a6 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][1b6a7c53] escc for chaincode name:"exp02" is escc -peer1.org1.example.com | [22a7 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04, chaincode: exp02} -peer1.org1.example.com | [22a8 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04, chaincode: exp02} -peer1.org1.example.com | [22a9 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][1b6a7c53] Exit -peer1.org1.example.com | [22aa 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [1b6a7c53001d9b2de9b27f2aa8a8993324325680bb1fbff599c67a657b203d04] -peer1.org1.example.com | [22ab 05-31 05:23:19.18 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55386 -peer1.org1.example.com | [22ac 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [22ad 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [22ae 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [22af 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [22b0 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [22b1 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [22b2 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [22b3 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [22b4 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [22b5 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [22b6 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [22b7 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [22b8 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [22b9 05-31 05:23:19.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [22ba 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [22bc 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22bd 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22be 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22bf 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [22c0 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22c1 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22c2 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22c3 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [22bb 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22c4 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22c5 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [22c6 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [22c7 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [22c8 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [22c9 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [22ca 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [22cb 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2796 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2797 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2798 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2799 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [279a 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [279b 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [279c 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [279d 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [279e 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [279f 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27a0 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [27a1 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27a2 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27a3 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [27a4 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [27a5 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [27a6 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27a7 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [27a8 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27a9 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [27aa 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27ab 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [27ac 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27ad 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [24f1 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][20c56ec5] Entry chaincode: name:"qscc" -peer0.org1.example.com | [24f2 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] Entry chaincode: name:"qscc" version: 1.2.0 -peer0.org1.example.com | [24f3 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959,syscc=true,proposal=0xc429f9c370,canname=qscc:1.2.0) -peer0.org1.example.com | [24f4 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -peer0.org1.example.com | [24f5 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -peer0.org1.example.com | [24f6 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [20c56ec5]Received message TRANSACTION from peer -peer0.org1.example.com | [24f7 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [20c56ec5] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -peer0.org1.example.com | [24f8 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [20c56ec5] Received TRANSACTION, invoking transaction on chaincode(state:ready) -peer0.org1.example.com | [24f9 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -peer0.org1.example.com | [24fa 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetBlockByNumber -peer0.org1.example.com | [24fb 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -peer0.org1.example.com | [24fc 05-31 05:23:23.92 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=[26081] -peer0.org1.example.com | [24fd 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34232], Going to peek [8] bytes -peer0.org1.example.com | [24fe 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26081], bytesOffset=[26083]} -peer0.org1.example.com | [24ff 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [20c56ec5] Transaction completed. Sending COMPLETED -peer0.org1.example.com | [2500 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [20c56ec5] send state message COMPLETED -peer0.org1.example.com | [2501 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [20c56ec5] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -peer0.org1.example.com | [2502 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [20c56ec5] notifying Txid:20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959, channelID:businesschannel -peer0.org1.example.com | [2503 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -peer0.org1.example.com | [2504 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] Exit -peer0.org1.example.com | [2505 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [2506 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] -peer0.org1.example.com | [2507 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][20c56ec5] Exit -peer0.org1.example.com | [2508 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][20c56ec5] Entry chaincode: name:"qscc" -peer0.org1.example.com | [2509 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][20c56ec5] escc for chaincode name:"qscc" is escc -peer0.org1.example.com | [250a 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959, chaincode: qscc} -peer0.org1.example.com | [250b 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959, chaincode: qscc} -peer0.org1.example.com | [250c 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][20c56ec5] Exit -peer0.org1.example.com | [250d 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] -peer0.org1.example.com | [250e 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55426 -peer0.org1.example.com | [250f 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2510 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2511 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [2512 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2513 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2514 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2515 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2516 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2517 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2518 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2519 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [251a 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [251b 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [251c 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [251d 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [251e 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [251f 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [2520 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2521 05-31 05:23:23.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\220\001" signature:"0D\002 6;\\\273.\247\257\013\350\361Vs\215\350\304A#R\010:\341\252\n}\014O\246\272\236\203\325\273\002 \177\2557\271\237\324\371\335\372\266\266|\235)\371\002\323\177\331Y7\316\262\344\355D\017\230\025_J6" > -peer0.org1.example.com | [2522 05-31 05:23:23.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2523 05-31 05:23:23.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2524 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2525 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [22cc 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [22cd 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [22cf 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [22ce 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [22d1 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [22d0 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [22d2 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [22d3 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [22d4 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [22d5 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [22d7 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [22d8 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [22d6 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [22d9 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [22da 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [22db 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [22dc 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [22dd 05-31 05:23:19.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [22de 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [22df 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [22e0 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [22e1 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [22e2 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [22e3 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [22e4 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [22e5 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [22e6 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [22e7 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [22e8 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [22ea 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [22e9 05-31 05:23:19.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [22eb 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [22ec 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [22ed 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [22ee 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [22ef 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [22f0 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [22f2 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [22f3 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [22f1 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [22f4 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [22f5 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [22f6 05-31 05:23:19.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [22f7 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [27ae 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27af 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [27b0 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [27b1 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [27b2 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [27b3 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [27b4 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [27b5 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [27b6 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [27b7 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [27b8 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27b9 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [27ba 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [27bb 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27bc 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [27bd 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27be 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [27bf 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27c1 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27c2 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27c3 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [27c0 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27c4 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [27c6 05-31 05:23:41.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27c5 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27c7 05-31 05:23:41.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [27c8 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27c9 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [27ca 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27cb 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27cc 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27cd 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [27ce 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [27cf 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [27d0 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [27d1 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [27d2 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [27d3 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [27d4 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [27d5 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27d6 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [27d7 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27d8 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27d9 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [27da 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [27db 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org2.example.com | [27dc 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27dd 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2529 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [252a 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [252b 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [252c 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [252d 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [252e 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [252f 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2530 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2531 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2532 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2533 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org2.example.com | [2534 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org2.example.com | [2535 05-31 05:23:24.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2536 05-31 05:23:24.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2537 05-31 05:23:24.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2538 05-31 05:23:24.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2539 05-31 05:23:24.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [253a 05-31 05:23:24.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [253b 05-31 05:23:24.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [253c 05-31 05:23:24.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [253d 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [253e 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [253f 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2540 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2541 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2542 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2543 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2544 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2545 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2546 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2547 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2548 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2549 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [254a 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [254b 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [254c 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org2.example.com | [254e 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [254d 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [254f 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2550 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2551 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2552 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2553 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [2554 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2555 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [2556 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2557 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2558 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2559 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [255a 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [255b 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [255c 05-31 05:23:24.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [255d 05-31 05:23:24.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [255e 05-31 05:23:24.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [255f 05-31 05:23:24.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2526 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2527 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2528 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2529 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [252a 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [252b 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [252c 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [22f8 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [22f9 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [22fb 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [22fa 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [22fc 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [22fd 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [22fe 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 138 but got ts: inc_num:1527744091840124700 seq_num:137 -peer1.org1.example.com | [22ff 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2300 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2301 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2302 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 137 but got ts: inc_num:1527744091618763800 seq_num:136 -peer1.org1.example.com | [2303 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2304 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2305 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2306 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2307 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2308 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2309 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [230a 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [230b 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [230c 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [230d 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [230e 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [230f 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2310 05-31 05:23:19.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2311 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2312 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2313 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2314 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [2315 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2316 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2317 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2318 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2319 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [231a 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [231b 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [231c 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [231d 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [231e 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [231f 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2320 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2321 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2322 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2323 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [2324 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2325 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > alive:\n" secret_envelope:J\375\251\024\035\306\271\265\337m8\317\366eR\177" > > -peer1.org1.example.com | [2326 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer1.org1.example.com | [2327 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2328 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2329 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [232a 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [232b 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [232c 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2560 05-31 05:23:24.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2561 05-31 05:23:24.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2562 05-31 05:23:24.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2563 05-31 05:23:24.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2564 05-31 05:23:24.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 140 but got ts: inc_num:1527744091508552400 seq_num:139 -peer0.org1.example.com | [252d 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [252e 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [252f 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2530 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2531 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2532 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2533 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2534 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2535 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2537 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2536 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2538 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2539 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [253a 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [253b 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [253c 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [253d 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [253e 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [253f 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2540 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2541 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2542 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [2543 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [2544 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [2545 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [2546 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2547 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [2548 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [2549 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [254a 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [254b 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [254c 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [254d 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [254e 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [254f 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2550 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2551 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2552 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2553 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2554 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2555 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2556 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2557 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2558 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2559 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [255a 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [255b 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [255d 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [255e 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [255f 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [232d 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [232e 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [232f 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2330 05-31 05:23:19.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2331 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2332 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2333 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2334 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2335 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2336 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2337 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2338 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2339 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [233a 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [233b 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [233c 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > alive: alive: -peer1.org1.example.com | [233d 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [233e 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [233f 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2340 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2341 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2342 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2343 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2344 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2345 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2346 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2347 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2348 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2349 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [234a 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [234b 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [234c 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [234d 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [234e 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [234f 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2350 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2351 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2352 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2353 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2355 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2356 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [27de 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27df 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [27e0 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27e1 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27e2 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [27e3 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27e4 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [27e5 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [27e6 05-31 05:23:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [27e7 05-31 05:23:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27e8 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer1.org2.example.com | [27e9 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [27ea 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [27eb 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [27ec 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org2.example.com | [27ed 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [27ee 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [27ef 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [27f0 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [27f1 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [27f2 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [27f3 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [27f4 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [27f5 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [27f6 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [27f7 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27f8 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [27f9 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org2.example.com | [27fa 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27fb 05-31 05:23:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [27fc 05-31 05:23:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [27fd 05-31 05:23:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [27fe 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [27ff 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2800 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org2.example.com | [2801 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2802 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2803 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2804 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2805 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2806 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2807 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [2808 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2809 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org2.example.com | [280a 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [280b 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [280c 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [280d 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [280e 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [280f 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2810 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2811 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2812 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2813 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2814 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2815 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2816 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2817 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2818 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2819 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org2.example.com | [281a 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [281b 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [281c 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [281d 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [281e 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [281f 05-31 05:23:43.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2820 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org2.example.com | [2821 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2354 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2357 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2358 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2359 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [235a 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [235b 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [235c 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [235d 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [235e 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [235f 05-31 05:23:20.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [2360 05-31 05:23:20.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [2361 05-31 05:23:20.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [2362 05-31 05:23:20.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2363 05-31 05:23:20.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [2364 05-31 05:23:20.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2365 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [2366 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] -peer1.org1.example.com | [2367 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] -peer1.org1.example.com | [2368 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [2369 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [236a 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f723a0 env 0xc422e29da0 txn 0 -peer1.org1.example.com | [236b 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422e29da0 -peer1.org1.example.com | [236c 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -peer1.org1.example.com | [236d 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -peer1.org1.example.com | [236e 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [236f 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -peer1.org1.example.com | [2370 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [2371 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org2.example.com | [2822 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org2.example.com | [2823 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2824 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2825 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2826 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2827 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2828 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2829 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org2.example.com | [282a 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [282b 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [282c 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org2.example.com | [282d 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org2.example.com | [282e 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [282f 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org2.example.com | [2830 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org2.example.com | [2831 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org2.example.com | [2832 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [2833 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [2834 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [2835 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [2836 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2837 05-31 05:23:43.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2838 05-31 05:23:43.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2839 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [283a 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2372 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42236e800, header channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -peer1.org1.example.com | [2373 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -peer1.org1.example.com | [2374 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -peer1.org1.example.com | [2375 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -peer1.org1.example.com | [2376 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org1.example.com | [2377 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -peer1.org1.example.com | [2378 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -peer1.org1.example.com | [2379 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc42263d000 -peer1.org1.example.com | [237a 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [4e48aad8-8e59-4d59-8ef4-edcb68b997ba] -peer1.org1.example.com | [237b 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [237c 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [4e48aad8-8e59-4d59-8ef4-edcb68b997ba] -peer1.org1.example.com | [237d 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin -peer1.org1.example.com | [237e 05-31 05:23:21.59 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -peer1.org1.example.com | [237f 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: -peer1.org1.example.com | [2380 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 appears to be valid -peer1.org1.example.com | [2381 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc42263d000 -peer1.org1.example.com | [2383 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f723a0 env 0xc422e29da0 txn 0 -peer1.org1.example.com | [2384 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [2385 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [2382 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4794 bytes, seq: 6}, Envelope: 4824 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2386 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2388 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -peer1.org1.example.com | [2387 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2389 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [238a 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [238b 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -peer1.org1.example.com | [2390 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [2391 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -peer1.org1.example.com | [238f 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2392 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -peer1.org1.example.com | [2393 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer1.org1.example.com | [2394 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -peer1.org1.example.com | [2395 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -peer1.org1.example.com | [2397 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2396 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -peer1.org1.example.com | [2398 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -peer1.org1.example.com | [238d 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4794 bytes, seq: 6}, Envelope: 4824 bytes, Signature: 0 bytes -peer1.org1.example.com | [2399 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] marked as valid by state validator -peer1.org1.example.com | [239b 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [239c 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [239d 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [239e 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -peer1.org1.example.com | [239a 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [238e 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [239f 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [23a0 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] -peer1.org1.example.com | [238c 05-31 05:23:21.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23a1 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [23a2 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x85, 0xb2, 0xc2, 0xca, 0xb9, 0x19, 0xa4, 0x86, 0x81, 0xab, 0xe7, 0xe5, 0x91, 0x9e, 0xc6, 0x6d, 0x34, 0xc3, 0x50, 0xbe, 0xd5, 0x41, 0x10, 0xaf, 0xb5, 0xb4, 0x21, 0x8f, 0x8b, 0xf9, 0x7f, 0xc8} txOffsets= -peer1.org1.example.com | txId=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 locPointer=offset=70, bytesLength=2917 -peer1.org1.example.com | ] -peer1.org1.example.com | [23a3 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to index -peer0.org1.example.com | [2560 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2561 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [255c 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [2562 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [2563 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2564 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2565 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2566 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2567 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [2568 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [2569 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [256a 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [256b 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [256c 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [256d 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [256e 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [256f 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2570 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2571 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2572 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2573 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2574 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [2575 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2576 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [2577 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2578 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2579 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [257a 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [257b 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [257c 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [257d 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [257e 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [257f 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2580 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2581 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [2582 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2583 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2584 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2585 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2586 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2587 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2588 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [2589 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [258a 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [258b 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [258c 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org1.example.com | [258d 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org1.example.com | [258e 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [258f 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2590 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2565 05-31 05:23:24.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2566 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2567 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2568 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 143 but got ts: inc_num:1527744090808810100 seq_num:142 -peer0.org2.example.com | [2569 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [256a 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [256b 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [256c 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [256d 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [256e 05-31 05:23:24.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [256f 05-31 05:23:24.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2570 05-31 05:23:24.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2571 05-31 05:23:24.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2572 05-31 05:23:24.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2573 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2574 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2575 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2576 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2577 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2578 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2579 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [257a 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [257b 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [23a4 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx number:[0] ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to blockNumTranNum index -peer1.org1.example.com | [23a5 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23a6 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23a7 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [23a8 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [23a9 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23aa 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23ab 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [23ac 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23ad 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [23ae 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [23af 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [23b0 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [23b1 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23b2 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [23b3 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23b4 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] -peer1.org1.example.com | [23b5 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -peer1.org1.example.com | [23b6 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [23b7 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] -peer1.org1.example.com | [23b8 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -peer1.org1.example.com | [23b9 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -peer1.org1.example.com | [23ba 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [23bb 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [23bc 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -peer1.org1.example.com | [23bd 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -peer1.org1.example.com | [23be 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [23bf 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] -peer1.org1.example.com | [23c0 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -peer1.org1.example.com | [23c1 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -peer1.org1.example.com | [23c2 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -peer1.org1.example.com | [23c3 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [23c4 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 -peer1.org1.example.com | [23c5 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [23c6 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [23c7 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [23c8 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [23c9 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [23ca 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [23cb 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [23cc 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [23cd 05-31 05:23:21.68 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [23ce 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23cf 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23d0 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [23d1 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [23d2 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23d3 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23d4 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [23d5 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [23d6 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [23d7 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org1.example.com | [2591 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2592 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2593 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2594 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2595 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2596 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2597 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2598 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2599 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [259a 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [259b 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [259c 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [259d 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [259e 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [259f 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [25a0 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [25a1 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [25a2 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [25a3 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25a4 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25a5 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [25a6 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25a7 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25a8 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [25a9 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [25aa 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [257c 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [257d 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [257e 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [257f 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2580 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2581 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2582 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2584 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2583 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2585 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2586 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2587 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2588 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2589 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [258a 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [258b 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [258c 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [258d 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [258e 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [258f 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2590 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2591 05-31 05:23:25.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2592 05-31 05:23:26.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [2593 05-31 05:23:26.42 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [2594 05-31 05:23:26.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [2595 05-31 05:23:26.42 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org2.example.com | [283b 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [283c 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [283d 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [283e 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [283f 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org2.example.com | [2840 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 6 7 1 2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2841 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2842 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org2.example.com | [2843 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2844 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [2845 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2846 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2847 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [2848 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [2849 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [284a 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org2.example.com | [284b 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [284c 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [284d 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [284e 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [284f 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [2850 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org2.example.com | [2851 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2852 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org2.example.com | [2853 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2854 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:35736 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2855 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2856 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2857 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2858 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org2.example.com | [2859 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [285a 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org2.example.com | [285b 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org2.example.com | [285c 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org2.example.com | [285d 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [285e 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [2860 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer1.org2.example.com | [2861 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2862 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\252\001" signature:"0D\002 \036\014\315U\363C\340^!\331?D\314Z=\214 \344\nR\233\350%\231\357\323\303\230\203\263\nu\002 9\275\310\321/\353\263\260\373X\307g\314\013A\003\306\353\275@G\027g\326\324\032%\240\014\233D\200" > alive: alive: -peer1.org2.example.com | [2863 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [2864 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [285f 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [2865 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 -peer1.org2.example.com | [2866 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org2.example.com | [2867 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org2.example.com | [2868 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2869 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org2.example.com | [286a 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org2.example.com | [286b 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer0.org1.example.com | [25ab 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\016\233\261\006IRJE_\022" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\222\001" signature:"0E\002!\000\277Pnk\331\037\351\276\363\247pQ'\357N2\260\377\305\355:\020H|\253\026uD\260[\255\220\002 m\"D\260]\032)\212\327\006t@\300\373\264\"\264v\264l\317WHHe\262M\275\031C\322\216" > -peer0.org1.example.com | [25ac 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [25ad 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [25ae 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [25af 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25b0 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25b1 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [25b2 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25b3 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25b4 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [25b5 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [25b6 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [25b7 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25b8 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [25b9 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25ba 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [25bb 05-31 05:23:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [25bc 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25bd 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [25be 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [25bf 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [5 6 1 2 3 4] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [25c0 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2596 05-31 05:23:26.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [2597 05-31 05:23:26.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2598 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2599 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [259a 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [259b 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [259c 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [259d 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [259e 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [259f 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [25a0 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [25a1 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [25a2 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [25a3 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [25a4 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [25a5 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25a6 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25a7 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [25a8 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25a9 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25aa 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [25ab 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [25ac 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [25ad 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [23d8 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [23d9 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [23da 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [23db 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [23dc 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23dd 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23de 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [23df 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [23e0 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23e1 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [23e2 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [23e3 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [23e4 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23e5 05-31 05:23:21.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [23e6 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23e7 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [23e8 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23e9 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23ea 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [23eb 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [23ec 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23ed 05-31 05:23:21.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [23ee 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23ef 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23f0 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [23f1 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [23f2 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23f3 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23f4 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [23f5 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [23f6 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [23f7 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [23f8 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [23f9 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [23fa 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [23fb 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [23fc 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [23fd 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [23fe 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [23ff 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2400 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2401 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2402 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2403 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2404 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2405 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2406 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2407 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2408 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25c1 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [25c2 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25c3 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [25c4 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [25c5 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [25c6 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25c7 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [25c8 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [25c9 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25ca 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [25cb 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25cc 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [25cd 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [25ce 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [25cf 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [25d0 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [25d1 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [25d2 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [25d3 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [25d4 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [25d5 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [25d6 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [25d7 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [25d8 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\223\001" signature:"0D\002 CmJ\263\017}\320\003\202i\305\222\266\332\226\316i4_\352 5'\345\020\345\365\344\366\205\203\010\002 Z\\\t\362Z\336\317|\272\3413\242|\245\330\022E\342\206\023\355X?\373\224\000g\013\335\327\327\331" secret_envelope:\006z\272h{.0\276\033\304\257\030c\336ww\362\341\002 J*\334\030\3013\233\316\222qs\206MM^\345\324\245F\001_\366a6|\210=^\377\326\360\240" > > -peer0.org1.example.com | [25d9 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [25da 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [25db 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [25dc 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [25dd 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [25de 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [25df 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [25e1 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [25e0 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [25e2 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [25e3 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [25e4 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [25e5 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [25e6 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [25e7 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [25e8 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [25e9 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25ea 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [25eb 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org2.example.com | [286c 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [286d 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [286e 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org2.example.com | [286f 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org2.example.com | [2870 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2871 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:40744 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2872 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org2.example.com | [2873 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org2.example.com | [2874 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org2.example.com | [2875 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org2.example.com | [2876 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org2.example.com | [2877 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2878 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [2879 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org2.example.com | [287a 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org2.example.com | [287b 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org2.example.com | [287c 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org2.example.com | [287d 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org2.example.com | [287e 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2409 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [240a 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [240b 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [240c 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [240d 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [240e 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [240f 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2410 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2411 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [2412 05-31 05:23:22.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2413 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2414 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2415 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2416 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2417 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2418 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2419 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [241a 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [241b 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [241c 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [241d 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [241e 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [241f 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2420 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2421 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2422 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2423 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2424 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2425 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2426 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [2427 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2429 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org1.example.com | [242a 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [242b 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [242c 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [242d 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2428 05-31 05:23:22.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\214\001" signature:"0E\002!\000\356\177;:\214Y\204\331]l@H\014R\232\343\024\240\251\275c\246f\240\337Q\377\377\303&\261\273\002 d:\275\031y\226\014\306\341I\330\311.\370\360\230\2673J\357(m\340H^aG\357t\013=\217" > alive: alive: alive: -peer1.org1.example.com | [242e 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [242f 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2430 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [25ae 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25af 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25b0 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25b1 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25b2 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25b3 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [25b4 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25b5 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25b6 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [25b7 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25b8 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25b9 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [25bb 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25bc 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25bd 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [25ba 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25be 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25bf 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [25c0 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [25c2 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25c1 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [25c3 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org2.example.com | [287f 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > alive: alive: -peer1.org2.example.com | [2880 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org2.example.com | [2881 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org2.example.com | [2882 05-31 05:23:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2883 05-31 05:23:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2884 05-31 05:23:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org2.example.com | [2885 05-31 05:23:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org2.example.com | [2886 05-31 05:23:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2431 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2432 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2433 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2434 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2435 05-31 05:23:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2436 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [2437 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [2438 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [2439 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [243a 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [243b 05-31 05:23:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [243c 05-31 05:23:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [243d 05-31 05:23:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [243e 05-31 05:23:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2440 05-31 05:23:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [243f 05-31 05:23:23.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2441 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2442 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2443 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2444 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 779 bytes, Signature: 0 bytes -peer1.org1.example.com | [2445 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 779 bytes, Signature: 0 bytes -peer1.org1.example.com | [2446 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2447 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2448 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer1.org1.example.com | [2449 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [244a 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [244b 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [244c 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [244d 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [244e 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [244f 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2450 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2451 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2452 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [2453 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2454 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [2455 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2456 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [2457 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [2458 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [2459 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [245a 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [245b 05-31 05:23:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [245c 05-31 05:23:23.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [245d 05-31 05:23:23.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [245e 05-31 05:23:23.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [245f 05-31 05:23:23.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2460 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2461 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2462 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2463 05-31 05:23:23.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org2.example.com | [25c4 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [25c5 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [25c6 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [25c7 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [25c9 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25ca 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25cb 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [25c8 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25cc 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [25cd 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25ce 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [25cf 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25d0 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [25d1 05-31 05:23:26.79 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [25d2 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25d3 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25d4 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [25d5 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25d6 05-31 05:23:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [25d7 05-31 05:23:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [25d8 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [25d9 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [25da 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [25db 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25dd 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [25de 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [25df 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25e0 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [25e1 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [25e2 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25e3 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [25e4 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [25e5 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [25dc 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [25e6 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [25e7 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [25e8 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [25e9 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25ea 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [25eb 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25ec 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [25ed 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25ee 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [25ef 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [25f0 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2464 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2465 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [2466 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2467 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [246a 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [246b 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2468 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2469 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [246c 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [246d 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [246e 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [246f 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2470 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2471 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2472 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2473 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [2474 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [2475 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [2476 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2477 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2478 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [247a 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [247b 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [247c 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2479 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [247e 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [247d 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [247f 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2480 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2482 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2483 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2481 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [2484 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2485 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2486 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2487 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2489 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [2488 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [248a 05-31 05:23:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [248b 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [248c 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [248d 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [248e 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [248f 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2490 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2491 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [2492 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2493 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2494 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2495 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2496 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2497 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2498 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2499 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [249a 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [249b 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [249c 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [249d 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [249e 05-31 05:23:23.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [249f 05-31 05:23:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [24a0 05-31 05:23:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [24a1 05-31 05:23:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [24a2 05-31 05:23:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [24a3 05-31 05:23:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [24a4 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [24a5 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [24a6 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [24a7 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [24a8 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [24a9 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [24aa 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [24ab 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [24ac 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [24ad 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [24ae 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [24af 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [24b0 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [24b1 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 141 but got ts: inc_num:1527744090808810100 seq_num:140 -peer1.org1.example.com | [24b2 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [24b3 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [24b4 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [24b5 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [24b6 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [24b8 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [24b9 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [24ba 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [25f1 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [25f2 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [25f3 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [25ec 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25ed 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [25ee 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [24b7 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org1.example.com | [25ef 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [25f0 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [25f1 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [25f2 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [25f4 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [25f3 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [25f5 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [25f6 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [25f7 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25f4 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [25f8 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [25f9 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25f5 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [25f6 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [25f7 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\016\233\261\006IRJE_\022" secret_envelope: > alive: > -peer0.org2.example.com | [25f8 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org2.example.com | [25f9 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [25fa 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [25fb 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [25fc 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [25fd 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [25fe 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [25ff 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25fa 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [2600 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [24bb 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [24bc 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [24bd 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [24be 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [24bf 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [24c0 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [24c1 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [24c2 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [24c3 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [24c4 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2601 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2602 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2603 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2604 05-31 05:23:27.06 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2605 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2606 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2608 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2607 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2609 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [260a 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [260b 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [260c 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [260d 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [260e 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [260f 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2610 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2611 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2612 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2613 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2614 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2616 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2615 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2617 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2618 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2619 05-31 05:23:27.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [261a 05-31 05:23:27.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [261b 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [261c 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [261d 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [261e 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [261f 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [2620 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [2621 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [2622 05-31 05:23:27.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2623 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2624 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2625 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer1.org1.example.com | [24c5 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [25fb 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2626 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2627 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2628 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2629 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [262a 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [262b 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [262c 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [262d 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [262e 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [262f 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2630 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2631 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2632 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2633 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2634 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2635 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2636 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [2637 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2638 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\016\233\261\006IRJE_\022" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\221\001" signature:"0D\002 N\266\331\374\327\030\244V\"\201\340,\344\342H\332\257J{T]\023\376m!y[6\376r\246\301\002 p\247\227\266\025\006\364\374\304\000\210\242Y\202\023\377\301\362C\325\364\372\352\033\347\221E\316\222\331\251C" > alive: alive: -peer1.org1.example.com | [24c6 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [25fc 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [2639 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [24c7 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [24c8 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [263a 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [24c9 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [263b 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [24ca 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [24cb 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [263c 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [24cc 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [24cd 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [24ce 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [24cf 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [24d0 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [24d1 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [24d2 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [24d3 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [263d 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [24d4 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [24d5 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [24d6 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [24d7 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [24d8 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [24d9 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [24da 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [24db 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [24dc 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [24dd 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [24de 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [24df 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [24e0 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [24e1 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [24e2 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [24e3 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [24e4 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [24e6 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer1.org1.example.com | [24e7 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [24e5 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > alive: > -peer1.org1.example.com | [24e8 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [24e9 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [24ea 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [24eb 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [24ec 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [24ed 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [24ee 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [24ef 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [24f0 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [24f1 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [24f2 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [24f3 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [24f4 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [24f5 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [24f6 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [24f7 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [24f8 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [24f9 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [24fa 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [24fb 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [263e 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [263f 05-31 05:23:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2640 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2641 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2642 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2643 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [2644 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2645 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2646 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2648 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2647 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2649 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [264a 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [264b 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [264c 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [264d 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [264e 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [264f 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2650 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2651 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2652 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [2653 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2654 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\016\233\261\006IRJE_\022" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > alive: alive:\307\341@\212\310c\006?)\207\034\234y" > -peer0.org2.example.com | [2655 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [2656 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2657 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [2658 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2659 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [265a 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [265b 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [265d 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [265c 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [265e 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [265f 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2660 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2661 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2662 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2663 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2664 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [24fc 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > alive: alive: alive: -peer1.org1.example.com | [24fd 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [24fe 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [24ff 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2500 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2501 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2502 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2503 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2504 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2505 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2506 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2507 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2508 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2509 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [250a 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [250b 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [250c 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [250d 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [250e 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [250f 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2510 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2511 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2512 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2513 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2514 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2515 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2516 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2517 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2518 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2519 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [251a 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [251b 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [251c 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [251d 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [251e 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [251f 05-31 05:23:25.99 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [2520 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [2521 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [2522 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2523 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [2524 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2525 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [2526 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2527 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2529 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2528 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [252a 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2665 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2666 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2667 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2668 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2669 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [266a 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [266b 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [266c 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [266d 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [266e 05-31 05:23:27.97 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [266f 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2670 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2671 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2673 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2674 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2672 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2676 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [25fd 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [25fe 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [25ff 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2600 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2601 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2602 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2603 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2604 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2605 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2606 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2607 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2608 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2609 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [260a 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [260b 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [260c 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [260d 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [260e 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [260f 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2610 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2611 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2612 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2613 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2614 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2615 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2616 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2617 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2618 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2619 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [261a 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [261b 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [261c 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [261d 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 149 but got ts: inc_num:1527744091840124700 seq_num:147 -peer0.org1.example.com | [261e 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [261f 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2620 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2621 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2622 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2623 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2624 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2625 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2626 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2627 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2628 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org1.example.com | [2629 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [262a 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org1.example.com | [262b 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [262c 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [262d 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [262e 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [262f 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [252b 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [252c 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [252d 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [252e 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [252f 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2530 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2531 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2532 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2533 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2534 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2535 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2536 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2537 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2538 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2539 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [253a 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [253b 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [253c 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [253d 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [253f 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2540 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [253e 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2541 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2542 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2677 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [2678 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2679 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [267a 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [267b 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [267c 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [267d 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [267e 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [267f 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2680 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2681 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2682 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2683 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2684 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2685 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2686 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2687 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2688 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2689 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [268a 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [268b 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [268c 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [268d 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2630 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2631 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [2632 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2633 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2634 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2635 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2636 05-31 05:23:27.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2637 05-31 05:23:27.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2638 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2639 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [263a 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [263b 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [263c 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [263d 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [263e 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [263f 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2640 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2641 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2642 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2643 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2644 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2645 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2646 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2647 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2648 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [2649 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [264a 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:+\246\255I\302\333" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\225\001" signature:"0D\002 \n*4\341R\024\232\233|\230\213\353\253vK\334\337\350\332=\210\337N\363y\204\374\306e>\364\016\002 \027\312\242\032\177\"\246\317}QK:\324\273\314\363S\256\177\366\230\2155//\232\270\017d\236\361b" > -peer0.org1.example.com | [264b 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org1.example.com | [264c 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [264d 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [264e 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2651 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [264f 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2652 05-31 05:23:30.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [2653 05-31 05:23:30.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2654 05-31 05:23:30.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2650 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2655 05-31 05:23:30.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2656 05-31 05:23:30.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [2657 05-31 05:23:30.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2658 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2659 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [265a 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [265b 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [265c 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [265d 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [265e 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [265f 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [268e 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [268f 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2690 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2691 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2692 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2693 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2694 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2675 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2696 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2695 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2697 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2698 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [2699 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [269a 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [269b 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [269c 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [269d 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 149 but got ts: inc_num:1527744091618763800 seq_num:148 -peer0.org2.example.com | [269e 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [269f 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [26a0 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [26a1 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [26a2 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [26a3 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [26a4 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [26a5 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26a6 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [26a7 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 147 but got ts: inc_num:1527744090808810100 seq_num:146 -peer0.org2.example.com | [26a8 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [26a9 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26aa 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [26ab 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [26ac 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [26ad 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [26ae 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [26af 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [26b0 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [26b1 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [26b2 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org2.example.com | [26b4 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26b3 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [26b5 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [26b6 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [26b7 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [26b8 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [26b9 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [26ba 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [26bb 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [26bc 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [26bd 05-31 05:23:28.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [26be 05-31 05:23:28.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [26bf 05-31 05:23:28.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [26c0 05-31 05:23:28.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [26c1 05-31 05:23:30.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [26c2 05-31 05:23:30.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [26c3 05-31 05:23:30.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26c4 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [26c5 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2660 05-31 05:23:31.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org1.example.com | [2661 05-31 05:23:31.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2662 05-31 05:23:31.03 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [2663 05-31 05:23:31.03 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [2665 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [2664 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2666 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2667 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2668 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2669 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [266a 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [266b 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [266e 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [266d 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [266c 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [266f 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2670 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2671 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2672 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2673 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2674 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2675 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2543 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2544 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2545 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2546 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2547 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2548 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2549 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [254a 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [254b 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [254c 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [254d 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [254e 05-31 05:23:26.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [254f 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2550 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2551 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2552 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2553 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [2554 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2555 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2556 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2557 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2558 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2559 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [255a 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [255c 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [255d 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [255e 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [255f 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2560 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [255b 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2561 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2562 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2563 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [2564 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2565 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\016\233\261\006IRJE_\022" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\221\001" signature:"0D\002 N\266\331\374\327\030\244V\"\201\340,\344\342H\332\257J{T]\023\376m!y[6\376r\246\301\002 p\247\227\266\025\006\364\374\304\000\210\242Y\202\023\377\301\362C\325\364\372\352\033\347\221E\316\222\331\251C" > alive: alive:?.'H(\215\333@\016\276z\370\203W#" > -peer1.org1.example.com | [2566 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [2567 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2568 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2569 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [256a 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [256b 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [256c 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [256d 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [256e 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2676 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2677 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2678 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2679 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [267a 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [267b 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [267c 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [267d 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [267e 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [267f 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2680 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2681 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2682 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer0.org1.example.com | [2683 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer0.org1.example.com | [2684 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2685 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2686 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2687 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2688 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2689 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [268a 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [268b 05-31 05:23:31.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [268c 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [268d 05-31 05:23:31.16 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [26c6 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [26c7 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [26c8 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26c9 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\311g\3773#\334\363`\333\377P" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [26ca 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\311g\3773#\334\363`\333\377P" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [26cb 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26cc 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\311g\3773#\334\363`\333\377P" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [26cd 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [26ce 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [26cf 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [26d0 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [26d1 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [256f 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2570 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2571 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2572 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2573 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2574 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2575 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2576 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2577 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [2578 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [2579 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [257a 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 6 1] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [257b 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [257c 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [257d 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [257e 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [257f 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2580 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2581 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2582 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2583 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2584 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2585 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2586 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2587 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2588 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2589 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [258a 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [258b 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [258c 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [258d 05-31 05:23:27.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [258e 05-31 05:23:27.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [258f 05-31 05:23:27.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2590 05-31 05:23:27.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2591 05-31 05:23:27.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2592 05-31 05:23:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2593 05-31 05:23:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2594 05-31 05:23:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2595 05-31 05:23:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2596 05-31 05:23:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2597 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2598 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2599 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [259a 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [259b 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [259c 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [259d 05-31 05:23:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [259e 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [26d2 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [26d3 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [26d4 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [26d5 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [26d6 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [26d7 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [26d8 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org2.example.com | [26d9 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [26da 05-31 05:23:31.07 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26db 05-31 05:23:31.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26dc 05-31 05:23:31.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [26dd 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26de 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26df 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26e0 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [26e4 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 150 but got ts: inc_num:1527744090808810100 seq_num:149 -peer0.org2.example.com | [26e5 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [26e6 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [26e2 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [26e7 05-31 05:23:31.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26e1 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\311g\3773#\334\363`\333\377P" > > alive: > -peer0.org2.example.com | [26e3 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26e8 05-31 05:23:31.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26e9 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [26ea 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26eb 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26ec 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [26ed 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26ee 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [26ef 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [26f0 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26f1 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [26f2 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [26f3 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26f4 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [26f5 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [26f6 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [26f7 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [26f8 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [26f9 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [26fa 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [26fb 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [26fc 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [26fd 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [26fe 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [26ff 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2700 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2701 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2702 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2703 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2704 05-31 05:23:31.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2705 05-31 05:23:31.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2706 05-31 05:23:31.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2707 05-31 05:23:31.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [2708 05-31 05:23:31.42 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [2709 05-31 05:23:31.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [270a 05-31 05:23:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [270b 05-31 05:23:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer0.org2.example.com | [270c 05-31 05:23:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [270d 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [270e 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [270f 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [2710 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2711 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [2712 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [2713 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer0.org2.example.com | [2714 05-31 05:23:31.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2715 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2716 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2718 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2719 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [271a 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [271b 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [271c 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [271d 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [271e 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [271f 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [268f 05-31 05:23:31.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:+\246\255I\302\333" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\226\001" signature:"0D\002 *b\334.\302\335y\237\244%W\212\360o\032\231TgW\201@\027\227\017\234]\352\373P\303B'\002 vC\2045\035t\202\223g\017%L|QdD\250\373\016s\314\317\201@\247/\017#K\331\222~" > -peer0.org1.example.com | [268e 05-31 05:23:31.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2690 05-31 05:23:31.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2691 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2692 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2693 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2694 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2695 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2696 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2697 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2698 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2699 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [269a 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [269b 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [269c 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [269d 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [269e 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [269f 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26a0 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26a1 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [26a2 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [26a3 05-31 05:23:31.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26a4 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [259f 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [25a0 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [25a1 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [25a2 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer1.org1.example.com | [25a3 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer1.org1.example.com | [25a4 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -peer1.org1.example.com | [25a5 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25a6 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [25a7 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [25a8 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25a9 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [25aa 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [25ab 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [25ac 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [25ad 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [25af 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [25ae 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [25b0 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [25b2 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [25b1 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [25b3 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [25b4 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [25b5 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [25b6 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [25b7 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [25b8 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25b9 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [25ba 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [25bb 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [25bc 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25bd 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [25be 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [25bf 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [25c0 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25c1 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [25c2 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [25c3 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25c4 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [25c5 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [25c6 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [25c7 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [26a5 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [26a6 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26a7 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26a8 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26a9 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [26aa 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [26ab 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [26ac 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [26ad 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [26ae 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [26af 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [26b0 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [26b1 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [26b2 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [26b3 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26b4 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26b5 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26b6 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26b7 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26b8 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26b9 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [26ba 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26bb 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26bc 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [25c8 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [25c9 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [25ca 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [25cb 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [25cc 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [25cd 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [25ce 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [25cf 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25d0 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer1.org1.example.com | [25d1 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [25d2 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [25d3 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [25d4 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [25d5 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [25d6 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [25d7 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [25d8 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [25d9 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [25da 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [25dc 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [25db 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [25dd 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [25de 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [25e0 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [25df 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2720 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2721 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2722 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2723 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2717 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2724 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2725 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2726 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2728 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2729 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2727 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [272a 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [272b 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [272d 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [272c 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [272e 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [272f 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2731 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2732 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2730 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2733 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2734 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2735 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2736 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [2737 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26bd 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26be 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [26bf 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26c0 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26c1 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [26c2 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [26c3 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [26c4 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [26c5 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26c6 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [26c7 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [26c8 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26c9 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org1.example.com | [26ca 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26cb 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org1.example.com | [26cc 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org1.example.com | [26cd 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [26ce 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org1.example.com | [26cf 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [26d0 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [25e1 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25e2 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [25e3 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [25e4 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [25e5 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [25e6 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [25e7 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [25e8 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [25e9 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [25ea 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [25eb 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [25ec 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [25ed 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [25ee 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [25ef 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [25f0 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [25f1 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [25f2 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [25f3 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [25f4 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [25f5 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [25f6 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [25f7 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 148 but got ts: inc_num:1527744091840124700 seq_num:147 -peer1.org1.example.com | [25f9 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [25fa 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2738 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2739 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [273a 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [273b 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [273c 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [273d 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [273e 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [273f 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2740 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2741 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2742 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2743 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2744 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2745 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2746 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2747 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [2748 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [274a 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [274b 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2749 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\225\001" signature:"0D\002 \n*4\341R\024\232\233|\230\213\353\253vK\334\337\350\332=\210\337N\363y\204\374\306e>\364\016\002 \027\312\242\032\177\"\246\317}QK:\324\273\314\363S\256\177\366\230\2155//\232\270\017d\236\361b" > alive: alive: -peer0.org2.example.com | [274c 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [274d 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [274e 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [274f 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2750 05-31 05:23:31.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2751 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2752 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2753 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2754 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [2755 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2756 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2757 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2758 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2759 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [275a 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [275b 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [275c 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [275d 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [275e 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [275f 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2760 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [25fb 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [25f8 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [25fc 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 147 but got ts: inc_num:1527744091618763800 seq_num:146 -peer1.org1.example.com | [25fd 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [25fe 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [25ff 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2600 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2601 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2602 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2603 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2604 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2605 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2606 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2607 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2608 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2609 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [260a 05-31 05:23:27.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [260b 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [260c 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [260d 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [260e 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [260f 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2610 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2611 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [26d1 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [26d2 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [26d3 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [26d4 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [26d5 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [26d6 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [26d7 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\227\001" signature:"0E\002!\000\200\324\210\010@\236\371!\253\026\372Q1y\214\240\017\230\034\3138\302\220\000|f\303\310W\023\0313\002 k4FqI\274X\246\340N\207\20128G\205\361\347\214\330\343w\270\372\207N\340\206Sj\\\013" secret_envelope:3\267\364-\353\302\014\023\263\226tt\370\351}L\233\233u\232\007\334\302" > > -peer0.org1.example.com | [26d8 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org1.example.com | [26d9 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26da 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [26db 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [26dc 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [26dd 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [26de 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [26df 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [26e0 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [26e1 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26e3 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [26e4 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26e2 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [26e5 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26e6 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [26e7 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [26e8 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [26e9 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2761 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2762 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2763 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2764 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2766 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [2767 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2768 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > alive: alive: -peer0.org2.example.com | [2769 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [276a 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2765 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [276b 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [276c 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [276d 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [276e 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [276f 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes]} -peer0.org2.example.com | [2770 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [2772 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [2773 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2771 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2774 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2775 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2776 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2777 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2778 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [277a 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2779 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [277b 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [277c 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -peer0.org2.example.com | [277d 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -peer0.org2.example.com | [277e 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [277f 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2780 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [2781 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2782 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [2783 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2784 05-31 05:23:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [2785 05-31 05:23:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2786 05-31 05:23:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2787 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [2788 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2789 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [278a 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [278b 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [278c 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [278d 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [278e 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [278f 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2790 05-31 05:23:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2791 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2792 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2793 05-31 05:23:31.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2794 05-31 05:23:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2795 05-31 05:23:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2796 05-31 05:23:31.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2797 05-31 05:23:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2798 05-31 05:23:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2799 05-31 05:23:31.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [279a 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [279b 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [279c 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [279d 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [279e 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [279f 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [27a0 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [27a1 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [27a2 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [27a3 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [27a4 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [27a5 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [27a6 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [27a7 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [27a8 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [27a9 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [27aa 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [27ab 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [27ac 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [27ad 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [27ae 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [27af 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [27b0 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [27b1 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [27b2 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [27b3 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [27b4 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [27b5 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [27b6 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [27b7 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [27b8 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2612 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2613 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2614 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2615 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2616 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2617 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2618 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2619 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [261a 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [261b 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [261c 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [261d 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [261e 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [261f 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > alive: > -peer1.org1.example.com | [2620 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer1.org1.example.com | [2621 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2622 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2623 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2624 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2625 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [2626 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26ea 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [26eb 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [26ec 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26ed 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [26ee 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [26ef 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [26f0 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [26f1 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26f2 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [26f3 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26f4 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [26f5 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [26f6 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [26f7 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [26f8 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [26f9 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [26fa 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [26fb 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [26fc 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [26fd 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [26fe 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [26ff 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2700 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2701 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2702 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2703 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2704 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2705 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2706 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2707 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2708 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2709 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [270a 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [270c 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [270b 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -peer0.org1.example.com | [270d 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -peer0.org1.example.com | [270e 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -peer0.org1.example.com | [270f 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org1.example.com | [2710 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2711 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [2627 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2628 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2629 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [262a 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [262b 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [262c 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [262d 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [262e 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [262f 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2630 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2631 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2632 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2633 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2634 05-31 05:23:27.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [2635 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2636 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > alive:+\246\255I\302\333" > alive:\302\256\253\366\355\346~_\3669`\227\213\013[V\216\233!\003\303\002 Y\352\345\243\032ie\036#\262aP6\3402\340m\276V\363\313\333\014X\023\353\205\362\262\212V\343" > alive: -peer1.org1.example.com | [2637 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [2638 05-31 05:23:28.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2639 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2712 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2713 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org1.example.com | [2714 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2715 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2716 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2717 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2718 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2719 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [271a 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [271b 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [271c 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [271e 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [271f 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2720 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2721 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [271d 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [2722 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2723 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2724 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [2725 05-31 05:23:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 152 but got ts: inc_num:1527744090808810100 seq_num:150 -peer0.org1.example.com | [2726 05-31 05:23:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2727 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2728 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2729 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [272a 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [272b 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [263a 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [263b 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [263c 05-31 05:23:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [263d 05-31 05:23:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [263e 05-31 05:23:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [263f 05-31 05:23:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [2640 05-31 05:23:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2641 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2642 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2643 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2644 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2645 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2646 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2647 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2648 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2649 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [264a 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [264b 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [264c 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [264d 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [264e 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [264f 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [27b9 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [27ba 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [27bb 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [27bc 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [27bd 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [27be 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:42738 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [27c0 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [27c1 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org2.example.com | [27bf 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [27c4 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [27c2 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [27c5 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [27c6 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [27c7 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [27c8 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [27c9 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [27ca 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [27cb 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [27cc 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [27cd 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [27ce 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [27cf 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [27d0 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [27d1 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [272c 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [272d 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [272e 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [272f 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2730 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2731 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2732 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2733 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2734 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2735 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2736 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2737 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer0.org1.example.com | [2738 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org1.example.com | [2739 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [273b 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [273a 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org1.example.com | [273c 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [273d 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [273e 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [273f 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [2740 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2741 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2742 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2743 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2744 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2650 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > alive:+\246\255I\302\333" > alive: alive: -peer1.org1.example.com | [2651 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [2652 05-31 05:23:30.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2653 05-31 05:23:31.01 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [2654 05-31 05:23:31.01 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [2655 05-31 05:23:31.01 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [2656 05-31 05:23:31.02 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2657 05-31 05:23:31.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -peer1.org1.example.com | [2658 05-31 05:23:31.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2659 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [265a 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [265b 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [265c 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [265d 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [265e 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [265f 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2660 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2661 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2662 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2663 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2664 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2665 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [27d2 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [27d3 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [27d4 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [27d5 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [27d6 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [27d7 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [27d8 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [27d9 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [27da 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [27c3 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org2.example.com | [27db 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [27dc 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [27dd 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org2.example.com | [27de 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [27df 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [27e0 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [27e1 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [27e2 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [27e3 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [27e4 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [27e5 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [27e6 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [27e7 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [27e8 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [27e9 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [27ea 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [27eb 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [27ec 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [27ed 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [27ee 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [27ef 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [27f0 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [27f1 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [27f2 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 150 but got ts: inc_num:1527744091508552400 seq_num:149 -peer0.org2.example.com | [27f3 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [27f4 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [27f5 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [27f6 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 153 but got ts: inc_num:1527744090808810100 seq_num:152 -peer0.org2.example.com | [27f7 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [27f8 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [27f9 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [27fa 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [27fb 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [27fc 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [27fd 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes in aliveMembership -peer0.org2.example.com | [27fe 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [27ff 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2800 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2801 05-31 05:23:32.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2802 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] -peer0.org2.example.com | [2803 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] -peer0.org2.example.com | [2804 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [2666 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 150 but got ts: inc_num:1527744090808810100 seq_num:149 -peer1.org1.example.com | [2667 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2668 05-31 05:23:31.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2669 05-31 05:23:31.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [266a 05-31 05:23:31.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [266b 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [266e 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2671 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [266d 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2673 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2672 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [266c 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [266f 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2670 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2674 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2677 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2678 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2675 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2676 05-31 05:23:31.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2679 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [267a 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [267b 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [2745 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2746 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2747 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2748 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2749 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [274a 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [274b 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [274c 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [274d 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [274e 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [274f 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2750 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2751 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2752 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2753 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2754 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2755 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2756 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2757 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2758 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2759 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [275a 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [275b 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [275c 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2805 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org2.example.com | [2806 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422fb1b60 env 0xc4203c0ff0 txn 0 -peer0.org2.example.com | [2807 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4203c0ff0 -peer0.org2.example.com | [2808 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -peer0.org2.example.com | [2809 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org2.example.com | [280a 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org2.example.com | [280b 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer0.org2.example.com | [280c 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org2.example.com | [280d 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org2.example.com | [280e 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc423b0aa80, header channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -peer0.org2.example.com | [280f 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org2.example.com | [2810 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [2811 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [2812 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [2813 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [2814 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [2815 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [2816 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [2817 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [2818 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [2819 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [281a 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [281b 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [281c 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [281d 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes -peer0.org2.example.com | [281e 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [281f 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer0.org2.example.com | [2820 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer0.org2.example.com | [2821 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org2.example.com | [2822 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org2.example.com | [2823 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer0.org2.example.com | [2824 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [2825 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [2826 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [2827 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [2828 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -peer0.org2.example.com | [2829 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer0.org2.example.com | [282a 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -peer0.org2.example.com | [282b 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org2.example.com | [282c 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org2.example.com | [282d 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org2.example.com | [282e 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org2.example.com | [282f 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -peer0.org2.example.com | [2830 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -peer0.org2.example.com | [2831 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2832 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2833 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [267c 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [267d 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [267e 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [267f 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2681 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2680 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [2682 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2684 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2685 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2686 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2687 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2688 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2689 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [268a 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2683 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [268b 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [268c 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [268d 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [268e 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [268f 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [2690 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -peer1.org1.example.com | [2691 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2692 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2693 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2694 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2695 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2696 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2697 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2698 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2699 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [269a 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [269b 05-31 05:23:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [269c 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [269d 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [269e 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [269f 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26a0 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26a1 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26a2 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26a3 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26a4 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26a5 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [26a6 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [26a7 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [26a8 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [26a9 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [26aa 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [26ab 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [26ac 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26ad 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [26ae 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26af 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [26b0 05-31 05:23:31.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26b1 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [26b2 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [26b5 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [26b3 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [26b4 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [26b6 05-31 05:23:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [26b7 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [26b8 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [26b9 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [26ba 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [26bb 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [26bc 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [26bd 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [26be 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [26c0 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [26bf 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [26c2 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [26c3 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [26c4 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [26c5 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26c6 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [26c7 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26c8 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [26c9 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [26ca 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [26cb 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [26cc 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26cd 05-31 05:23:31.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2834 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2835 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2836 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [2837 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [2838 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2839 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [283a 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org2.example.com | [283b 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org2.example.com | [283c 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org2.example.com | [283d 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [283e 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [283f 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2840 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2841 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2842 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org2.example.com | [2843 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [2844 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2845 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [2846 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org2.example.com | [2847 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org2.example.com | [2848 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org2.example.com | [2849 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org2.example.com | [284a 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org2.example.com | [284b 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org2.example.com | [284c 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [284d 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org2.example.com | [284e 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org2.example.com | [284f 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [275d 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [275e 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [275f 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2760 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2761 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2762 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2763 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2764 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2765 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2766 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [2767 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2768 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2769 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [276a 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [276b 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [276c 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [276d 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [276e 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [276f 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2770 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2771 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2772 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2773 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2774 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org2.example.com | [2850 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [2851 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [2852 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [2853 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [2854 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -peer0.org2.example.com | [2855 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -peer0.org2.example.com | [2856 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [2857 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [2858 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [2859 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [285a 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org2.example.com | [285b 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org2.example.com | [285c 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org2.example.com | [285d 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org2.example.com | [285e 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [285f 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [2860 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org2.example.com | [2861 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org2.example.com | [2862 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [2863 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org2.example.com | [2864 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [2865 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org2.example.com | [2866 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org2.example.com | [2867 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org2.example.com | [2868 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org2.example.com | [2869 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org2.example.com | [286a 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org2.example.com | [286b 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org2.example.com | [286c 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org2.example.com | [286d 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org2.example.com | [286e 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer0.org2.example.com | [286f 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer0.org2.example.com | [2870 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org2.example.com | [2871 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org2.example.com | [2872 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer0.org2.example.com | [2873 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org2.example.com | [2874 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org2.example.com | [2875 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org2.example.com | [2876 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org2.example.com | [2877 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org2.example.com | [2878 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org2.example.com | [2879 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org2.example.com | [287a 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org2.example.com | [287b 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org2.example.com | [287c 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org2.example.com | [287d 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org2.example.com | [287e 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org2.example.com | [287f 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org2.example.com | [2880 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org2.example.com | [2881 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org2.example.com | [2882 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org2.example.com | [2883 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [2884 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org2.example.com | [2885 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org2.example.com | [2886 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [26ce 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [26cf 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [26d0 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [26d1 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [26d2 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [26d3 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [26c1 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 273 bytes, Signature: 0 bytes -peer1.org1.example.com | [26d4 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [26d5 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org1.example.com | [26d6 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [26d7 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [26d8 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [26d9 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [26da 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [26db 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26dc 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [26dd 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26de 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [26df 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [26e0 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [26e1 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [26e2 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [26e3 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [26e4 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [26e5 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [26e6 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [26e7 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [26e8 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [26e9 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [26eb 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org1.example.com | [26ea 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26ec 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [26ed 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26ee 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [26ef 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [26f0 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2775 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2777 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2778 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2776 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\2704\201S\343\350\007\271A*u\241\206\307?nl\006\021\333\000\230\002 ^\352?\275QJYFg]\3576A\242>\237\020\337\034\335\265)Nz(f&\202\227\223\202\020" > alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\232\001" signature:"0E\002!\000\333n*;\020\234 G\201\251\205\377\324\314W\336\3739\215cU\250\324\317\370\215\004@]\035\356\"\002 g\037\333=\241\211\027\230B\271\030\3337}\350[\222\333\372(5\212n*v:\251\205\254\323\236\023" > -peer0.org1.example.com | [2779 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes -peer0.org1.example.com | [277a 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [277b 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer0.org1.example.com | [277c 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer0.org1.example.com | [277d 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f81240 env 0xc423371f20 txn 0 -peer0.org1.example.com | [277e 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423371f20 -peer0.org1.example.com | [277f 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -peer0.org1.example.com | [2780 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer0.org1.example.com | [2781 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer0.org1.example.com | [2782 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer0.org1.example.com | [2783 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer0.org1.example.com | [2784 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer0.org1.example.com | [2785 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc423884a80, header channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -peer0.org1.example.com | [2786 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer0.org1.example.com | [2787 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [2788 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [2789 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [278a 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [278b 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [278c 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [278d 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [278e 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [278f 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [2790 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [2791 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [2792 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [2793 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer0.org1.example.com | [2794 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer0.org1.example.com | [2795 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer0.org1.example.com | [2796 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org1.example.com | [2797 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org1.example.com | [2798 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [2799 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [279a 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [279b 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [279c 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -peer0.org1.example.com | [279d 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org1.example.com | [279e 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -peer0.org1.example.com | [279f 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org1.example.com | [27a0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer0.org1.example.com | [27a1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -peer0.org1.example.com | [27a2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org1.example.com | [26f1 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 152 but got ts: inc_num:1527744091840124700 seq_num:151 -peer1.org1.example.com | [26f2 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [26f3 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [26f4 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [26f5 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [26f6 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [26f7 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [26f8 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [26f9 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [26fa 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [26fb 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [26fc 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [26fd 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [26fe 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [26ff 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2700 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2701 05-31 05:23:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2702 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2703 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2705 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2704 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer1.org1.example.com | [2706 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [2707 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2708 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [2709 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2887 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org2.example.com | [2888 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org2.example.com | [2889 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org2.example.com | [288a 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org2.example.com | [288b 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org2.example.com | [288c 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org2.example.com | [288d 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [270a 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [270b 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [270c 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [270d 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [270e 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [270f 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2710 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2711 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2712 05-31 05:23:31.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2713 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2714 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2715 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2716 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [2717 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2718 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2719 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [271a 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [271b 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [271c 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [271d 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [271e 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer0.org2.example.com | [288e 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org2.example.com | [288f 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org2.example.com | [2890 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org2.example.com | [2891 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org2.example.com | [2892 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org2.example.com | [2893 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org2.example.com | [2894 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org2.example.com | [2895 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org2.example.com | [2896 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org2.example.com | [2897 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org2.example.com | [2898 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org2.example.com | [2899 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org2.example.com | [289a 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org2.example.com | [289b 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org2.example.com | [289c 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org2.example.com | [289d 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org2.example.com | [289e 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org2.example.com | [289f 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org2.example.com | [28a0 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org2.example.com | [28a1 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer0.org2.example.com | [28a2 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer0.org2.example.com | [28a3 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org2.example.com | [28a4 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [28a5 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org2.example.com | [28a6 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org2.example.com | [28a7 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org2.example.com | [28a8 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -peer0.org2.example.com | [28a9 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org2.example.com | [28aa 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org2.example.com | [28ab 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org2.example.com | [28ac 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org2.example.com | [28ad 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org2.example.com | [28ae 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -peer0.org2.example.com | [28af 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org2.example.com | [28b0 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] -peer0.org2.example.com | [28b1 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [27a3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org1.example.com | [27a4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -peer0.org1.example.com | [27a5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27a6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27a7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [27a8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27a9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27aa 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [27ab 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27ac 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27ad 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [27ae 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer0.org1.example.com | [27af 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -peer0.org1.example.com | [27b0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer0.org1.example.com | [27b1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27b9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org1.example.com | [27ba 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer0.org1.example.com | [27bb 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer0.org1.example.com | [27bc 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer0.org1.example.com | [27bd 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer0.org1.example.com | [27be 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer0.org1.example.com | [27bf 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer0.org1.example.com | [27c0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [27c1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer0.org1.example.com | [27c2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer0.org1.example.com | [27c3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [27c4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [27c5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [27c6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [27c7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [27c8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -peer0.org1.example.com | [27c9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -peer0.org1.example.com | [27ca 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [27cb 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [27cc 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [27cd 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [27ce 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer0.org1.example.com | [27cf 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer0.org1.example.com | [27d0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer0.org1.example.com | [27d1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer0.org1.example.com | [27d2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [27d3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [27d4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer0.org1.example.com | [27d5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer0.org1.example.com | [27d6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org1.example.com | [27d7 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer0.org1.example.com | [27d8 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer0.org2.example.com | [28b2 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org2.example.com | [28b3 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org2.example.com | [28b4 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org2.example.com | [28b5 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org2.example.com | [28b6 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org2.example.com | [28b7 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [271f 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [2720 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2721 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2722 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2723 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2724 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2725 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2726 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2727 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2728 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [2729 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [272a 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [272b 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes]} -peer1.org1.example.com | [272c 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [272d 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [272e 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [272f 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2730 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2731 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2732 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2733 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [2734 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2735 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\231\001" signature:"0C\002 C\254\034a\241(\375-qXo\332\177\206\224\0053\033\323l2\247]\231\335\030\010T&w\001\311\002\037{\375R(\206\325\263n\330\321\242.a}\r#\364p5\021\214\235\370\242\032\035\\u\347p@" > alive:\2704\201S\343\350\007\271A*u\241\206\307?nl\006\021\333\000\230\002 ^\352?\275QJYFg]\3576A\242>\237\020\337\034\335\265)Nz(f&\202\227\223\202\020" secret_envelope:\300\377;+" > > -peer1.org1.example.com | [2736 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -peer1.org1.example.com | [2737 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2738 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -peer1.org1.example.com | [2739 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [273a 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [273b 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [273c 05-31 05:23:31.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [273d 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [273e 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [273f 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [2740 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2741 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -peer1.org1.example.com | [2742 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [2743 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [2744 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [2745 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2746 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2747 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -peer1.org1.example.com | [2748 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2749 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [274a 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [274b 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [274c 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [274d 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [274e 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [274f 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2750 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2751 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2752 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2753 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2754 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2755 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2756 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2757 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2758 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2759 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [275a 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [275b 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [275c 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [275d 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [275e 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [275f 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2760 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2762 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2763 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2764 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2765 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2766 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [27d9 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer0.org1.example.com | [27da 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer0.org1.example.com | [27db 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer0.org1.example.com | [27dc 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer0.org1.example.com | [27dd 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer0.org1.example.com | [27de 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer0.org1.example.com | [27df 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer0.org1.example.com | [27e0 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer0.org1.example.com | [27e1 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer0.org1.example.com | [27e2 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer0.org1.example.com | [27e3 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer0.org1.example.com | [27e4 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer0.org1.example.com | [27e5 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer0.org1.example.com | [27e6 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer0.org1.example.com | [27e7 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer0.org1.example.com | [27e8 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer0.org1.example.com | [27e9 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer0.org1.example.com | [27ea 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer0.org1.example.com | [27eb 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer0.org1.example.com | [27ec 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer0.org1.example.com | [27ed 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer0.org1.example.com | [27ee 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer0.org1.example.com | [27ef 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer0.org1.example.com | [27f0 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer0.org1.example.com | [27f1 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer0.org1.example.com | [27f2 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer0.org1.example.com | [27f3 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer0.org1.example.com | [27f4 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer0.org1.example.com | [27f5 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer0.org1.example.com | [27f6 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer0.org1.example.com | [27f7 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer0.org2.example.com | [28b8 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org2.example.com | [28b9 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org2.example.com | [28ba 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org2.example.com | [28bb 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator -peer0.org2.example.com | [28bc 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org2.example.com | [28bd 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org2.example.com | [28be 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org2.example.com | [28bf 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -peer0.org2.example.com | [28c0 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422fb1b60 env 0xc4203c0ff0 txn 0 -peer0.org2.example.com | [28c1 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] -peer0.org2.example.com | [28c2 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xc4, 0x16, 0x22, 0xe7, 0x46, 0x1a, 0xfc, 0xec, 0xc7, 0x69, 0xc, 0xf3, 0xe0, 0x1, 0x23, 0x22, 0x90, 0xfe, 0x17, 0x1c, 0xa7, 0xb2, 0xe9, 0x74, 0x12, 0x78, 0x2c, 0xe5, 0xd0, 0xba, 0x37, 0xee} txOffsets= -peer0.org2.example.com | txId= locPointer=offset=71, bytesLength=19393 -peer0.org2.example.com | ] -peer0.org2.example.com | [28c3 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index -peer0.org2.example.com | [28c4 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org2.example.com | [28c5 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] -peer0.org2.example.com | [28c6 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] -peer0.org2.example.com | [28c7 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] -peer0.org2.example.com | [28c8 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -peer0.org2.example.com | [28c9 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -peer0.org2.example.com | [28ca 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org2.example.com | [28cb 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org2.example.com | [28cc 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org2.example.com | [28cd 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org2.example.com | [28cf 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database -peer0.org2.example.com | [28d0 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions -peer1.org1.example.com | [2767 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2768 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2769 05-31 05:23:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2761 05-31 05:23:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [276a 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [276b 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [276c 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [276d 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [276e 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [276f 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2770 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2771 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2772 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2773 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2774 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2775 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2776 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2777 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2778 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2779 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [277a 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [277b 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [277c 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [277d 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [27f8 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer0.org1.example.com | [27f9 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer0.org1.example.com | [27fa 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer0.org1.example.com | [27fb 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer0.org1.example.com | [27fc 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer0.org1.example.com | [27fd 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer0.org1.example.com | [27fe 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer0.org1.example.com | [27ff 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer0.org1.example.com | [2800 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer0.org1.example.com | [2801 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer0.org1.example.com | [2802 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer0.org1.example.com | [2803 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer0.org1.example.com | [2804 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer0.org1.example.com | [2805 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer0.org1.example.com | [2806 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer0.org1.example.com | [2807 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer0.org1.example.com | [2808 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer0.org1.example.com | [2809 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer0.org1.example.com | [280a 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer0.org1.example.com | [280b 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer0.org1.example.com | [280c 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer0.org1.example.com | [280d 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer0.org1.example.com | [280e 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer0.org1.example.com | [280f 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer0.org1.example.com | [2810 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer0.org1.example.com | [2811 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer0.org1.example.com | [2812 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer0.org1.example.com | [2813 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer0.org1.example.com | [2814 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer0.org1.example.com | [2815 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -peer0.org1.example.com | [2816 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer0.org1.example.com | [2817 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself -peer0.org1.example.com | [2818 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -peer0.org1.example.com | [2819 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer0.org2.example.com | [28d1 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org2.example.com | [28ce 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] -peer0.org2.example.com | [28d2 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] -peer0.org2.example.com | [28d3 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org2.example.com | [28d4 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org2.example.com | [28d5 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [28d6 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [28d7 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [28d8 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [28d9 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org2.example.com | [28da 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org2.example.com | [28db 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org2.example.com | [28dc 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org2.example.com | [28dd 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer0.org2.example.com | [28de 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer0.org2.example.com | [28df 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer0.org2.example.com | [28e0 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:16944919785556139973 tag:EMPTY mem_req: > , Envelope: 177 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [28e1 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:16944919785556139973 tag:EMPTY mem_req: > , Envelope: 177 bytes, Signature: 0 bytes -peer0.org2.example.com | [28e2 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [28e3 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) -peer1.org1.example.com | [277e 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\231\001" signature:"0C\002 C\254\034a\241(\375-qXo\332\177\206\224\0053\033\323l2\247]\231\335\030\010T&w\001\311\002\037{\375R(\206\325\263n\330\321\242.a}\r#\364p5\021\214\235\370\242\032\035\\u\347p@" > alive: alive: -peer1.org1.example.com | [277f 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [2780 05-31 05:23:31.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2781 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] -peer1.org1.example.com | [2782 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] -peer1.org1.example.com | [2783 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -peer1.org1.example.com | [2784 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -peer1.org1.example.com | [2785 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc423ac3180 env 0xc423ab32f0 txn 0 -peer1.org1.example.com | [2786 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423ab32f0 -peer1.org1.example.com | [2787 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -peer1.org1.example.com | [2788 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -peer1.org1.example.com | [2789 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -peer1.org1.example.com | [278a 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -peer1.org1.example.com | [278b 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -peer1.org1.example.com | [278c 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -peer1.org1.example.com | [278d 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4239e8a80, header channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -peer1.org1.example.com | [278e 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -peer1.org1.example.com | [278f 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [2790 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [2791 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [2792 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [2793 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [2794 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [2795 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [2796 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [2797 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2798 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes -peer1.org1.example.com | [2799 05-31 05:23:32.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [279a 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [279b 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [279c 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [279d 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer1.org1.example.com | [279e 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer1.org1.example.com | [279f 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org1.example.com | [27a0 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer1.org1.example.com | [27a1 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer1.org1.example.com | [27a2 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [27a3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [27a4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [27a5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [27a6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [27a7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -peer1.org1.example.com | [27a8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org1.example.com | [27a9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -peer1.org1.example.com | [27aa 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -peer1.org1.example.com | [27ab 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer0.org1.example.com | [281a 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer0.org1.example.com | [281b 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer0.org1.example.com | [281c 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -peer0.org1.example.com | [281d 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer0.org1.example.com | [281e 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer0.org1.example.com | [281f 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer0.org1.example.com | [2820 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f81240 env 0xc423371f20 txn 0 -peer0.org1.example.com | [2821 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer0.org1.example.com | [2822 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer0.org1.example.com | [2823 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer0.org1.example.com | [2824 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -peer0.org1.example.com | [2825 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer0.org1.example.com | [2826 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] -peer0.org1.example.com | [2827 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer0.org1.example.com | [2828 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer0.org1.example.com | [2829 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer0.org1.example.com | [282a 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer0.org1.example.com | [282b 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer0.org1.example.com | [282c 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer0.org1.example.com | [282d 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer1.org1.example.com | [27ac 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -peer1.org1.example.com | [27ad 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -peer1.org1.example.com | [27ae 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -peer1.org1.example.com | [27af 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -peer1.org1.example.com | [27b0 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b1 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b2 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b3 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b4 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b5 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b6 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b7 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b8 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [27b9 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -peer1.org1.example.com | [27ba 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -peer1.org1.example.com | [27bb 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -peer1.org1.example.com | [27bc 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [27bd 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27be 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27bf 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27c0 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27c1 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -peer1.org1.example.com | [27c2 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer1.org1.example.com | [27c3 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27c4 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -peer0.org2.example.com | [28e4 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:60400 -peer0.org2.example.com | [28e5 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:60400 -peer0.org2.example.com | [28e6 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:60400 -peer0.org2.example.com | [28e7 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:60400 -peer0.org2.example.com | [28e8 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [28e9 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org2.example.com | [28ea 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:60400 disconnected -peer0.org2.example.com | [28eb 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [28ec 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:60404 -peer0.org2.example.com | [28ed 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:60404 -peer0.org2.example.com | [28ee 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:60404 -peer0.org2.example.com | [28ef 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:60404 -peer0.org2.example.com | [28f0 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: nonce:14972931874340803463 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\237\001" signature:"0E\002!\000\2337\367\017\023 \357\267:\233\253gV\310\366\315v\260\3519\323\362\222\021\237q\374\220Yi|\362\002 XG\276)\375\033my\021\241\236+\340G]TD5\360EI<[z\007\337s\\U\373P=" > > , Envelope: 178 bytes, Signature: 0 bytes -peer0.org2.example.com | [28f1 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [28f2 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:14972931874340803463 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\237\001" signature:"0E\002!\000\2337\367\017\023 \357\267:\233\253gV\310\366\315v\260\3519\323\362\222\021\237q\374\220Yi|\362\002 XG\276)\375\033my\021\241\236+\340G]TD5\360EI<[z\007\337s\\U\373P=" > > , Envelope: 178 bytes, Signature: 0 bytes -peer0.org2.example.com | [28f3 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [28f4 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [282e 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer1.org1.example.com | [27c5 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -peer1.org1.example.com | [27c6 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -peer1.org1.example.com | [27c7 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -peer1.org1.example.com | [27c8 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -peer1.org1.example.com | [27c9 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -peer1.org1.example.com | [27ca 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -peer1.org1.example.com | [27cb 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [27cc 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -peer1.org1.example.com | [27cd 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -peer1.org1.example.com | [27ce 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [27cf 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [27d0 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [27d1 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [27d2 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [27d3 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -peer1.org1.example.com | [27d4 05-31 05:23:32.71 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -peer1.org1.example.com | [27d5 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [27d6 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [27d7 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [27d8 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [27d9 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -peer1.org1.example.com | [27da 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -peer1.org1.example.com | [27db 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -peer1.org1.example.com | [27dc 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -peer1.org1.example.com | [27dd 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [27de 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [27df 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -peer1.org1.example.com | [27e0 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -peer1.org1.example.com | [27e1 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -peer0.org2.example.com | [28f5 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [28f6 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [28f7 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [28f8 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [28f9 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [28fa 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [28fb 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [28fc 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [28fd 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 14972931874340803463, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 664 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [28fe 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\237\001" signature:"0E\002!\000\2337\367\017\023 \357\267:\233\253gV\310\366\315v\260\3519\323\362\222\021\237q\374\220Yi|\362\002 XG\276)\375\033my\021\241\236+\340G]TD5\360EI<[z\007\337s\\U\373P=" > alive: alive: -peer0.org2.example.com | [28ff 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 14972931874340803463, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 664 bytes, Signature: 0 bytes -peer0.org2.example.com | [2900 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2901 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:37954 -peer0.org2.example.com | [2902 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:37954 -peer0.org2.example.com | [2903 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:37954 -peer0.org2.example.com | [2904 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:37954 -peer0.org2.example.com | [2905 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -peer0.org2.example.com | [2906 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [2907 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing -peer0.org2.example.com | [2908 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org2.example.com | [2909 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:37954 disconnected -peer0.org2.example.com | [290a 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [290b 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:42884 -peer0.org2.example.com | [290c 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:42884 -peer0.org2.example.com | [290d 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:42884 -peer0.org2.example.com | [290e 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:42884 -peer0.org2.example.com | [290f 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org2.example.com | [2910 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org2.example.com | [2911 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:42738 disconnected -peer0.org2.example.com | [2912 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing -peer0.org2.example.com | [2913 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:42884 disconnected -peer0.org2.example.com | [2914 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:37960 -peer0.org2.example.com | [2915 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:37960 -peer0.org2.example.com | [2916 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:37960 -peer0.org2.example.com | [2917 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:37960 -peer0.org1.example.com | [282f 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer0.org1.example.com | [2830 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer0.org1.example.com | [2831 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator -peer0.org1.example.com | [2832 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer0.org1.example.com | [2833 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer0.org1.example.com | [2834 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer0.org1.example.com | [2835 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -peer0.org1.example.com | [2836 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] -peer0.org1.example.com | [2837 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xc4, 0x16, 0x22, 0xe7, 0x46, 0x1a, 0xfc, 0xec, 0xc7, 0x69, 0xc, 0xf3, 0xe0, 0x1, 0x23, 0x22, 0x90, 0xfe, 0x17, 0x1c, 0xa7, 0xb2, 0xe9, 0x74, 0x12, 0x78, 0x2c, 0xe5, 0xd0, 0xba, 0x37, 0xee} txOffsets= +peer0.org1.example.com | [231a 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to index +peer0.org1.example.com | [231b 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx number:[0] ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to blockNumTranNum index +peer0.org1.example.com | [231c 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org1.example.com | [231d 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +peer0.org1.example.com | [231e 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] +peer0.org1.example.com | [231f 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +peer0.org1.example.com | [2320 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +peer0.org1.example.com | [2321 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [2322 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org1.example.com | [2323 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [2324 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org1.example.com | [2325 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org1.example.com | [2326 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [2327 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [7] +peer0.org1.example.com | [2329 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +peer0.org1.example.com | [232a 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org1.example.com | [2328 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] +peer0.org1.example.com | [232b 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [7] +peer0.org1.example.com | [232c 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer0.org1.example.com | [232d 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [232e 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 +peer0.org1.example.com | [232f 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [2330 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [2331 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [2332 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [1feb 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1fec 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [1fed 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [1fee 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [1fef 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [1ff0 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [1ff1 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [1ff2 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [1ff4 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [1ff5 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ff3 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > alive: alive: alive: +peer1.org2.example.com | [1ff6 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ff7 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ff8 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ff9 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ffa 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [1ffb 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [1ffc 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1ffd 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [1ffe 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [1fff 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2000 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2001 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2002 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [2003 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2004 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [2005 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2006 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [2007 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2008 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2009 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [200a 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [200b 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [200c 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [200d 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [200e 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [200f 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2010 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [2011 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2013 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [2014 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2012 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:I\020K\344\323\346k\355\233\254`\346\215\215\256\233$@\276\032r\035m" secret_envelope: > +peer1.org2.example.com | [2015 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2016 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2017 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [2018 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [2019 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 1] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [201a 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [201b 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [201c 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [201d 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [201e 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [201f 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2020 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2022 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [2021 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [2023 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2024 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2025 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [2026 06-12 02:15:56.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2027 06-12 02:15:56.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [2028 06-12 02:15:56.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2029 06-12 02:15:56.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [202a 06-12 02:15:56.81 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [202b 06-12 02:15:56.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [202c 06-12 02:15:56.81 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [202d 06-12 02:15:56.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org2.example.com | [202e 06-12 02:15:56.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer1.org2.example.com | [202f 06-12 02:15:56.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2030 06-12 02:15:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [2031 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2032 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [2033 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [2034 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2035 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2036 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2037 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2038 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2039 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [203a 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49406 +peer1.org2.example.com | [203b 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423b7c000 +peer1.org2.example.com | [203c 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [203d 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [203e 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer1.org2.example.com | [203f 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [2040 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [2041 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4241b8d20, header 0xc423b7c360 +peer1.org2.example.com | [2042 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org2.example.com | [2043 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][79603265] processing txid: 79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38 +peer1.org2.example.com | [2044 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38] +peer1.org2.example.com | [2045 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer1.org2.example.com | [2046 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [2047 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38] +peer1.org2.example.com | [2048 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][79603265] Entry chaincode: name:"exp02" +peer1.org2.example.com | [2049 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38,syscc=true,proposal=0xc4241b8d20,canname=lscc:1.2.0) +peer1.org2.example.com | [204a 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org2.example.com | [204b 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [204c 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79603265]Received message TRANSACTION from peer +peer1.org2.example.com | [204d 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [79603265] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [204e 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [79603265] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org2.example.com | [204f 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer1.org2.example.com | [2050 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [79603265] Sending GET_STATE +peer1.org2.example.com | [2051 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [79603265] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [2052 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79603265] handling GET_STATE from chaincode +peer1.org2.example.com | [2053 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [79603265] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org2.example.com | [2054 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [2055 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79603265] Completed GET_STATE. Sending RESPONSE +peer1.org2.example.com | [2056 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79603265]Received message RESPONSE from peer +peer1.org2.example.com | [2057 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [79603265] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [2058 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [79603265] before send +peer1.org2.example.com | [2059 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [79603265] after send +peer1.org2.example.com | [205a 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [79603265] Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [205b 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [79603265] GetState received payload RESPONSE +peer1.org2.example.com | [205c 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [79603265] Transaction completed. Sending COMPLETED +peer1.org2.example.com | [205d 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [79603265] send state message COMPLETED +peer1.org2.example.com | [205e 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [79603265] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [205f 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [79603265] notifying Txid:79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38, channelID:businesschannel +peer1.org2.example.com | [2060 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [2061 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org2.example.com | [2062 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38] Entry chaincode: name:"exp02" version: 1.0 +peer1.org2.example.com | [2063 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38,syscc=false,proposal=0xc4241b8d20,canname=exp02:1.0) +peer1.org2.example.com | [2064 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer1.org2.example.com | [2065 06-12 02:15:57.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [2066 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [79603265] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [2067 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79603265] handling GET_STATE from chaincode +peer1.org2.example.com | [2068 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [79603265] getting state for chaincode exp02, key a, channel businesschannel +peer1.org2.example.com | [2069 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [2087 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2088 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2089 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [208a 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [208b 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [208c 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [208d 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [208e 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [208f 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2090 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2091 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2092 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2093 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2094 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2095 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2096 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2097 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2098 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2099 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [209a 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [209b 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [209c 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [209d 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [209e 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [209f 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [20a0 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [20a1 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [20a2 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [20a3 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [20a4 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [20a5 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [20a6 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20a7 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:G\343\013\242\201\344\027\322/\277\352\322\014\300?\210D6\2717}v" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\201\001" signature:"0D\002 I\276l\243\\\233\306\030\373\317c\215 \177\026\235\263\3567,\305_\202\351\"\242S\007\023\020\024\372\002 pb\314}\314\374g\037c\201 alive: +peer0.org2.example.com | [20a8 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [20a9 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20aa 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [20ab 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20ac 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [20ad 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [20ae 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20af 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [20b0 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [20b1 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [20b2 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [20b3 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [20b4 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [20b5 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [20b6 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [20b7 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [20b8 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [20b9 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [20ba 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20bb 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > alive:\226R\276\345\303L%\026\225D\366\223\353E\336\255\t\376\301\\T?\360\343\031s\002 \002\321&\375\3404\205\333\022\254)\372\372\255a1*\0307\270Q\322\344\343[>\364 > +peer0.org2.example.com | [20bc 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org2.example.com | [20bd 06-12 02:15:56.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20be 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [20bf 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [20c0 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [20c1 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20c2 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [20c3 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [20c4 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [20c5 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [20c6 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20c7 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [20c8 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20c9 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [20ca 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20cb 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [20cc 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20cd 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [20ce 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [20cf 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [20d0 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [20d1 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [20d2 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [20d3 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [20d4 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [20d5 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [20d6 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [20d7 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [20d8 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20d9 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > alive: alive: +peer0.org2.example.com | [20da 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org1.example.com | [2333 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [2334 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [2335 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [2336 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [2337 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [2338 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44282 +peer0.org1.example.com | [2339 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429d26e40 +peer0.org1.example.com | [233a 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [233b 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [233c 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [233d 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [233e 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [233f 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429ba1ea0, header 0xc429d271a0 +peer0.org1.example.com | [2340 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org1.example.com | [2341 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][2c7735e4] processing txid: 2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6 +peer0.org1.example.com | [2342 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] +peer0.org1.example.com | [2343 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer0.org1.example.com | [2344 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2345 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] +peer0.org1.example.com | [2346 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2c7735e4] Entry chaincode: name:"exp02" +peer0.org1.example.com | [2347 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6,syscc=true,proposal=0xc429ba1ea0,canname=lscc:1.2.0) +peer0.org1.example.com | [2348 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [2349 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [234a 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c7735e4]Received message TRANSACTION from peer +peer0.org1.example.com | [234b 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c7735e4] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [234c 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2c7735e4] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [234d 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer0.org1.example.com | [234e 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2c7735e4] Sending GET_STATE +peer0.org1.example.com | [234f 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c7735e4] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [1fac 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1fab 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org1.example.com | [1fad 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fae 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [1faf 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fb0 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1fb1 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [1fb2 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1fb3 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [1fb4 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1fb5 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1fb6 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1fb7 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1fb8 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1fb9 06-12 02:15:49.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1fba 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fbb 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1fbc 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1fbd 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fbe 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fbf 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1fc0 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [1fc1 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [20db 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20dc 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer0.org2.example.com | [20dd 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [20de 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [20e0 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20df 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20e1 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [20e2 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20e3 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [20e5 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20e6 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [20e8 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20e7 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [20e9 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20ea 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [20eb 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20e4 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [20ec 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [20ed 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20ee 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [20ef 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20f0 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [20f1 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [20f2 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [206a 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [79603265] Completed GET_STATE. Sending RESPONSE +peer1.org2.example.com | [206b 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [79603265] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [206c 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [79603265] notifying Txid:79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38, channelID:businesschannel +peer1.org2.example.com | [206d 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [206e 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38] Exit +peer1.org2.example.com | [206f 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [2070 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38] +peer1.org2.example.com | [2071 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][79603265] Exit +peer1.org2.example.com | [2072 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][79603265] Entry chaincode: name:"exp02" +peer1.org2.example.com | [2073 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][79603265] escc for chaincode name:"exp02" is escc +peer1.org2.example.com | [2074 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38, chaincode: exp02} +peer1.org2.example.com | [2075 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38, chaincode: exp02} +peer1.org2.example.com | [2076 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][79603265] Exit +peer1.org2.example.com | [2077 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [79603265f068a41518361fa99f331ba9049a36991c5c92b2bfb2b71c532c6d38] +peer1.org2.example.com | [2078 06-12 02:15:57.10 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49406 +peer1.org2.example.com | [2079 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [207a 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [207b 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [207c 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [207d 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [207e 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [207f 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [2080 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2081 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2082 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2083 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2084 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2085 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2086 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2087 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2088 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [208a 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [208b 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2089 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [208c 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [208e 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [208d 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [208f 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2090 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2091 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2092 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2093 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2094 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2095 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2096 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2097 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:49408 +peer1.org2.example.com | [2098 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423b55e60 +peer1.org2.example.com | [2099 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [209a 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [209b 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer1.org1.example.com | [1fc2 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [1fc3 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1fc4 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1fc5 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1fc6 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1fc7 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1fc8 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [1fc9 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fca 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1fcb 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fcc 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1fcd 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fce 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fcf 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1fd0 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1fd1 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fd2 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1fd3 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fd4 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fd5 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [1fd6 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1fd7 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fd8 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1fd9 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1fda 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [1fdb 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20f3 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [20f4 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [20f5 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [20f6 06-12 02:15:56.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [20f7 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20f8 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20fa 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [20f9 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [20fb 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [20fd 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20fc 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [20fe 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [20ff 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2100 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [2101 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2102 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [2103 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2350 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c7735e4] handling GET_STATE from chaincode +peer0.org1.example.com | [2351 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [2c7735e4] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [2352 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [2353 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c7735e4] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [2354 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c7735e4]Received message RESPONSE from peer +peer0.org1.example.com | [2355 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c7735e4] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [2356 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2c7735e4] before send +peer0.org1.example.com | [2357 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2c7735e4] after send +peer0.org1.example.com | [2359 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2c7735e4] GetState received payload RESPONSE +peer0.org1.example.com | [235a 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c7735e4] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [235b 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [2c7735e4] send state message COMPLETED +peer0.org1.example.com | [235c 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c7735e4] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [235d 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2c7735e4] notifying Txid:2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6, channelID:businesschannel +peer0.org1.example.com | [235e 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [235f 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org1.example.com | [2360 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] Entry chaincode: name:"exp02" version: 1.0 +peer0.org1.example.com | [2361 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6,syscc=false,proposal=0xc429ba1ea0,canname=exp02:1.0) +peer0.org1.example.com | [2362 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer0.org1.example.com | [2363 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [2364 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c7735e4] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [2365 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c7735e4] handling GET_STATE from chaincode +peer0.org1.example.com | [2366 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [2c7735e4] getting state for chaincode exp02, key a, channel businesschannel +peer0.org1.example.com | [2367 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org1.example.com | [2368 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c7735e4] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [2369 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c7735e4] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [236a 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2c7735e4] notifying Txid:2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6, channelID:businesschannel +peer0.org1.example.com | [236b 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [236c 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] Exit +peer0.org1.example.com | [236d 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [236e 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] +peer0.org1.example.com | [236f 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2c7735e4] Exit +peer0.org1.example.com | [2370 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c7735e4] Entry chaincode: name:"exp02" +peer1.org2.example.com | [209c 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [209d 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [209e 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423f6b1d0, header 0xc4224741e0 +peer1.org2.example.com | [209f 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org2.example.com | [20a0 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][a9d9ab73] processing txid: a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 +peer1.org2.example.com | [20a1 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +peer1.org2.example.com | [20a2 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer1.org2.example.com | [20a3 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [20a4 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +peer1.org2.example.com | [20a5 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a9d9ab73] Entry chaincode: name:"exp02" +peer1.org2.example.com | [20a6 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710,syscc=true,proposal=0xc423f6b1d0,canname=lscc:1.2.0) +peer1.org2.example.com | [20a7 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org2.example.com | [20a8 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [20a9 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9d9ab73]Received message TRANSACTION from peer +peer1.org2.example.com | [20aa 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a9d9ab73] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org2.example.com | [20ab 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a9d9ab73] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org2.example.com | [20ac 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer1.org2.example.com | [20ad 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [a9d9ab73] Sending GET_STATE +peer1.org2.example.com | [20ae 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a9d9ab73] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [20af 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] handling GET_STATE from chaincode +peer1.org2.example.com | [20b0 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [a9d9ab73] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org2.example.com | [20b1 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [20b2 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] Completed GET_STATE. Sending RESPONSE +peer1.org2.example.com | [20b3 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9d9ab73]Received message RESPONSE from peer +peer1.org2.example.com | [20b4 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a9d9ab73] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org2.example.com | [20b5 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a9d9ab73] before send +peer1.org2.example.com | [20b6 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a9d9ab73] after send +peer1.org2.example.com | [20b8 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [a9d9ab73] GetState received payload RESPONSE +peer1.org2.example.com | [20b9 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a9d9ab73] Transaction completed. Sending COMPLETED +peer1.org2.example.com | [20ba 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a9d9ab73] send state message COMPLETED +peer1.org2.example.com | [20bb 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a9d9ab73] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [20bc 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a9d9ab73] notifying Txid:a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, channelID:businesschannel +peer1.org1.example.com | [1fdc 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1fdd 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1fde 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1fdf 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1fe0 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1fe1 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1fe2 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1fe3 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [1fe4 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1fe5 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [1fe6 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [1fe7 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [1fe8 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [1fe9 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1fea 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1feb 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1fec 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1fed 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1fee 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1fef 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1ff0 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1ff1 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [1ff2 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ff3 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2105 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2104 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [2106 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [2107 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2108 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2109 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [210a 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [210b 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [210c 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [210d 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [210e 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [210f 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2110 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2111 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2112 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2113 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2114 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2115 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2116 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2117 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2118 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2119 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [211a 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [211c 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [2371 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c7735e4] escc for chaincode name:"exp02" is escc +peer0.org1.example.com | [2372 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6, chaincode: exp02} +peer0.org1.example.com | [2373 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6, chaincode: exp02} +peer0.org1.example.com | [2374 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c7735e4] Exit +peer0.org1.example.com | [2375 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] +peer0.org1.example.com | [2376 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44282 +peer0.org1.example.com | [2358 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2c7735e4] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [2377 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44286 +peer0.org1.example.com | [2378 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429d45920 +peer0.org1.example.com | [2379 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [237a 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [237b 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [237c 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [237d 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [237e 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429da85a0, header 0xc429d45c80 +peer0.org1.example.com | [237f 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [2380 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][5f769c6a] processing txid: 5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b +peer0.org1.example.com | [2381 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] +peer0.org1.example.com | [2382 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2383 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] +peer0.org1.example.com | [2384 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][5f769c6a] Entry chaincode: name:"lscc" +peer0.org1.example.com | [2385 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org1.example.com | [2386 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b,syscc=true,proposal=0xc429da85a0,canname=lscc:1.2.0) +peer0.org1.example.com | [2387 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org2.example.com | [20bd 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [20be 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org2.example.com | [20bf 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] Entry chaincode: name:"exp02" version: 1.0 +peer1.org2.example.com | [20c0 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710,syscc=false,proposal=0xc423f6b1d0,canname=exp02:1.0) +peer1.org2.example.com | [20c1 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer1.org2.example.com | [20c2 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org2.example.com | [20c3 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a9d9ab73] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [20c4 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] handling GET_STATE from chaincode +peer1.org2.example.com | [20c5 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [a9d9ab73] getting state for chaincode exp02, key a, channel businesschannel +peer1.org2.example.com | [20c6 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [20c7 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] Completed GET_STATE. Sending RESPONSE +peer1.org2.example.com | [20c8 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a9d9ab73] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org2.example.com | [20c9 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] handling GET_STATE from chaincode +peer1.org2.example.com | [20ca 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [a9d9ab73] getting state for chaincode exp02, key b, channel businesschannel +peer1.org2.example.com | [20cb 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org2.example.com | [20cc 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] Completed GET_STATE. Sending RESPONSE +peer1.org2.example.com | [20cd 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a9d9ab73] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [20ce 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] handling PUT_STATE from chaincode +peer1.org2.example.com | [20cf 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [20b7 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a9d9ab73] Received RESPONSE, communicated (state:ready) +peer1.org2.example.com | [20d0 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a9d9ab73] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +peer1.org2.example.com | [20d1 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] handling PUT_STATE from chaincode +peer1.org2.example.com | [20d2 06-12 02:15:57.27 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a9d9ab73] Completed PUT_STATE. Sending RESPONSE +peer1.org2.example.com | [20d3 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a9d9ab73] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org2.example.com | [20d4 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a9d9ab73] notifying Txid:a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, channelID:businesschannel +peer1.org2.example.com | [20d5 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org2.example.com | [20d6 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] Exit +peer1.org2.example.com | [20d7 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [20d8 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +peer1.org2.example.com | [20d9 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a9d9ab73] Exit +peer1.org2.example.com | [20da 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a9d9ab73] Entry chaincode: name:"exp02" +peer1.org2.example.com | [20db 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a9d9ab73] escc for chaincode name:"exp02" is escc +peer1.org2.example.com | [20dc 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, chaincode: exp02} +peer1.org2.example.com | [20dd 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, chaincode: exp02} +peer1.org2.example.com | [20de 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a9d9ab73] Exit +peer1.org2.example.com | [20df 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +peer1.org2.example.com | [20e0 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:49408 +peer1.org2.example.com | [20e1 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [20e2 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [20e3 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [20e4 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [20e5 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [20e6 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [20e7 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [20e8 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [20e9 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [20ea 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [20eb 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [20ec 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [20ed 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [20ee 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [211d 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [211e 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [211f 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2120 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2121 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2122 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [211b 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2123 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2124 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2125 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2126 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2127 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2129 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2128 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [212a 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [212b 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [212c 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [212d 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [212e 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [212f 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2130 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2131 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2132 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2133 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 133 but got ts: inc_num:1528769652088169500 seq_num:132 +peer0.org2.example.com | [2134 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2135 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2136 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2137 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 132 but got ts: inc_num:1528769651824440500 seq_num:131 +peer0.org2.example.com | [2138 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2139 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [213a 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [213b 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [213c 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [213d 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [213e 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [213f 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2140 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2141 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2142 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [2144 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2143 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2145 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2146 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2147 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2148 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2149 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 69 bytes +peer0.org2.example.com | [214a 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [214b 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 69 bytes]} +peer0.org2.example.com | [214c 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [214d 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [214e 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [214f 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2150 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2151 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2152 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2153 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2154 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2155 06-12 02:15:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2156 06-12 02:15:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2157 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [2158 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2159 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [215a 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [215b 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org2.example.com | [215c 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org2.example.com | [215d 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +peer0.org2.example.com | [215e 06-12 02:15:56.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [215f 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2160 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2161 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2162 06-12 02:15:56.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2163 06-12 02:15:56.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2164 06-12 02:15:56.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2165 06-12 02:15:56.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [2166 06-12 02:15:56.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2167 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2168 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2169 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [216a 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [216c 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [216b 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [216d 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [216e 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [216f 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2170 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2171 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2172 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2173 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 69 bytes in aliveMembership +peer0.org2.example.com | [2174 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2175 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2176 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2178 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2177 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2179 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [217a 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2388 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [2389 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f769c6a]Received message TRANSACTION from peer +peer0.org1.example.com | [238a 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f769c6a] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [238b 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5f769c6a] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [238c 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/ChaincodeExists +peer0.org1.example.com | [238d 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5f769c6a] Sending GET_STATE +peer0.org1.example.com | [238e 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5f769c6a] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [238f 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5f769c6a] handling GET_STATE from chaincode +peer0.org1.example.com | [2390 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [5f769c6a] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [2391 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [2392 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5f769c6a] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [2393 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f769c6a]Received message RESPONSE from peer +peer0.org1.example.com | [2394 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f769c6a] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [2395 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [5f769c6a] before send +peer0.org1.example.com | [2396 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [5f769c6a] after send +peer0.org1.example.com | [2398 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5f769c6a] GetState received payload RESPONSE +peer0.org1.example.com | [2399 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f769c6a] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [239a 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [5f769c6a] send state message COMPLETED +peer0.org1.example.com | [239b 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5f769c6a] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [239c 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [5f769c6a] notifying Txid:5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b, channelID:businesschannel +peer0.org1.example.com | [239d 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [239e 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] Exit +peer0.org1.example.com | [239f 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [23a0 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] +peer0.org1.example.com | [23a1 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][5f769c6a] Exit +peer0.org1.example.com | [23a2 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5f769c6a] Entry chaincode: name:"lscc" +peer0.org1.example.com | [23a3 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5f769c6a] escc for chaincode name:"lscc" is escc +peer0.org1.example.com | [23a4 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b, chaincode: lscc} +peer0.org1.example.com | [23a5 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b, chaincode: lscc} +peer0.org1.example.com | [23a6 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5f769c6a] Exit +peer0.org1.example.com | [23a7 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] +peer0.org1.example.com | [23a8 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44286 +peer0.org1.example.com | [2397 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5f769c6a] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [23a9 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [1ff4 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org1.example.com | [1ff5 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [1ff6 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [1ff7 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ff8 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [1ff9 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ffa 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [1ffb 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [1ffc 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +peer1.org1.example.com | [1ffd 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [1ffe 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [1fff 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [2000 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2001 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [2002 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2003 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2004 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2005 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +peer1.org1.example.com | [2006 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2007 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2008 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2009 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [20ef 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [20f0 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [20f1 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [20f2 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [20f3 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [20f4 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\206\001" signature:"0D\002 wj[>\253\"QbO\253t$\212w5\317k.\310\254\315\361\014X\314^_\r?y(\344\002 \t\323\313:\360\210\357\267\352\232\347\227\337\026\3757d4\r\036\\L\274L\350\361d\311\231!\234?" > alive:\023\360\2662\030bu\340l`j\001\031!\344\227)\177\320`\333\212\2723\222w\002 k\276L6\244\032,0#\266H=W\364v\326\"\244\303\002||\203a\037\347\033 \371#}\024" > +peer1.org2.example.com | [20f5 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [20f6 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [20f7 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [20f8 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [20f9 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [20fa 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [20fb 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [20fc 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [20fd 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [20fe 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [20ff 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2100 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2101 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2102 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2103 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2104 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2105 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2106 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2107 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2108 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2109 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [210a 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [210b 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [210c 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [210d 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [210e 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [210f 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2110 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2111 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2112 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2113 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2114 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2115 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2116 06-12 02:15:57.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [2117 06-12 02:15:57.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2118 06-12 02:15:57.63 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [2119 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [211a 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [211b 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [211c 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [211e 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [211f 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2120 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [211d 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2121 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2122 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2123 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2124 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2125 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2126 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2127 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2128 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2129 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [212a 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [212b 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [212c 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [212d 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [212e 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [212f 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2130 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2131 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2132 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2133 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2134 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2135 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [200a 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [200b 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [200c 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [200d 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [200e 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [200f 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2010 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020~" signature:"0D\002 i\\\327\217\"S\276O\006\256\017q:S\310\270^\272DPS\025Q,\3544\202\300\375\366\337\300\002 :\177\273\212\205. \205\211\022S+\023\227-\356\216;\237\254r\031\233\357M7\260\320s\004Jk" > alive: alive: +peer1.org1.example.com | [2011 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +peer1.org1.example.com | [2012 06-12 02:15:52.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2013 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2014 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2015 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2016 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [2017 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2018 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2019 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [201a 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [201b 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [201c 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [201d 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [201e 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [201f 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [2020 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [217b 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [217c 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [217d 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [217e 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [217f 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2180 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2181 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2182 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2183 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2184 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2185 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2186 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2187 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2188 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2189 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [218a 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [218b 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [218c 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [218d 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [218e 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [218f 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2190 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2191 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2192 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2193 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2194 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2196 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2195 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2197 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2198 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2199 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [219a 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [219b 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [219c 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [219d 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [219e 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [219f 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [21a0 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [21a1 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [21a2 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [21a3 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [21a4 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [21a5 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [21a6 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [21a7 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [21a8 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [21a9 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [21aa 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [21ab 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [21ac 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [21ad 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [21ae 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [21af 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [21b0 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [21b1 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [21b2 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [21b3 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [21b4 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [21b5 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\206\001" signature:"0D\002 wj[>\253\"QbO\253t$\212w5\317k.\310\254\315\361\014X\314^_\r?y(\344\002 \t\323\313:\360\210\357\267\352\232\347\227\337\026\3757d4\r\036\\L\274L\350\361d\311\231!\234?" > alive: alive: +peer0.org2.example.com | [21b6 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [21b7 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21b8 06-12 02:15:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [21b9 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [21bb 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [21ba 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21bc 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [21bd 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21bf 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21be 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21c1 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21c0 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21c2 06-12 02:15:57.62 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [21c3 06-12 02:15:57.62 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [21c4 06-12 02:15:57.62 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [21c5 06-12 02:15:57.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [21c6 06-12 02:15:57.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [21c7 06-12 02:15:57.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21c8 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2021 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [2022 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2023 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2024 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2025 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2026 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2027 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2028 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [2029 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [202a 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [202b 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [202c 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [202d 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [202e 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [202f 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2030 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2031 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2032 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2033 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2034 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2035 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [2036 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2037 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" secret_envelope: > alive: > +peer1.org1.example.com | [2038 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org1.example.com | [2039 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [203a 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [203b 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [203c 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [203d 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [203e 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [203f 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [2040 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [2041 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2042 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [2043 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2044 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [2045 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2046 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [2047 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [2048 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [2049 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [204a 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [204b 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [204c 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [204d 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [204e 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [204f 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2050 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2051 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2052 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2053 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2054 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2055 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2056 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2057 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2058 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2059 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [205a 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [205b 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [205c 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [205d 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [205e 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [205f 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2060 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2061 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2062 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2063 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2064 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2065 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2066 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2067 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2068 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2069 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [206a 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [206b 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [206c 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [206d 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [206e 06-12 02:15:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [206f 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2070 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2071 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2072 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [2073 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2074 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2075 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2076 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2077 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2078 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2079 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [207a 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [207b 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [207c 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [207d 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [207e 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [207f 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2080 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2081 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [2082 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2083 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > alive: alive: +peer1.org1.example.com | [2084 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [2085 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2086 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2087 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2088 06-12 02:15:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2089 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [208a 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [208b 06-12 02:15:53.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [208c 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [208d 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [208e 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [208f 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2090 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [2091 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2092 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2093 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2094 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2095 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2096 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2097 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2098 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2099 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [209a 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [209b 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [209c 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [209d 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [209e 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [209f 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [20a0 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [20a1 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [20a2 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [20a3 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [20a4 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer1.org1.example.com | [20a5 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [20a6 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2136 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2137 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes +peer1.org2.example.com | [2138 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2139 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [213a 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [213b 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42239f580 env 0xc422c9ffb0 txn 0 +peer1.org2.example.com | [213c 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422c9ffb0 +peer1.org2.example.com | [213d 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +peer1.org2.example.com | [213e 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org2.example.com | [213f 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [2140 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer1.org2.example.com | [2141 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [2142 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [2143 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422c8d000, header channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +peer1.org2.example.com | [2144 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org2.example.com | [2145 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org2.example.com | [2146 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org2.example.com | [2147 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org2.example.com | [2148 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +peer1.org2.example.com | [2149 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org2.example.com | [214a 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc420193400 +peer1.org2.example.com | [214b 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [c7f02240-b8d5-49c9-82c2-d65288b42539] +peer1.org2.example.com | [214c 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [214d 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [c7f02240-b8d5-49c9-82c2-d65288b42539] +peer1.org2.example.com | [214e 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin +peer1.org2.example.com | [214f 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org2.example.com | [2150 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: +peer0.org2.example.com | [21c9 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [21ca 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [21cb 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21cc 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21cd 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [21ce 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [21cf 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [21d0 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [21d1 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [21d2 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [21d3 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [21d4 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [21d5 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [21d6 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [21d7 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21d8 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21d9 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21da 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21db 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21dc 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [21dd 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [21de 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21df 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [21e0 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [20a7 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [20a8 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [20a9 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [20aa 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [20ab 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [20ac 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [20ad 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [20ae 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [20af 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [20b0 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [20b1 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [20b2 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [20b3 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [20b4 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [20b5 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [20b6 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [20b7 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [20b8 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [20b9 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [20ba 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20bb 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [20bc 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20bd 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20be 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20bf 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [20c0 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [20c1 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [20c2 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [20c3 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [20c4 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [20c5 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20c6 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20c7 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [20c8 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [20c9 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [20ca 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [20cb 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [20cc 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [20cd 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20ce 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [20cf 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [20d0 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [20d1 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [20d2 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [23aa 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [23ab 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23ac 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [23ad 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23ae 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [23af 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [23b0 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [23b1 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23b2 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [23b3 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers +peer0.org1.example.com | [23b4 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [23b5 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23b6 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [23b7 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23b8 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [23b9 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23ba 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23bb 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [23bc 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23bd 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [23be 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23bf 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [23c0 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [23c1 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2151 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 appears to be valid +peer1.org2.example.com | [2152 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc420193400 +peer1.org2.example.com | [2154 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [2155 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [2156 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +peer1.org2.example.com | [2157 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [2158 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +peer1.org2.example.com | [2159 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [215a 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer1.org2.example.com | [215b 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org2.example.com | [215c 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer1.org2.example.com | [215d 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org2.example.com | [215e 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer1.org2.example.com | [215f 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [2160 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org2.example.com | [2161 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] marked as valid by state validator +peer1.org2.example.com | [2162 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [2163 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [2164 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [2165 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +peer1.org2.example.com | [2153 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42239f580 env 0xc422c9ffb0 txn 0 +peer1.org2.example.com | [2166 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] +peer1.org2.example.com | [2167 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x12, 0x94, 0xe5, 0x39, 0xf6, 0xe8, 0xbe, 0xfb, 0xa0, 0xcc, 0x5d, 0x8, 0x16, 0x74, 0xa, 0xdc, 0xf, 0x11, 0x32, 0x37, 0x9b, 0x1e, 0x59, 0x66, 0x4, 0xb5, 0xd8, 0x4c, 0xce, 0xe8, 0xdd, 0x43} txOffsets= +peer1.org2.example.com | txId=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 locPointer=offset=70, bytesLength=2915 +peer1.org2.example.com | ] +peer1.org2.example.com | [2168 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to index +peer1.org1.example.com | [20d3 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [20d4 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [20d5 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [20d6 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [20d7 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20d8 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [20d9 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [20da 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20db 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [20dc 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [20dd 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20de 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20df 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [20e0 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [20e1 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [20e2 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [20e3 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [20e4 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [20e5 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [20e6 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20e7 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [20e8 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [20e9 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [20ea 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [20eb 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20ec 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [23c2 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [23c3 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [23c4 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [23c5 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [23c6 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [23c7 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [23c8 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [23c9 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [23ca 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [23cb 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [23cc 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [23cd 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [23ce 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\276\275&\334\2638r,\023\355u\215\030K9\302\271+\255\035\212\351\001u\r\253\002 \032zK|\002\276\362\200o\014\031w\2725\315\337\217R\002cK\332\035\340V\031\274\330\210H\355\303" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\210\001" signature:"0D\002 \003@\200=\313\"i\025\3242\020\340\234\214\220h\021\332X\205[\240\346\016\266\216NW\272\266\034\260\002 Z\263enn4\270\332\267>v\210\\8\005\325s\2447\222=4\250\312\246\244\372\231\370Q\340\230" > +peer0.org1.example.com | [23cf 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [23d0 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23d1 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [23d2 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [23d3 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [23d4 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [23d5 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [23d6 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [23d7 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [23d8 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2169 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx number:[0] ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to blockNumTranNum index +peer1.org2.example.com | [216a 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] +peer1.org2.example.com | [216b 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +peer1.org2.example.com | [216c 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] +peer1.org2.example.com | [216d 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +peer1.org2.example.com | [216e 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +peer1.org2.example.com | [216f 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [2170 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org2.example.com | [2171 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [2172 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org2.example.com | [2173 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org2.example.com | [2174 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [2176 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +peer1.org2.example.com | [2177 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer1.org2.example.com | [2175 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [7] +peer1.org2.example.com | [2178 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] +peer1.org2.example.com | [2179 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [7] +peer1.org2.example.com | [217a 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer1.org2.example.com | [217b 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [217c 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 +peer1.org2.example.com | [217d 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [217e 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [217f 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [2180 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [2181 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [2182 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [2183 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [2184 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [2185 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [2186 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2187 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2188 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [218a 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +peer1.org2.example.com | [2189 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [218b 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [218d 06-12 02:16:00.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [218c 06-12 02:16:00.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [218e 06-12 02:16:00.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [218f 06-12 02:16:00.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [2190 06-12 02:16:00.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2191 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [2192 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [2193 06-12 02:16:00.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2194 06-12 02:16:00.28 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2195 06-12 02:16:00.28 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2196 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [2198 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2197 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2199 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [219a 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [219b 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [21e1 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21e2 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [21e3 06-12 02:15:58.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [21e4 06-12 02:15:58.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [21e5 06-12 02:15:58.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [21e6 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +peer0.org2.example.com | [21e7 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +peer0.org2.example.com | [21e8 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [21e9 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [21ea 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f20b00 env 0xc4240a5380 txn 0 +peer0.org2.example.com | [21eb 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4240a5380 +peer0.org2.example.com | [21ec 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +peer0.org2.example.com | [21ed 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [21ee 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [21ef 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org2.example.com | [21f0 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [21f1 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [21f2 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42347f800, header channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +peer0.org2.example.com | [21f3 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer0.org2.example.com | [21f4 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer0.org2.example.com | [21f5 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer0.org2.example.com | [21f6 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org2.example.com | [21f7 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +peer0.org2.example.com | [21f8 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer0.org2.example.com | [21f9 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc422f2dc00 +peer0.org1.example.com | [23d9 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [23da 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23db 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [23dc 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23dd 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [23de 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [23df 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [23e0 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23e1 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [23e2 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [23e3 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [23e4 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [23e5 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23e6 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [23e7 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [23e8 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [23e9 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23ea 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [23eb 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [23ec 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [23ed 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23ee 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [23ef 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [23f0 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23f1 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer0.org1.example.com | [23f2 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer0.org1.example.com | [23f3 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23f4 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [23f5 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [23f6 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [23f7 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [23f8 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [23f9 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [23fa 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23fb 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [23fc 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23fd 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [23ff 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [23fe 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [219c 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [219d 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [219e 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [219f 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer1.org2.example.com | [21a0 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [21a1 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [21a2 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [21a3 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [21a4 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [21a5 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [21a6 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [21a7 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [21a8 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [21a9 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [21aa 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [21ab 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [21ac 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [21ad 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [21ae 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21af 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [21b0 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [21b1 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [20ed 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 131 but got ts: inc_num:1528769652429776900 seq_num:130 +peer1.org1.example.com | [20ee 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20ef 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20f0 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [20f1 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20f2 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20f3 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [20f4 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [20f5 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 130 but got ts: inc_num:1528769652088169500 seq_num:128 +peer1.org1.example.com | [20f6 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20f7 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [20f8 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [20f9 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [20fa 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [20fb 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [20fc 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [20fd 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [20fe 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [20ff 06-12 02:15:53.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2100 06-12 02:15:54.05 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 +peer1.org1.example.com | [2101 06-12 02:15:54.05 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully +peer1.org1.example.com | [2102 06-12 02:15:54.05 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer1.org1.example.com-exp02-1.0 +peer1.org1.example.com | [2103 06-12 02:15:54.15 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer1.org1.example.com-exp02-1.0-ad23b8236c10c42b6301975e5f10d4f2d69b41948e9b0f767dd7c8e4f21cf449 +peer1.org1.example.com | [2104 06-12 02:15:54.73 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 | [2105 06-12 02:15:54.73 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) +peer1.org1.example.com | [2106 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +peer1.org1.example.com | [2107 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +peer1.org1.example.com | [2108 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +peer1.org1.example.com | [2109 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +peer1.org2.example.com | [21b2 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [21b3 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [21b4 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [21b5 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [21b6 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [21b7 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [21b8 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [21b9 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [21ba 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [21bb 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [21bc 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [21bd 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [21be 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [21bf 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [21fa 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [81ac94bc-b75a-4e88-8cd3-6416057ce6df] +peer0.org2.example.com | [21fb 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [21fc 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [81ac94bc-b75a-4e88-8cd3-6416057ce6df] +peer0.org2.example.com | [21fd 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin +peer0.org2.example.com | [21fe 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer0.org2.example.com | [21ff 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: +peer0.org2.example.com | [2200 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 appears to be valid +peer0.org2.example.com | [2201 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc422f2dc00 +peer0.org2.example.com | [2202 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f20b00 env 0xc4240a5380 txn 0 +peer0.org2.example.com | [2203 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [2204 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [2205 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +peer0.org2.example.com | [2206 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [2207 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +peer0.org2.example.com | [2208 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [2209 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer0.org2.example.com | [220a 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [220b 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org2.example.com | [220c 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +peer0.org2.example.com | [220d 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer0.org2.example.com | [220e 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [220f 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer0.org2.example.com | [2210 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] marked as valid by state validator +peer0.org2.example.com | [2211 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [2212 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [2213 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [2214 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +peer0.org1.example.com | [2400 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2401 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2402 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2403 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2404 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2407 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2405 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [2406 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [2408 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2409 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [240b 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [240c 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [240d 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [240e 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [240f 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2410 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2411 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2412 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2413 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2414 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2415 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2416 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2215 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] +peer0.org2.example.com | [2216 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x12, 0x94, 0xe5, 0x39, 0xf6, 0xe8, 0xbe, 0xfb, 0xa0, 0xcc, 0x5d, 0x8, 0x16, 0x74, 0xa, 0xdc, 0xf, 0x11, 0x32, 0x37, 0x9b, 0x1e, 0x59, 0x66, 0x4, 0xb5, 0xd8, 0x4c, 0xce, 0xe8, 0xdd, 0x43} txOffsets= +peer0.org2.example.com | txId=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 locPointer=offset=70, bytesLength=2915 +peer0.org2.example.com | ] +peer0.org2.example.com | [2217 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to index +peer0.org2.example.com | [2218 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx number:[0] ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to blockNumTranNum index +peer0.org2.example.com | [2219 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] +peer0.org2.example.com | [221a 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +peer0.org2.example.com | [221b 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] +peer0.org2.example.com | [221c 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +peer0.org2.example.com | [221d 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +peer0.org2.example.com | [221e 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [221f 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org2.example.com | [2220 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [2221 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer0.org2.example.com | [2222 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer0.org2.example.com | [2223 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [2224 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [7] +peer0.org2.example.com | [2225 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] +peer0.org2.example.com | [2226 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [7] +peer0.org2.example.com | [2227 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +peer0.org2.example.com | [2228 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer0.org2.example.com | [2229 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer0.org2.example.com | [222a 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [222b 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 +peer0.org2.example.com | [222c 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [222d 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [222e 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [222f 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [2230 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [2231 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [210a 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 +peer1.org1.example.com | [210b 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +peer1.org1.example.com | [210c 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" +peer1.org1.example.com | [210d 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" +peer1.org1.example.com | [210e 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" +peer1.org1.example.com | [210f 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +peer1.org1.example.com | [2110 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer1.org1.example.com | [2111 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [2112 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfcfb301] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [2113 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfcfb301] handling GET_STATE from chaincode +peer1.org1.example.com | [2114 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [dfcfb301] getting state for chaincode exp02, key a, channel businesschannel +peer1.org1.example.com | [2115 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org1.example.com | [2116 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfcfb301] Completed GET_STATE. Sending RESPONSE +peer1.org1.example.com | [2117 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfcfb301] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [2118 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [dfcfb301] notifying Txid:dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47, channelID:businesschannel +peer1.org1.example.com | [2119 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [211a 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47] Exit +peer1.org1.example.com | [211b 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [211c 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47] +peer1.org1.example.com | [211d 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][dfcfb301] Exit +peer1.org1.example.com | [211e 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfcfb301] Entry chaincode: name:"exp02" +peer1.org1.example.com | [211f 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfcfb301] escc for chaincode name:"exp02" is escc +peer1.org1.example.com | [2120 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47, chaincode: exp02} +peer1.org1.example.com | [2121 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47, chaincode: exp02} +peer1.org1.example.com | [2122 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfcfb301] Exit +peer1.org1.example.com | [2123 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [dfcfb301efcba65184b57571bd594263e054de5085ea3aaf3927300372f08f47] +peer0.org2.example.com | [2232 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [2233 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [2234 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [2235 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2236 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes +peer0.org2.example.com | [2237 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2238 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:59466 +peer0.org2.example.com | [2239 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422f63a40 +peer0.org2.example.com | [223a 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org2.example.com | [223b 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [223c 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer0.org2.example.com | [223d 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [223e 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [223f 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc422f4a8c0, header 0xc422f63da0 +peer0.org2.example.com | [2240 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer0.org2.example.com | [2241 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][b5018aed] processing txid: b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87 +peer0.org2.example.com | [2242 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87] +peer0.org2.example.com | [2243 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer0.org2.example.com | [2244 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [2245 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87] +peer0.org2.example.com | [2246 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][b5018aed] Entry chaincode: name:"exp02" +peer0.org2.example.com | [2247 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87,syscc=true,proposal=0xc422f4a8c0,canname=lscc:1.2.0) +peer0.org2.example.com | [2248 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org2.example.com | [2249 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [224a 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5018aed]Received message TRANSACTION from peer +peer0.org2.example.com | [224b 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5018aed] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org2.example.com | [224c 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b5018aed] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [2124 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:45982 +peer1.org1.example.com | [2125 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [2126 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [2127 06-12 02:15:54.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [2128 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [2129 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [6] +peer1.org1.example.com | [212a 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +peer1.org1.example.com | [212b 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +peer1.org1.example.com | [212c 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] +peer1.org1.example.com | [212d 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [6] +peer1.org1.example.com | [212e 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +peer1.org1.example.com | [212f 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [2130 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad +peer1.org1.example.com | [2131 06-12 02:15:54.76 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [2132 06-12 02:15:54.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [2133 06-12 02:15:54.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [2134 06-12 02:15:54.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2135 06-12 02:15:54.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [2136 06-12 02:15:54.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [2137 06-12 02:15:54.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [2138 06-12 02:15:54.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2139 06-12 02:15:54.77 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [213a 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [213b 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [213c 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [213d 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [213e 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [213f 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2140 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [21c0 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [21c1 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [21c2 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [21c3 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 136 but got ts: inc_num:1528769652088169500 seq_num:135 +peer1.org2.example.com | [21c4 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [21c5 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [21c6 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [21c7 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [21c8 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [21c9 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [21ca 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [224d 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer0.org2.example.com | [224e 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b5018aed] Sending GET_STATE +peer0.org2.example.com | [224f 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b5018aed] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [2250 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b5018aed] handling GET_STATE from chaincode +peer0.org2.example.com | [2251 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [b5018aed] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org2.example.com | [2252 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org2.example.com | [2253 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b5018aed] Completed GET_STATE. Sending RESPONSE +peer0.org2.example.com | [2254 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5018aed]Received message RESPONSE from peer +peer0.org2.example.com | [2255 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b5018aed] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org2.example.com | [2256 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [b5018aed] before send +peer0.org2.example.com | [2257 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [b5018aed] after send +peer0.org2.example.com | [2258 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b5018aed] Received RESPONSE, communicated (state:ready) +peer0.org2.example.com | [2259 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [b5018aed] GetState received payload RESPONSE +peer0.org2.example.com | [225a 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b5018aed] Transaction completed. Sending COMPLETED +peer0.org2.example.com | [225b 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b5018aed] send state message COMPLETED +peer0.org2.example.com | [225c 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b5018aed] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [225d 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b5018aed] notifying Txid:b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87, channelID:businesschannel +peer0.org2.example.com | [225e 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [225f 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer0.org2.example.com | [2260 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87] Entry chaincode: name:"exp02" version: 1.0 +peer0.org2.example.com | [2261 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87,syscc=false,proposal=0xc422f4a8c0,canname=exp02:1.0) +peer0.org2.example.com | [2262 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer0.org2.example.com | [2263 06-12 02:15:59.74 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org2.example.com | [2264 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b5018aed] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org2.example.com | [2265 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b5018aed] handling GET_STATE from chaincode +peer0.org2.example.com | [2266 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [b5018aed] getting state for chaincode exp02, key a, channel businesschannel +peer0.org2.example.com | [2267 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer0.org2.example.com | [2268 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [b5018aed] Completed GET_STATE. Sending RESPONSE +peer0.org2.example.com | [2269 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b5018aed] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org2.example.com | [226a 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b5018aed] notifying Txid:b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87, channelID:businesschannel +peer0.org2.example.com | [226b 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org2.example.com | [226c 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87] Exit +peer0.org2.example.com | [226d 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [2141 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2142 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2143 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2144 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2145 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2146 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2147 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2148 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2149 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [214a 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [214b 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\202\001" signature:"0E\002!\000\340\262\326\376\364\025^\204_\356\367D74\233`O9\2745\353\"\0135\311\204\250\031\231\236\n\001\002 }C\310\211\203\\LN\037\250\333\227\205\r\352w\356%\254\002}\031+\034\227l\320\343\351z\177\337" > alive:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > alive: alive: +peer1.org1.example.com | [214c 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [214d 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [214e 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [214f 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2150 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2151 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [2152 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2153 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2154 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2155 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [226e 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87] +peer0.org2.example.com | [226f 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][b5018aed] Exit +peer0.org2.example.com | [2270 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b5018aed] Entry chaincode: name:"exp02" +peer0.org2.example.com | [2271 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b5018aed] escc for chaincode name:"exp02" is escc +peer0.org2.example.com | [2272 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87, chaincode: exp02} +peer0.org2.example.com | [2273 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87, chaincode: exp02} +peer0.org2.example.com | [2274 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b5018aed] Exit +peer0.org2.example.com | [2275 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b5018aed3659f6b262fbdde6cea96971f98a20ebf4114f5e6b0d48ad74455a87] +peer0.org2.example.com | [2276 06-12 02:15:59.75 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:59466 +peer0.org2.example.com | [2277 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2278 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2279 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [227a 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [227b 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +peer0.org2.example.com | [227c 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [227d 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [227e 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [227f 06-12 02:16:00.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2280 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [2281 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [2282 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2283 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [21cb 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [21cc 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [21cd 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [21ce 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [21cf 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [21d0 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [21d1 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [21d2 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [21d3 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [21d5 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [21d4 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [21d6 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [21d7 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [21d8 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [21d9 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21da 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [21db 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [21dc 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [21dd 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [21de 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [21df 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [21e0 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [21e1 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21e2 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [21e3 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [21e4 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [21e5 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [21e6 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [21e7 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [21e8 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21e9 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [21ea 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [21eb 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21ec 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [21ed 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [21ee 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21ef 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [21f0 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21f1 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [21f2 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [21f3 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21f4 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [21f5 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [21f6 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2156 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2157 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [2158 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [2159 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [215a 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [5 2 1 3 4] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [215b 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [215c 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [215d 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [215e 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [215f 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2160 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2161 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2162 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2163 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [2164 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [2165 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2166 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [2167 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2168 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [2169 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [216a 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [216b 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org1.example.com | [216c 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [216d 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [216e 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2170 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [216f 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2417 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2418 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2419 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [241a 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [241b 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [240a 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [241d 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [241c 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44288 +peer0.org1.example.com | [241f 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429fd0330 +peer0.org1.example.com | [2420 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [2421 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [2422 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [2423 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [2424 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [2425 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429fd2370, header 0xc429fd0690 +peer0.org1.example.com | [2426 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [2427 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][4aad6c73] processing txid: 4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca +peer0.org1.example.com | [2428 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] +peer0.org1.example.com | [2429 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [242a 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] +peer0.org1.example.com | [242b 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][4aad6c73] Entry chaincode: name:"lscc" +peer0.org1.example.com | [242c 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org1.example.com | [241e 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [242e 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org1.example.com | [242d 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca,syscc=true,proposal=0xc429fd2370,canname=lscc:1.2.0) +peer0.org1.example.com | [2430 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [242f 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [2432 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2433 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2434 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 138 but got ts: inc_num:1528769652429776900 seq_num:137 +peer0.org1.example.com | [2435 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2431 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [2436 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aad6c73]Received message TRANSACTION from peer +peer0.org1.example.com | [2437 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aad6c73] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [2438 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [4aad6c73] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [2439 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetDeploymentSpec +peer0.org1.example.com | [243a 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [243b 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [243d 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [243e 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [243f 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [243c 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4aad6c73] Sending GET_STATE +peer0.org1.example.com | [2441 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [4aad6c73] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [2442 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4aad6c73] handling GET_STATE from chaincode +peer0.org1.example.com | [2443 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [4aad6c73] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [2444 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [2445 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4aad6c73] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [2446 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aad6c73]Received message RESPONSE from peer +peer0.org1.example.com | [2447 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aad6c73] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [2448 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [4aad6c73] before send +peer0.org1.example.com | [2440 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [244a 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [244b 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [244c 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [244d 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [244e 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [244f 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2450 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2451 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2452 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2453 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2454 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2455 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2456 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2457 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2458 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2459 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org1.example.com | [245a 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [245b 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2449 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [4aad6c73] after send +peer0.org1.example.com | [245c 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [4aad6c73] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [245d 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2460 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2461 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [2462 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2463 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [245e 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [245f 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4aad6c73] GetState received payload RESPONSE +peer0.org1.example.com | [2464 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2467 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2468 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2465 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [2466 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aad6c73] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [2469 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [246c 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [246d 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [246a 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [246e 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 6 1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [246b 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [4aad6c73] send state message COMPLETED +peer0.org1.example.com | [246f 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [4aad6c73] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2470 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [4aad6c73] notifying Txid:4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca, channelID:businesschannel +peer0.org1.example.com | [2471 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [2472 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] Exit +peer0.org1.example.com | [2473 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [2474 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] +peer0.org1.example.com | [2475 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][4aad6c73] Exit +peer0.org1.example.com | [2476 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][4aad6c73] Entry chaincode: name:"lscc" +peer0.org1.example.com | [2477 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][4aad6c73] escc for chaincode name:"lscc" is escc +peer0.org1.example.com | [2478 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca, chaincode: lscc} +peer0.org1.example.com | [2479 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca, chaincode: lscc} +peer0.org1.example.com | [247a 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][4aad6c73] Exit +peer0.org1.example.com | [247b 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] +peer0.org1.example.com | [247c 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44288 +peer0.org1.example.com | [247d 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [247e 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [247f 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [21f7 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [21f8 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [21f9 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [21fa 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [21fb 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [21fc 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [21fd 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [21fe 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [21ff 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2200 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2201 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2202 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2203 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2204 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2205 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [2206 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2207 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > alive: +peer1.org2.example.com | [2208 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [2209 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2171 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2172 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [2173 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [2174 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2175 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [2176 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [2177 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2178 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [2179 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [217a 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [217b 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [217d 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [217c 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [217e 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2180 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [217f 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2181 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [2182 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2184 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org1.example.com | [2185 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2284 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2285 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [2286 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [2287 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2288 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [2289 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [228a 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [228b 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [228c 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [228d 06-12 02:16:00.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [228e 06-12 02:16:00.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [228f 06-12 02:16:00.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2290 06-12 02:16:00.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2291 06-12 02:16:00.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2292 06-12 02:16:00.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [2293 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2295 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +peer0.org2.example.com | [2296 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2294 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\266s\002\371\376\301\237@@" > > +peer0.org2.example.com | [2297 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2298 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2299 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [229a 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [229b 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [229c 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [229d 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [229e 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [229f 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22a0 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [22a1 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22a2 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [22a3 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22a4 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer0.org2.example.com | [22a5 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [22a6 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [22a7 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22a8 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22a9 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [22aa 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [220a 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [220b 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [220c 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [220d 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [220e 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes +peer1.org2.example.com | [220f 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2210 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes +peer1.org2.example.com | [2211 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [2212 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2213 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [2214 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2215 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2216 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2217 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2218 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2219 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [221a 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [221b 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2480 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2481 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [2482 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2483 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2484 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2485 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2486 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2487 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2488 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2489 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [248a 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [248b 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [248c 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [248d 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [248e 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [248f 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2490 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [2491 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2492 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\212\001" signature:"0D\002 >h\014\002\253\324\t\236\300\343@\021@\305\214\347Gk/\2574>U\357\010\240\323\016\353\025\2579\002 \177'\000,\352[\315\n. \rU\375;q\243\232\302]:\375\205\226hu\371\230w\023CN\302" > +peer0.org1.example.com | [2493 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [2494 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2495 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2496 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2497 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2498 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2499 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [249a 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [249b 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [249c 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [249d 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [249e 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44290 +peer0.org1.example.com | [249f 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a03de00 +peer0.org1.example.com | [24a0 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [24a1 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [24a2 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [24a3 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [24a4 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [24a5 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a042ff0, header 0xc42a0f8180 +peer0.org1.example.com | [24a6 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [24a7 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][9de2250e] processing txid: 9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e +peer0.org1.example.com | [24a8 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] +peer0.org1.example.com | [24a9 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [24aa 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] +peer0.org1.example.com | [24ab 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][9de2250e] Entry chaincode: name:"lscc" +peer0.org1.example.com | [24ac 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org1.example.com | [24ad 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e,syscc=true,proposal=0xc42a042ff0,canname=lscc:1.2.0) +peer0.org1.example.com | [24ae 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [24af 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [24b0 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9de2250e]Received message TRANSACTION from peer +peer0.org1.example.com | [24b1 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9de2250e] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [24b2 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [9de2250e] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [24b3 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer0.org1.example.com | [24b4 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9de2250e] Sending GET_STATE +peer0.org1.example.com | [24b5 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [9de2250e] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer0.org1.example.com | [24b6 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9de2250e] handling GET_STATE from chaincode +peer0.org1.example.com | [24b7 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [9de2250e] getting state for chaincode lscc, key exp02, channel businesschannel +peer0.org1.example.com | [24b8 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer0.org1.example.com | [24b9 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9de2250e] Completed GET_STATE. Sending RESPONSE +peer0.org1.example.com | [24ba 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9de2250e]Received message RESPONSE from peer +peer0.org1.example.com | [24bb 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9de2250e] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [24bc 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [9de2250e] before send +peer0.org1.example.com | [24bd 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [9de2250e] after send +peer0.org1.example.com | [24be 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [9de2250e] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [24bf 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9de2250e] GetState received payload RESPONSE +peer0.org1.example.com | [24c0 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9de2250e] Transaction completed. Sending COMPLETED +peer0.org2.example.com | [22ab 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [22ac 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [22ad 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [22ae 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [22af 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [22b0 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [22b1 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [22b2 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [22b3 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [22b4 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [22b5 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [22b6 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [22b8 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org2.example.com | [22b9 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22b7 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\276\275&\334\2638r,\023\355u\215\030K9\302\271+\255\035\212\351\001u\r\253\002 \032zK|\002\276\362\200o\014\031w\2725\315\337\217R\002cK\332\035\340V\031\274\330\210H\355\303" > alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > alive: +peer0.org2.example.com | [22ba 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [22bb 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [22bc 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [22bd 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [22be 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [22bf 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [22c0 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [22c1 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [221c 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer1.org2.example.com | [221d 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes +peer1.org2.example.com | [221e 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [221f 06-12 02:16:00.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2220 06-12 02:16:00.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2221 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [2222 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2223 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [2224 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [2225 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [2226 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2227 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2228 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [2229 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [222a 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [222b 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [222c 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [222d 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [222f 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2230 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2231 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [222e 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2232 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2233 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [2234 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [2235 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2236 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [2237 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers +peer1.org2.example.com | [2238 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [2239 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [223a 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [223b 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [223c 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [223d 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [223e 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [223f 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2240 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2241 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [2242 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2243 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [2244 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2245 06-12 02:16:00.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org2.example.com | [2246 06-12 02:16:00.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org2.example.com | [2247 06-12 02:16:00.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2248 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2249 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [224a 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [224b 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [224c 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [224d 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [224e 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[31mpeer1.org2.example.com | [224f 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2250 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2251 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2252 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2253 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2254 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2255 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2256 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2257 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2258 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2259 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [225a 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [225b 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [225d 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [225c 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > alive: alive: alive: +peer1.org2.example.com | [225e 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [225f 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [2260 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2261 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2262 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2264 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2263 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2265 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2266 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2267 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2268 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2269 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [226a 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [226b 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [226c 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [226d 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [226e 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [226f 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2270 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2271 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2272 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2273 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2274 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2275 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2276 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2277 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [24c1 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [9de2250e] send state message COMPLETED +peer0.org1.example.com | [24c2 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [9de2250e] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [24c3 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [9de2250e] notifying Txid:9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e, channelID:businesschannel +peer0.org1.example.com | [24c4 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [24c5 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] Exit +peer0.org1.example.com | [24c6 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [24c7 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] +peer0.org1.example.com | [24c8 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][9de2250e] Exit +peer0.org1.example.com | [24c9 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][9de2250e] Entry chaincode: name:"lscc" +peer0.org1.example.com | [24ca 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][9de2250e] escc for chaincode name:"lscc" is escc +peer0.org1.example.com | [24cb 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e, chaincode: lscc} +peer0.org1.example.com | [24cc 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e, chaincode: lscc} +peer0.org1.example.com | [24cd 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][9de2250e] Exit +peer1.org1.example.com | [2183 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" secret_envelope: > alive: > +peer1.org1.example.com | [2186 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [2187 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2188 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [2189 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [218a 06-12 02:15:56.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [218b 06-12 02:15:56.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [218c 06-12 02:15:56.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +peer1.org1.example.com | [218d 06-12 02:15:56.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [218e 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [218f 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2190 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2191 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [2192 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2193 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2194 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2195 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2196 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2197 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [22c2 06-12 02:16:00.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [22c3 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22c4 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [22c5 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22c6 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [22c7 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [22c8 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [22c9 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22ca 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [22cb 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [22cc 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22cd 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [22ce 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [22cf 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22d0 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [22d1 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2278 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2279 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [24ce 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] +peer0.org1.example.com | [24cf 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44290 +peer0.org1.example.com | [24d0 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [24d1 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [24d2 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [24d3 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [24d4 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [24d5 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [24d6 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44292 +peer0.org1.example.com | [24d7 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a0f9980 +peer0.org1.example.com | [24d8 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [24d9 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [24da 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [24db 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [24dc 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [24dd 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a0439f0, header 0xc42a0f9ce0 +peer0.org1.example.com | [24de 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [24df 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][16c1c0ea] processing txid: 16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693 +peer0.org1.example.com | [24e0 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] +peer0.org1.example.com | [24e1 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [24e2 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] +peer0.org1.example.com | [24e3 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][16c1c0ea] Entry chaincode: name:"lscc" +peer0.org1.example.com | [24e4 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] Entry chaincode: name:"lscc" version: 1.2.0 +peer1.org1.example.com | [2198 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2199 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [219a 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [219b 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [219c 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [219d 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [219e 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [219f 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [21a0 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [21a1 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [21a2 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > alive:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > alive: +peer1.org1.example.com | [21a3 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [21a4 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [21a5 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [21a6 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [21a7 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [21a8 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [21a9 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [21aa 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21ab 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [21ac 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [21ad 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [22d2 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [22d4 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [22d3 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 273 bytes, Signature: 0 bytes +peer0.org2.example.com | [22d5 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22d7 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [22d8 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22d9 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [22da 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [22db 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [22dc 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [22dd 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [22de 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [22df 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [22e0 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [22e1 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [22e2 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [22e3 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [22e4 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [22e5 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [22e6 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [22e7 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [22e8 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [227a 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [227b 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [227c 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [227d 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [227e 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [227f 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2281 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2280 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2282 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2283 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2284 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2285 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2286 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2287 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2288 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2289 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [228a 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [228b 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [228c 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [228d 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [228e 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [228f 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2290 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2291 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [24e5 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693,syscc=true,proposal=0xc42a0439f0,canname=lscc:1.2.0) +peer0.org1.example.com | [24e6 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [24e7 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [24e8 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [16c1c0ea]Received message TRANSACTION from peer +peer0.org1.example.com | [24e9 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [16c1c0ea] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [24ea 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [16c1c0ea] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [24eb 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [16c1c0ea] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [24ec 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [16c1c0ea] send state message COMPLETED +peer0.org1.example.com | [24ed 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [16c1c0ea] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [24ee 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [16c1c0ea] notifying Txid:16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693, channelID:businesschannel +peer0.org1.example.com | [24ef 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [24f0 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] Exit +peer0.org1.example.com | [24f1 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [24f2 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] +peer0.org1.example.com | [24f3 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][16c1c0ea] Exit +peer0.org1.example.com | [24f4 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][16c1c0ea] Entry chaincode: name:"lscc" +peer0.org1.example.com | [24f5 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][16c1c0ea] escc for chaincode name:"lscc" is escc +peer0.org1.example.com | [24f6 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693, chaincode: lscc} +peer0.org1.example.com | [24f7 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693, chaincode: lscc} +peer0.org1.example.com | [24f8 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][16c1c0ea] Exit +peer0.org1.example.com | [24f9 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] +peer0.org1.example.com | [24fa 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44292 +peer0.org1.example.com | [24fb 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44294 +peer0.org1.example.com | [24fc 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a0f4d20 +peer0.org1.example.com | [24fd 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [24fe 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [24ff 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [2500 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [22e9 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [22ea 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [22eb 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [22ec 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [22ee 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [22ef 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [22f0 06-12 02:16:00.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22f1 06-12 02:16:00.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [22f2 06-12 02:16:00.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [22f3 06-12 02:16:00.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22f4 06-12 02:16:00.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [22f5 06-12 02:16:00.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22d6 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22f6 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes +peer0.org2.example.com | [22f7 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [22ed 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [22f8 06-12 02:16:00.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [22fa 06-12 02:16:00.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [22f9 06-12 02:16:00.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer0.org2.example.com | [22fb 06-12 02:16:00.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [22fe 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [2300 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [2301 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2302 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [22ff 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [22fc 06-12 02:16:00.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2303 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes +peer1.org2.example.com | [2292 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2293 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2294 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2296 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2297 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2295 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2298 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2299 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [229a 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [229b 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [229c 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [229d 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [229e 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [229f 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22a0 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22a1 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [22a2 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22a3 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22a4 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [22a5 06-12 02:16:02.60 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org2.example.com | [22a6 06-12 02:16:02.60 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org2.example.com | [22a7 06-12 02:16:02.60 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org2.example.com | [22a8 06-12 02:16:02.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [22a9 06-12 02:16:02.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22aa 06-12 02:16:02.63 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [22ab 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [21ae 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21b0 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21b1 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [21af 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21b2 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [21b3 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [21b4 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [21b5 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [21b6 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [21b7 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [21b8 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [21b9 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [21bb 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [21ba 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21bc 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [21bd 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [21bf 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21c0 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [21be 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [21c1 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21c2 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [21c3 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21c4 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21c5 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [21c6 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [21c7 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [21c8 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [21c9 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:45986 +peer1.org1.example.com | [21ca 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc422b04210 +peer1.org1.example.com | [21cb 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [21cc 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [21cd 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer1.org1.example.com | [21ce 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [21cf 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [21d0 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4231213b0, header 0xc422b04570 +peer1.org1.example.com | [21d1 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +peer1.org1.example.com | [21d2 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][2c482569] processing txid: 2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657 +peer1.org1.example.com | [21d3 06-12 02:15:56.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657] +peer1.org1.example.com | [21d4 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +peer1.org1.example.com | [21d5 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [21d6 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657] +peer1.org1.example.com | [21d7 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2c482569] Entry chaincode: name:"exp02" +peer1.org1.example.com | [21d8 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657,syscc=true,proposal=0xc4231213b0,canname=lscc:1.2.0) +peer1.org1.example.com | [21d9 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer1.org1.example.com | [21da 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [21db 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c482569]Received message TRANSACTION from peer +peer1.org1.example.com | [21dc 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c482569] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer1.org1.example.com | [21dd 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2c482569] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [21de 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +peer1.org1.example.com | [21df 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2c482569] Sending GET_STATE +peer1.org1.example.com | [21e0 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c482569] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [21e1 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c482569] handling GET_STATE from chaincode +peer0.org2.example.com | [22fd 06-12 02:16:00.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [2304 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2305 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 137 but got ts: inc_num:1528769653227426900 seq_num:136 +peer0.org2.example.com | [2306 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2307 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2308 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2309 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [230a 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [230b 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [230c 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [230d 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [230e 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [230f 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2310 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2311 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2312 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2313 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2314 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2315 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2316 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2317 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2318 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2319 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [231a 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [22ac 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22ad 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [22ae 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22af 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22b0 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22b1 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [22b2 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [22b3 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [22b4 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [22b5 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [22b6 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [22b7 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [22b8 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [22b9 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [22ba 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [22bb 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22bc 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22bd 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [22be 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [22bf 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22c0 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [22c1 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22c2 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22c3 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [22c4 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22c5 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [22c6 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22c7 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22c8 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [22c9 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [22ca 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22cb 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [22cc 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [22ce 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [22cd 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [22d0 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [22d1 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [22d2 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [22cf 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [22d3 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [22d4 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [22d5 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [22d6 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22d7 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [22d8 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [22d9 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [22da 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [22db 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [22dc 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [22dd 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [22de 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [22df 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [22e0 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [22e1 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [22e2 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [22e3 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [22e4 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [22e5 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [22e6 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22e7 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [22e8 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [22e9 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [22ea 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [22eb 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [22ec 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [22ed 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [22ee 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [22ef 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [22f0 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [22f1 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [22f2 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [22f3 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [22f4 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [22f5 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [22f6 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [22f7 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer1.org2.example.com | [22f8 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [22f9 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [22fa 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [22fb 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [22fc 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [22fd 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [22fe 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [22ff 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2300 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2501 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [2502 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a1be320, header 0xc42a0f5080 +peer0.org1.example.com | [2503 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +peer0.org1.example.com | [2504 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][dfae291c] processing txid: dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91 +peer0.org1.example.com | [2505 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] +peer0.org1.example.com | [2506 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2507 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] +peer0.org1.example.com | [2508 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][dfae291c] Entry chaincode: name:"lscc" +peer0.org1.example.com | [2509 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] Entry chaincode: name:"lscc" version: 1.2.0 +peer0.org1.example.com | [250a 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91,syscc=true,proposal=0xc42a1be320,canname=lscc:1.2.0) +peer0.org1.example.com | [250b 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +peer0.org1.example.com | [250c 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [250d 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfae291c]Received message TRANSACTION from peer +peer0.org1.example.com | [250e 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfae291c] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [250f 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfae291c] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [2510 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetInstantiatedChaincodes +peer0.org1.example.com | [2511 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [dfae291c] Sending GET_STATE_BY_RANGE +peer0.org1.example.com | [2512 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfae291c] Fabric side handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +peer0.org1.example.com | [2513 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfae291c] handling GET_STATE_BY_RANGE from chaincode +peer0.org1.example.com | [2514 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] HandleGetStateByRange-fm.HandleGetStateByRange.GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +peer0.org1.example.com | [2515 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] HandleGetStateByRange-fm.HandleGetStateByRange.BuildQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +peer0.org1.example.com | [2516 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetStateByRange-fm.HandleGetStateByRange -> DEBU Got keys and values. Sending RESPONSE +peer0.org1.example.com | [2517 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfae291c] Completed GET_STATE_BY_RANGE. Sending RESPONSE +peer0.org1.example.com | [2518 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfae291c]Received message RESPONSE from peer +peer0.org1.example.com | [2519 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfae291c] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [251a 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfae291c] before send +peer0.org1.example.com | [251b 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfae291c] after send +peer0.org1.example.com | [251c 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [dfae291c] Received RESPONSE. Successfully got range +peer0.org1.example.com | [251d 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [dfae291c] Sending QUERY_STATE_CLOSE +peer0.org1.example.com | [251e 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfae291c] Fabric side handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +peer0.org1.example.com | [251f 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfae291c] handling QUERY_STATE_CLOSE from chaincode +peer1.org1.example.com | [21e2 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [2c482569] getting state for chaincode lscc, key exp02, channel businesschannel +peer1.org1.example.com | [21e3 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [21e4 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c482569] Completed GET_STATE. Sending RESPONSE +peer1.org1.example.com | [21e5 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c482569]Received message RESPONSE from peer +peer1.org1.example.com | [21e6 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c482569] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer1.org1.example.com | [21e7 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2c482569] before send +peer1.org1.example.com | [21e8 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2c482569] after send +peer1.org1.example.com | [21e9 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2c482569] Received RESPONSE, communicated (state:ready) +peer1.org1.example.com | [21ea 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2c482569] GetState received payload RESPONSE +peer1.org1.example.com | [21eb 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c482569] Transaction completed. Sending COMPLETED +peer1.org1.example.com | [21ec 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [2c482569] send state message COMPLETED +peer1.org1.example.com | [21ed 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c482569] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [21ee 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2c482569] notifying Txid:2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657, channelID:businesschannel +peer1.org1.example.com | [21ef 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [21f0 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +peer1.org1.example.com | [21f1 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657] Entry chaincode: name:"exp02" version: 1.0 +peer1.org1.example.com | [21f2 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657,syscc=false,proposal=0xc4231213b0,canname=exp02:1.0) +peer1.org1.example.com | [21f3 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +peer1.org1.example.com | [21f4 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer1.org1.example.com | [21f5 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c482569] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +peer1.org1.example.com | [21f6 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c482569] handling GET_STATE from chaincode +peer1.org1.example.com | [21f7 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [2c482569] getting state for chaincode exp02, key a, channel businesschannel +peer1.org1.example.com | [21f8 06-12 02:15:56.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org1.example.com | [21f9 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c482569] Completed GET_STATE. Sending RESPONSE +peer1.org1.example.com | [21fa 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c482569] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer1.org1.example.com | [21fb 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2c482569] notifying Txid:2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657, channelID:businesschannel +peer1.org1.example.com | [21fc 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer1.org1.example.com | [21fd 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657] Exit +peer1.org1.example.com | [21fe 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [21ff 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657] +peer1.org1.example.com | [2200 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2c482569] Exit +peer1.org1.example.com | [2201 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c482569] Entry chaincode: name:"exp02" +peer0.org2.example.com | [231b 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [231c 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes +peer0.org2.example.com | [231d 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [231f 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [231e 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [2320 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2321 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2323 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [2322 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [2324 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2325 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [2326 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2327 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [2328 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2329 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [232a 06-12 02:16:00.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [232b 06-12 02:16:00.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [232c 06-12 02:16:00.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [232d 06-12 02:16:00.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [232e 06-12 02:16:00.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [232f 06-12 02:16:00.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [2330 06-12 02:16:00.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2331 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [2332 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2333 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2334 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2335 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [2336 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [2337 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [2338 06-12 02:16:00.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2339 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [233a 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [233b 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [233c 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [233d 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [233e 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [233f 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [2340 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [2341 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [2342 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 6 1 2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [2343 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2344 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2345 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2346 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [2347 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2348 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2349 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [234a 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [234b 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2520 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfae291c] Completed QUERY_STATE_CLOSE. Sending RESPONSE +peer0.org1.example.com | [2521 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfae291c] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [2522 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfae291c]Received message RESPONSE from peer +peer0.org1.example.com | [2523 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfae291c] Handling ChaincodeMessage of type: RESPONSE(state:ready) +peer0.org1.example.com | [2524 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfae291c] before send +peer0.org1.example.com | [2525 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [dfae291c] Received RESPONSE. Successfully got range +peer0.org1.example.com | [2526 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfae291c] after send +peer0.org1.example.com | [2527 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfae291c] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [2528 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [dfae291c] send state message COMPLETED +peer0.org1.example.com | [2529 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfae291c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [252a 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [dfae291c] notifying Txid:dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91, channelID:businesschannel +peer0.org1.example.com | [252b 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [252c 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] Exit +peer0.org1.example.com | [252d 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [252e 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] +peer0.org1.example.com | [252f 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][dfae291c] Exit +peer0.org1.example.com | [2530 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfae291c] Entry chaincode: name:"lscc" +peer0.org1.example.com | [2531 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfae291c] escc for chaincode name:"lscc" is escc +peer0.org1.example.com | [2532 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91, chaincode: lscc} +peer0.org1.example.com | [2533 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91, chaincode: lscc} +peer0.org1.example.com | [2534 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfae291c] Exit +peer0.org1.example.com | [2535 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] +peer0.org1.example.com | [2536 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44294 +peer0.org1.example.com | [2537 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfae291c] Received RESPONSE, communicated (state:ready) +peer0.org1.example.com | [2538 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2539 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [253a 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [253b 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [253c 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44296 +peer0.org1.example.com | [253d 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a17bad0 +peer0.org1.example.com | [253e 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [253f 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [2540 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [2541 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [2542 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [2543 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a1ec780, header 0xc42a17be30 +peer0.org1.example.com | [2544 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [2545 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][f5b0a7be] processing txid: f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719 +peer0.org1.example.com | [2546 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] +peer0.org1.example.com | [2547 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2548 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] +peer0.org1.example.com | [2549 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f5b0a7be] Entry chaincode: name:"qscc" +peer0.org1.example.com | [254a 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] Entry chaincode: name:"qscc" version: 1.2.0 +peer0.org1.example.com | [254b 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719,syscc=true,proposal=0xc42a1ec780,canname=qscc:1.2.0) +peer0.org1.example.com | [254c 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer0.org1.example.com | [254d 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [254e 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5b0a7be]Received message TRANSACTION from peer +peer0.org1.example.com | [254f 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5b0a7be] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [2550 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f5b0a7be] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer0.org1.example.com | [2551 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +peer0.org1.example.com | [2552 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo +peer0.org1.example.com | [2553 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5b0a7be] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [2554 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [f5b0a7be] send state message COMPLETED +peer0.org1.example.com | [2555 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f5b0a7be] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2556 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f5b0a7be] notifying Txid:f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719, channelID:businesschannel +peer0.org1.example.com | [2557 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [2558 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] Exit +peer0.org1.example.com | [2559 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [255a 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] +peer0.org1.example.com | [255b 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f5b0a7be] Exit +peer0.org1.example.com | [255c 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f5b0a7be] Entry chaincode: name:"qscc" +peer0.org1.example.com | [255d 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f5b0a7be] escc for chaincode name:"qscc" is escc +peer0.org1.example.com | [255e 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719, chaincode: qscc} +peer0.org1.example.com | [255f 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719, chaincode: qscc} +peer0.org1.example.com | [2560 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f5b0a7be] Exit +peer0.org1.example.com | [2561 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] +peer0.org1.example.com | [2562 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44296 +peer0.org1.example.com | [2563 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2564 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2565 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2566 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2567 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2568 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2569 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [256a 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [256b 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [256c 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [256d 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [256f 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [2570 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2301 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2302 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2303 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2304 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2305 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2306 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2307 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [2308 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2309 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org2.example.com | [234c 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [234d 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [234e 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [234f 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2350 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2351 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2352 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2353 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2354 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [2355 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2356 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\212\001" signature:"0D\002 >h\014\002\253\324\t\236\300\343@\021@\305\214\347Gk/\2574>U\357\010\240\323\016\353\025\2579\002 \177'\000,\352[\315\n. \rU\375;q\243\232\302]:\375\205\226hu\371\230w\023CN\302" > alive: alive: +peer0.org2.example.com | [2357 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org2.example.com | [2358 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2359 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [235a 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [235b 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [235c 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [235d 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [235e 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [235f 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2360 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2361 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2362 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2363 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2364 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2365 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2366 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2367 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2368 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2369 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [236b 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [236a 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [236c 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [236d 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [236e 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [236f 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2370 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2371 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2372 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2373 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2374 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2375 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2376 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2377 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2378 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2379 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [237a 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [237b 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [237c 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [237d 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [237e 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [237f 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2380 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2381 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2382 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2383 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2384 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2385 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2386 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2387 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2388 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [238a 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2389 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [238b 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [238c 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [238d 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [238e 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [238f 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2390 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2391 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2392 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2393 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2394 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2395 06-12 02:16:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [2396 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2397 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2398 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2399 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [239a 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [239b 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [239c 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [239d 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [239e 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [239f 06-12 02:16:02.62 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [23a0 06-12 02:16:02.62 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [23a1 06-12 02:16:02.63 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [23a2 06-12 02:16:02.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [23a3 06-12 02:16:02.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [23a4 06-12 02:16:02.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [23a5 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23a6 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [23a7 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23a8 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23a9 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23aa 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [23ab 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [23ac 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [23ad 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [23ae 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [23af 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [23b0 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [23b1 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [23b2 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23b3 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [23b4 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23b5 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23b6 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [23b7 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23b8 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23b9 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [23ba 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23bb 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23bc 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [23bd 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [23be 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [23c0 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23bf 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [23c1 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [23c2 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [23c3 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [23c4 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23c5 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [23c6 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [23c7 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23c8 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [23c9 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [23ca 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [23cb 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [23cc 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [23cd 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [23ce 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [23cf 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [23d0 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [23d1 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [23d2 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [23d3 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [23d5 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +peer0.org2.example.com | [23d6 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [23d4 06-12 02:16:04.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\243\263^+\321\225{\3139\341i\240\255C\276x\250*\004\024\345M\261\210\343\255\216\200" secret_envelope:)\272\245\2653\026\251\257\271\010\242\233z\375\364\2769" > > +peer0.org2.example.com | [23d7 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [23d8 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [23d9 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [23da 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23db 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [23dc 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [23dd 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [23de 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [23df 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23e0 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [23e1 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23e2 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [23e3 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [23e4 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [23e5 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [23e6 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [23e7 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [23e8 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [23e9 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [23ea 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [23eb 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [23ec 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [23ed 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [23ee 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [23ef 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [23f1 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [23f2 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [23f0 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > alive: alive: +peer0.org2.example.com | [23f3 06-12 02:16:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [23f4 06-12 02:16:04.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [23f5 06-12 02:16:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [23f6 06-12 02:16:04.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [23f7 06-12 02:16:04.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [23f8 06-12 02:16:04.51 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [23f9 06-12 02:16:04.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [23fa 06-12 02:16:04.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [23fb 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [23fc 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [23fd 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [23fe 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [23ff 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2401 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2402 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2400 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2403 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2404 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2405 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2406 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2407 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2408 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2409 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [240a 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [240b 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [240c 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [240d 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [240e 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [240f 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2410 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2202 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c482569] escc for chaincode name:"exp02" is escc +peer1.org1.example.com | [2203 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657, chaincode: exp02} +peer1.org1.example.com | [2204 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657, chaincode: exp02} +peer1.org1.example.com | [2205 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c482569] Exit +peer1.org1.example.com | [2206 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2c4825696a4c5ae3809b1797fbb6cadd108f3a34c5fe6e39d0ca383854926657] +peer1.org1.example.com | [2207 06-12 02:15:56.96 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:45986 +peer1.org1.example.com | [2208 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2209 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [220a 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [220b 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [220c 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [220d 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [220e 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [220f 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2210 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2211 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2212 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2213 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2214 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2215 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2216 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2217 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2218 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2219 06-12 02:15:57.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [221b 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [221c 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [221a 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [221d 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [221e 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [221f 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2221 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2220 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [2223 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2224 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2222 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [2225 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2226 06-12 02:15:57.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2227 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [2228 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [2229 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [222a 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [222b 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [222c 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [222d 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [222e 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [222f 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2231 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [2230 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2232 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2234 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2233 06-12 02:15:57.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2235 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2236 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2237 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2238 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2239 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [223a 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [223b 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [223c 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [223d 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [223e 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [223f 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2240 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2241 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2242 06-12 02:15:57.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2243 06-12 02:15:57.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2244 06-12 02:15:57.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2246 06-12 02:15:57.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2247 06-12 02:15:57.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2248 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2245 06-12 02:15:57.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2249 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [224a 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [224b 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [224c 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [224d 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [224e 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [224f 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2250 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2251 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [2252 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2254 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2255 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2256 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2253 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [2257 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2411 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2412 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [2414 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2415 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer0.org2.example.com | [2416 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2417 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2418 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2419 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [241a 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [241b 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [241c 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [241d 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [241e 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [241f 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2420 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2421 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2422 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2423 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2424 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2425 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2426 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2427 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2428 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2413 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [2429 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [242a 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [242b 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org1.example.com | [2571 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\213\001" signature:"0D\002 /o\265\n\353\226\006\251q80\\9}\313>\240\346\313\3764A\0023\344\213p\226k\371\255\264\002 o>.`Y\367\255w\222\036\256\267\237\254\037\tD\3009o\250?6\025\333\263[4\tLJ\233" secret_envelope:W\002 #\217j\231\330\305\017\311q$\3512 \346\342\274\316\361\350\233\306\343P\023\274\373\274\225\274a#\327" > > +peer0.org1.example.com | [2572 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org1.example.com | [2573 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [256e 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2574 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44298 +peer0.org1.example.com | [2575 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a266870 +peer0.org1.example.com | [2576 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer0.org1.example.com | [2577 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [2578 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +peer0.org1.example.com | [2579 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [257a 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [257b 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a1beff0, header 0xc42a266bd0 +peer0.org1.example.com | [257c 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +peer0.org1.example.com | [257d 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][b4265927] processing txid: b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4 +peer0.org1.example.com | [257e 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] +peer0.org1.example.com | [257f 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [2580 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] +peer0.org1.example.com | [2581 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][b4265927] Entry chaincode: name:"qscc" +peer0.org1.example.com | [2582 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] Entry chaincode: name:"qscc" version: 1.2.0 +peer0.org1.example.com | [2583 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4,syscc=true,proposal=0xc42a1beff0,canname=qscc:1.2.0) +peer0.org1.example.com | [2584 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +peer0.org1.example.com | [2585 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +peer0.org1.example.com | [2586 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4265927]Received message TRANSACTION from peer +peer0.org1.example.com | [2587 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b4265927] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +peer0.org1.example.com | [2588 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b4265927] Received TRANSACTION, invoking transaction on chaincode(state:ready) +peer1.org1.example.com | [2258 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2259 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [225a 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [225b 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [225c 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [225d 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [225e 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [2260 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [225f 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2262 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [2261 06-12 02:15:57.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2263 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 135 but got ts: inc_num:1528769652429776900 seq_num:134 +peer1.org1.example.com | [2264 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2265 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2266 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2267 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2268 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2269 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [226a 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [226b 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [226c 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [226d 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [226e 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [226f 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2270 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2271 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [242c 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [242d 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [242e 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [242f 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2430 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [2431 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2432 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [2433 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [2434 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2435 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2436 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2437 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2438 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2439 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [243a 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [243b 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [243c 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [243d 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [243e 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [243f 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2440 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2441 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2442 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [2443 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2444 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2445 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [230a 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [230b 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [230c 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [230d 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [230e 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [230f 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2310 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2311 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2312 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2313 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2314 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2315 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [2316 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [2317 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2319 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [231a 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [2318 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [231b 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [231c 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [231d 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [231e 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2589 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +peer0.org1.example.com | [258a 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetBlockByNumber +peer0.org1.example.com | [258b 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +peer0.org1.example.com | [258c 06-12 02:16:01.51 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=[26081] +peer0.org1.example.com | [258d 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34232], Going to peek [8] bytes +peer0.org1.example.com | [258e 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14015], placementInfo={fileNum=[0], startOffset=[26081], bytesOffset=[26083]} +peer0.org1.example.com | [258f 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4265927] Transaction completed. Sending COMPLETED +peer0.org1.example.com | [2590 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b4265927] send state message COMPLETED +peer0.org1.example.com | [2591 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b4265927] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +peer0.org1.example.com | [2592 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b4265927] notifying Txid:b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4, channelID:businesschannel +peer0.org1.example.com | [2593 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +peer0.org1.example.com | [2594 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] Exit +peer0.org1.example.com | [2595 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [2596 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] +peer0.org1.example.com | [2597 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][b4265927] Exit +peer0.org1.example.com | [2598 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b4265927] Entry chaincode: name:"qscc" +peer0.org1.example.com | [2599 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b4265927] escc for chaincode name:"qscc" is escc +peer0.org1.example.com | [259a 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4, chaincode: qscc} +peer0.org1.example.com | [259b 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4, chaincode: qscc} +peer0.org1.example.com | [259c 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b4265927] Exit +peer0.org1.example.com | [259d 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] +peer0.org1.example.com | [259e 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44298 +peer0.org1.example.com | [259f 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25a0 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25a1 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [25a2 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2272 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [2273 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2274 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2275 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2276 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2277 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2278 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [2279 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [227a 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [227b 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [227c 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [227d 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [227e 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [227f 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2280 06-12 02:15:57.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2281 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2282 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2283 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2284 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2285 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2286 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2287 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2288 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2289 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [231f 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2320 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2321 06-12 02:16:04.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2322 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [2323 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2324 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [2325 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2326 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2327 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [2328 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2329 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [232a 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [232b 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [232c 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [232d 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [232e 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [232f 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2331 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer1.org2.example.com | [2330 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\243\263^+\321\225{\3139\341i\240\255C\276x\250*\004\024\345M\261\210\343\255\216\200" > alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > alive:\370\275" > +peer0.org1.example.com | [25a3 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25a4 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25a5 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [25a6 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [25a7 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [25a8 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [25a9 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [25aa 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [25ab 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [25ac 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [25ad 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25ae 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25af 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [25b0 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [25b1 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25b2 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [25b3 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25b4 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [25b5 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25b7 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [25b6 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25b8 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25ba 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25bb 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [228a 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [228b 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [228c 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [228d 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [228e 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [228f 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2290 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2292 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2293 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2291 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2294 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2295 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2296 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2297 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2298 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2299 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [229a 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [229b 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [229c 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [229d 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [229e 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [229f 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [22a0 06-12 02:15:58.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [22a1 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [22a2 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2447 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [2446 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 142 but got ts: inc_num:1528769653227426900 seq_num:141 +peer0.org2.example.com | [2448 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2449 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [244a 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [244b 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [244c 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [244d 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [244e 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [244f 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 143 but got ts: inc_num:1528769651824440500 seq_num:142 +peer0.org2.example.com | [2450 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2452 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2453 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2451 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2455 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2456 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2457 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2458 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2459 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [245a 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [245b 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2454 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [245c 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [245d 06-12 02:16:04.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [245e 06-12 02:16:04.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [245f 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [2460 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2332 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2333 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2334 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2335 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [2336 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2337 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [2338 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2339 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [233a 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [233b 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [233c 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [233d 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [233e 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [233f 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes in aliveMembership +peer1.org2.example.com | [2340 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2341 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2342 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2343 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [2344 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [25b9 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25bc 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25bd 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25be 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [25bf 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25c0 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25c1 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25c2 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25c4 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25c5 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25c6 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25c3 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25c7 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25c8 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [25c9 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [25ca 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [25cb 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25cc 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [25cd 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25ce 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25cf 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25d0 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [25d1 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [25d2 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25d3 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25d4 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [25d5 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [25d6 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [25d7 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [25d8 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [25d9 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [25da 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [25db 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [25dc 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25dd 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25de 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [25df 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [25e0 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25e1 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [25e2 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25e3 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25e4 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25e5 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25e6 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25e7 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25e8 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25e9 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [25eb 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25ec 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [25ea 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [25ed 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25ee 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [25ef 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [25f0 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25f1 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25f2 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [25f3 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [25f4 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [25f5 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [25f6 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [25f7 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [25f8 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [25f9 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [25fa 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25fb 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [25fc 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25fd 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [25fe 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [25ff 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2600 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2601 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2602 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2603 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2604 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2605 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2606 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2607 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2608 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2609 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [260a 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [260b 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [260c 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [260d 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [260e 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [260f 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2610 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2611 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2612 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2613 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [2614 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2615 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [2616 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [2617 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2618 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [2619 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [261a 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [261b 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [261c 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [261d 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [261e 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [261f 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2620 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2621 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2622 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2623 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2624 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2625 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2626 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2627 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2628 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [2629 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [262a 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\310\1774-\370\303\303\030\300u&\033|\332?\272#\361\257\311'\311{\021\253\003'4" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\215\001" signature:"0E\002!\000\327\303s\367\n\017%^Q\310\213\"\251\247y4\277\257s\026\254\2629\014!\335(\t\021h3\326\002 ;J\36414\224DI\315\306\0279t\347D\347\214q\313\206=\366\232\224\003\"Z\247q\224s\211" > +peer0.org1.example.com | [262b 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [262c 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [262d 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [262e 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [262f 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [2631 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2630 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2632 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [2633 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2634 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2635 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2636 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2637 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2638 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2639 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [263a 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [263b 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [263c 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [263d 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [263e 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [263f 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2640 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2641 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2642 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2643 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2644 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2645 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2646 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2461 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2462 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2463 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [2464 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [2465 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [2466 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2467 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2468 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2469 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [246a 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [246b 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [246c 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [246d 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [246e 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [246f 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2470 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2471 06-12 02:16:05.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [2472 06-12 02:16:05.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2473 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [2474 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2475 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [2476 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2477 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2345 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\275\204)t\347\357pW}\"\277\002\227\032\324" secret_envelope:\206D(\026Ny}\222\030y\3103\210\221\352\317XP^\207\350\222*\177b\232D" > > +peer1.org2.example.com | [2346 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [2347 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2348 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2349 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [234a 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [234b 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [234c 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [234d 06-12 02:16:04.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [234e 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [2350 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [234f 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2353 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2352 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2354 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2351 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2355 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [2356 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [2357 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2358 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [2359 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [235a 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [235b 06-12 02:16:04.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [235c 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [235d 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [235e 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [235f 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2360 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org2.example.com | [2361 06-12 02:16:04.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org2.example.com | [2362 06-12 02:16:04.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2363 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2364 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2365 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2366 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [2367 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2368 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [2369 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [236a 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [236b 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [236c 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [236d 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [236e 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [236f 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2370 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2371 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2372 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2373 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2375 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [2374 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2376 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2478 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2479 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [247a 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [247b 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [247c 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [247d 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [247f 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [2480 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2481 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\275\204)t\347\357pW}\"\277\002\227\032\324" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\217\001" signature:"0E\002!\000\251\212\035,M\366S\300N\235\215\212\340\200\025\247\356\231\237\3324\035l=\240B\225\021\021\203\364\224\002 b<0\223R\211)\211\255\373\374\377\n\233G\267w\3201\306:l\313dQ\030\301\332\267\343{3" > alive: alive: +peer0.org2.example.com | [2482 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [2483 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [247e 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2484 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2485 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2486 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2487 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2488 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2489 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [248a 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [248b 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [248c 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [22a3 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [22a5 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [22a4 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [22a6 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [22a7 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [22a8 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [22a9 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [22aa 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes +peer1.org1.example.com | [22ab 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes +peer1.org1.example.com | [22ac 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [22ad 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [22ae 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [22af 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202bf060 env 0xc4221b3590 txn 0 +peer1.org1.example.com | [22b0 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4221b3590 +peer1.org1.example.com | [22b1 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +peer1.org1.example.com | [22b2 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +peer1.org1.example.com | [22b3 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [22b4 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +peer1.org1.example.com | [22b5 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [22b6 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [2377 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > alive: +peer1.org2.example.com | [2378 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org2.example.com | [2379 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [237a 06-12 02:16:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [237b 06-12 02:16:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +peer1.org2.example.com | [237c 06-12 02:16:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [237d 06-12 02:16:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [237f 06-12 02:16:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [237e 06-12 02:16:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2381 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2382 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2383 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2380 06-12 02:16:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2384 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2385 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2386 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2387 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2388 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2389 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [238a 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [238b 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [248d 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [248e 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [248f 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2490 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2491 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2492 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2493 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2494 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2495 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2496 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2497 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2498 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2499 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [249a 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [249b 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [249c 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [249d 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [249e 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [249f 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [24a0 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24a1 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [24a2 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24a3 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [24a4 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [24a5 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24a6 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24a7 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [24a8 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [24a9 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [24aa 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [24ab 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [24ac 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [24ad 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [24ae 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [24af 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [24b1 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [24b4 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24b2 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24b0 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24b5 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [24b6 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [24b7 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [24b8 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24b9 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [24ba 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24bb 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [24bc 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24bd 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [24be 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [238c 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [238d 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [238e 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [238f 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2390 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2391 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2392 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2393 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2394 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2395 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2396 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2397 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2398 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2399 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [239a 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [239b 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [239c 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [239d 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [239e 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [239f 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [23a0 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23a1 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [23a2 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23a3 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [23a4 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2647 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [2648 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2649 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [264a 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [264b 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [264c 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [264d 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org1.example.com | [264e 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org1.example.com | [264f 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2650 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2651 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2652 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" secret_envelope:\374\020.\257xBsC\001\"\273\002\002 \016ku\230\204\343m\301\255q\252\356\355;dU\315\276\333\245\014\341\316{X\375p\024\214\023+\010" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2653 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2654 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2655 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2656 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2657 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org1.example.com | [2658 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2659 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [265a 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [265b 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [265c 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [22b7 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42458a000, header channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +peer1.org1.example.com | [22b8 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +peer1.org1.example.com | [22b9 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +peer1.org1.example.com | [22ba 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +peer1.org1.example.com | [22bb 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org1.example.com | [22bc 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +peer1.org1.example.com | [22bd 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +peer1.org1.example.com | [22be 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc42457ec00 +peer1.org1.example.com | [22bf 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [bf53094e-6971-4f20-9e89-1505ce3cd41e] +peer1.org1.example.com | [22c0 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org1.example.com | [22c1 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [bf53094e-6971-4f20-9e89-1505ce3cd41e] +peer1.org1.example.com | [22c2 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin +peer1.org1.example.com | [22c3 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +peer1.org1.example.com | [22c4 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: +peer1.org1.example.com | [22c5 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 appears to be valid +peer1.org1.example.com | [22c6 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc42457ec00 +peer1.org1.example.com | [22c7 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202bf060 env 0xc4221b3590 txn 0 +peer1.org1.example.com | [22c8 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [22c9 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [22ca 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +peer1.org1.example.com | [22cb 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [22cc 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +peer1.org1.example.com | [22cd 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org1.example.com | [22ce 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +peer1.org1.example.com | [22cf 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +peer1.org1.example.com | [22d0 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer1.org1.example.com | [22d1 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +peer1.org1.example.com | [22d2 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +peer1.org1.example.com | [22d3 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +peer1.org2.example.com | [23a5 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23a6 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23a7 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [23a8 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [23a9 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [23aa 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [23ab 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [23ac 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [23ad 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [23ae 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [23af 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [23b0 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [23b1 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23b2 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23b4 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [23b3 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [23b5 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23b6 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23b7 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [23b8 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [23b9 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23ba 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [23bb 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23bc 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [23bd 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [265d 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [265e 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [265f 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2660 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [2661 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2662 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [2663 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2664 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [2665 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2666 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2667 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2668 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2669 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [266a 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [266b 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [266c 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [266d 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [266e 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +peer0.org1.example.com | [266f 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes +peer0.org1.example.com | [2670 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2671 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes]} +peer0.org1.example.com | [2672 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2673 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2674 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [24b3 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24bf 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [24c0 06-12 02:16:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [24c1 06-12 02:16:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [24c2 06-12 02:16:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [24c4 06-12 02:16:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [24c3 06-12 02:16:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24c5 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24c6 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [24c7 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [24c8 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24c9 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [24ca 06-12 02:16:07.63 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [24cb 06-12 02:16:07.63 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [24cc 06-12 02:16:07.63 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [24cd 06-12 02:16:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [24ce 06-12 02:16:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [24cf 06-12 02:16:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [24d0 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [24d1 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [24d2 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [22d4 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +peer1.org1.example.com | [22d5 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] marked as valid by state validator +peer1.org1.example.com | [22d6 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [22d7 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [22d8 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [22d9 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +peer1.org1.example.com | [22da 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] +peer1.org1.example.com | [22db 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x12, 0x94, 0xe5, 0x39, 0xf6, 0xe8, 0xbe, 0xfb, 0xa0, 0xcc, 0x5d, 0x8, 0x16, 0x74, 0xa, 0xdc, 0xf, 0x11, 0x32, 0x37, 0x9b, 0x1e, 0x59, 0x66, 0x4, 0xb5, 0xd8, 0x4c, 0xce, 0xe8, 0xdd, 0x43} txOffsets= +peer1.org1.example.com | txId=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 locPointer=offset=70, bytesLength=2915 +peer1.org1.example.com | ] +peer1.org1.example.com | [22dc 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to index +peer1.org1.example.com | [22dd 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx number:[0] ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to blockNumTranNum index +peer1.org1.example.com | [22de 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] +peer1.org1.example.com | [22df 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +peer1.org1.example.com | [22e0 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] +peer1.org1.example.com | [22e1 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +peer1.org1.example.com | [22e2 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +peer1.org1.example.com | [22e3 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [22e4 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org1.example.com | [22e5 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [22e6 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +peer1.org1.example.com | [22e7 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +peer1.org1.example.com | [22e8 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [22e9 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [7] +peer1.org1.example.com | [22ea 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +peer1.org1.example.com | [22eb 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +peer1.org1.example.com | [22ec 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] +peer1.org1.example.com | [22ed 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [7] +peer0.org1.example.com | [2675 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2677 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2678 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2679 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [267a 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [267b 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 141 but got ts: inc_num:1528769653227426900 seq_num:140 +peer0.org1.example.com | [267c 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [267d 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [267e 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [267f 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2680 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2681 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2682 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2676 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [2683 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2684 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2685 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2686 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2687 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2688 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2689 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [268a 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [268b 06-12 02:16:04.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [268c 06-12 02:16:04.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [268e 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 142 but got ts: inc_num:1528769651824440500 seq_num:141 +peer0.org1.example.com | [268f 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [24d3 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [24d4 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [24d5 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes +peer0.org2.example.com | [24d6 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [24d7 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [24d8 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [24d9 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [24da 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [24db 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [24dc 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [24dd 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [24de 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [24df 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [24e0 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [24e1 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > +peer0.org2.example.com | [24e2 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer0.org2.example.com | [24e3 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [24e4 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24e5 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [24e6 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [22ee 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +peer1.org1.example.com | [22ef 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [22f0 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 +peer1.org1.example.com | [22f1 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [22f2 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [22f3 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [22f4 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [22f5 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [22f6 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [22f7 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [22f8 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [22f9 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [22fa 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [22fb 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [22fc 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [22fd 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [22fe 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [22ff 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2300 06-12 02:16:00.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [2301 06-12 02:16:00.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [2302 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2304 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [2305 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2303 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +peer1.org1.example.com | [2306 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [2690 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2691 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [268d 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2692 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [2693 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [2694 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2695 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2696 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2697 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2698 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2699 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [269a 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [269b 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [269c 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [269d 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes in aliveMembership +peer0.org1.example.com | [269e 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [269f 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [26a0 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [26a1 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [26a2 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [26a3 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [26a4 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [26a5 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26a6 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [23be 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23bf 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [23c0 06-12 02:16:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [23c1 06-12 02:16:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [23c2 06-12 02:16:07.64 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [23c3 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [23c4 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [23c5 06-12 02:16:08.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [23c6 06-12 02:16:08.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [23c7 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [23c8 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [23c9 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [23cb 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [23cc 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [23cd 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [23ce 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [23cf 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [23d0 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [23d1 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [23d2 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [24e7 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24e8 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24e9 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [24ea 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [24ec 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [24eb 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [24ed 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [24ee 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [24ef 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [24f1 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [24f0 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [24f2 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [24f3 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [24f4 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [24f5 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [24f6 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [24f7 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [24f8 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [24f9 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [24fa 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [24fb 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [24fc 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [24fd 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2307 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [2308 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2309 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [230a 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [230b 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [230c 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [230d 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [230e 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [230f 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2310 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2311 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2312 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2313 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2314 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2316 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [2317 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2318 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\207\001" signature:"0D\002 ~\207\222_\327\377\363\365N\005a:\177@\232\260u\215c\347\364\204}\356\232d\n+\r\217\373\207\002 \t\014\237X\304\377,#\230\215\031J8\361v`y\25124r\344\344\204)\322\020\225\266*\342\311" > alive: alive: alive: +peer1.org1.example.com | [2319 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [231a 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2315 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [231b 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [231c 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [231d 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [231e 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [231f 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2320 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2321 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2322 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [2323 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2324 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [2325 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [2326 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [2327 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 6 2 1 3] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [2328 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2329 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [232a 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [232b 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [232c 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [232d 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [232e 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [232f 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2330 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [2331 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [2332 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2333 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [2334 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org1.example.com | [2336 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [23d3 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [23d4 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [23d5 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [23d6 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [23d7 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [23d8 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [23d9 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [23da 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [23db 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [23dc 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [23dd 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [23de 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [23df 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [23e0 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [23e1 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [23e2 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [23ca 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org2.example.com | [23e4 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [23e3 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 144 but got ts: inc_num:1528769653227426900 seq_num:143 +peer1.org2.example.com | [23e5 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [23e6 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [23e7 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [23e8 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [23e9 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [23ea 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [23eb 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [23ec 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [23ed 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [23ee 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [23ef 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [23f0 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [23f1 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [23f2 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [23f3 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [23f4 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [23f5 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [23f6 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [23f7 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [23f8 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [23f9 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [23fa 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [23ff 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [23fb 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [23fc 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2400 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +peer1.org2.example.com | [2401 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [2402 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [2403 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2404 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [23fe 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2405 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2406 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2407 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [23fd 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2408 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2409 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [240b 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [240c 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [240a 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [240d 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [240e 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [240f 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2410 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2411 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2412 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2413 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2414 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2415 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2416 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2417 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2418 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2419 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [241a 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [241b 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [241c 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [241e 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [241f 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [26a7 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [26a8 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26a9 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [26aa 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [26ab 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [26ac 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [26ad 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [26ae 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [26af 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [26b0 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [26b1 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [26b2 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [26b3 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [26b4 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [26b5 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:m_\367^\03547\005\251\275lWq\247\211Vw\014\310\333=\244" > alive: alive:\370\275" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\217\001" signature:"0E\002!\000\251\212\035,M\366S\300N\235\215\212\340\200\025\247\356\231\237\3324\035l=\240B\225\021\021\203\364\224\002 b<0\223R\211)\211\255\373\374\377\n\233G\267w\3201\306:l\313dQ\030\301\332\267\343{3" > +peer0.org1.example.com | [26b6 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [26b7 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [26b8 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [26b9 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [26ba 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26bb 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [26bc 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [26bd 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26be 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes +peer0.org1.example.com | [26bf 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes +peer0.org1.example.com | [26c0 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [26c1 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26c2 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [26c3 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26c4 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [26c5 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [26c6 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [26c7 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [26c8 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [26c9 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [26ca 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [26cb 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [26cc 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [26cd 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [26ce 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [26cf 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [26d1 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [26d2 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [26d0 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\220\001" signature:"0E\002!\000\207t\257\240\355D\346e\274mgb\252\275 l\231\234\216)\023M\322.\305;\032&|3\245\355\002 T\n\027N:\262\247\240\243\341g\276|\207\370\017\205A1\363g+\256\320\r\036]\227\2057\326\022" secret_envelope: > +peer0.org1.example.com | [26d3 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26d4 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26d5 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [26d6 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26d7 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26d8 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26d9 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [26da 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [26db 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [26dc 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [26dd 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [26de 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [26df 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [26e0 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [26e1 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [26e2 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [26e3 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26e4 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26e5 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [26e6 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [26e7 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26e8 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [26e9 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26ea 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26eb 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [26ec 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26ed 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26ee 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [26ef 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [26f0 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26f1 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [26f2 06-12 02:16:07.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [26f3 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [26f4 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [26f6 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [26f7 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26f8 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26f9 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [26fa 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [26f5 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [26fb 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [26fc 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [26fd 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [26fe 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [26ff 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2700 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [2701 06-12 02:16:07.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2702 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2703 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2704 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2705 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2706 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2707 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2708 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2709 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [270a 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [270b 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [270c 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [270d 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [270e 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [270f 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2710 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2711 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2712 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2713 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2714 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2715 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2716 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2717 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2718 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2719 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [271a 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [271b 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [271c 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [271d 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [271e 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [271f 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2720 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2721 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [2722 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2723 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2724 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2725 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2726 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2727 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2728 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [2729 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [272a 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [272b 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [272c 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [272d 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [272e 06-12 02:16:08.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [272f 06-12 02:16:08.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2730 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2731 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2732 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2733 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2734 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2735 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2736 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2737 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2738 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2739 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [273a 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [273b 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [273c 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [273d 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [273e 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [273f 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\222\001" signature:"0D\002 \035\215\373\250\372\270\t\301\240BO\253/\247-'a~\010\300\302i\256Mrvy\377s+\330\312\002 H\302\250\344W0\037\364Tv,\237\003F\010\221R@\027.\375\356\347\263\347\233,x=\204\"\246" > +peer0.org1.example.com | [2740 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [2741 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2742 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [2743 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2744 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [2745 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2746 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [2747 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2748 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [2749 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [274a 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [274b 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [274c 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [274d 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [274e 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [274f 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2750 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2751 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2752 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2753 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2755 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2756 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2757 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2758 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2759 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [275a 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [275b 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [275c 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2754 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [275d 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [275e 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [275f 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2760 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2761 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2762 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2763 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2764 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2765 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2766 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2767 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2768 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2769 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [276a 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer0.org1.example.com | [276b 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer0.org1.example.com | [276c 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [276d 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [276e 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [276f 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2770 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2771 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2772 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2773 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2774 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2776 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2777 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2778 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2779 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [277a 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [277b 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [277c 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [277d 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [277e 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [277f 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2780 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2781 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2782 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2783 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2784 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2785 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2786 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2787 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2788 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [2789 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [278a 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [278b 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [278c 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [278d 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [278e 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [278f 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [2790 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2791 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [2792 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2793 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2794 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2795 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2796 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2797 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2775 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2798 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2799 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [279a 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [279b 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [279c 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [279d 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [279e 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [279f 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [27a0 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [27a1 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [27a2 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [27a3 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [27a4 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [27a5 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [27a6 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [27a7 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [27a8 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [27a9 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [27aa 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [27ab 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [27ac 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [27ad 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [27ae 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org1.example.com | [27af 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [27b0 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [27b1 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27b2 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [27b3 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27b4 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [27b5 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [27b6 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [27b7 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [27b8 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [27b9 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [27ba 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [27bb 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 148 but got ts: inc_num:1528769652429776900 seq_num:147 +peer0.org1.example.com | [27bc 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [27bd 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2335 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2337 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2339 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [233b 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [2338 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [233c 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [233a 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [233d 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [233e 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [233f 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2340 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2341 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2342 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2343 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2344 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2345 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2346 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2347 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2348 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2349 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [24fe 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [24ff 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2500 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2501 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2502 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2503 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2504 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2505 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2506 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2507 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [2509 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [250a 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [250b 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [250c 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [250d 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [250e 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [250f 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2510 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2511 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2512 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2513 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [2514 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [234a 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [234b 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [234c 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [234d 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [234e 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [234f 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2350 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > alive: > +peer1.org1.example.com | [2351 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [2352 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2353 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [2354 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2355 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [2356 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2357 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org1.example.com | [2358 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org1.example.com | [2359 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org1.example.com | [235a 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [235b 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [235c 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [235d 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [235e 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [235f 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2360 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [241d 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2420 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2421 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [2422 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [2423 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2424 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2425 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2426 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [2427 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2428 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [2429 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [242a 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [242b 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [242c 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [242d 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [242e 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [242f 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [2430 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2431 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2432 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2433 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2434 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2435 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2436 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2437 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2438 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [2439 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [243a 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [243b 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [243c 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [243d 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [243e 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [243f 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2440 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2441 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2442 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2443 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2444 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [2445 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2361 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2362 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2363 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2364 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2365 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2366 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2367 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2368 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2369 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [236a 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [236b 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [236c 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [236d 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [236e 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [236f 06-12 02:16:00.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > alive: alive:h\213\362\006\265\206\177\002 ~\032!D\252\233\235\322\205\234\223\336\304\323\233\220\303\216\260@\td_\027I\237O\341\010m\2647" > +peer1.org1.example.com | [2370 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [2371 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2372 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2373 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2374 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27be 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2515 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > alive: alive: +peer0.org2.example.com | [2516 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [2517 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2508 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2518 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2519 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [251a 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [251b 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [251c 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [251d 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [251e 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [251f 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2520 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [2521 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2522 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [2524 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2523 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2526 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2527 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2528 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [2529 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [252a 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [252b 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [2446 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > alive: alive: alive: +peer1.org2.example.com | [2447 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [2448 06-12 02:16:08.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2449 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [244b 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [244c 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [244d 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [244a 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [244e 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [244f 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2450 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2451 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [2452 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2453 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2454 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2455 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2456 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2457 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2458 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2459 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [245a 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2375 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2376 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2377 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2378 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2379 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [237a 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [237b 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [237c 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [237d 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [237e 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [237f 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2380 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [2381 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2382 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [2383 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2384 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2385 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2386 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2387 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2388 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2389 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [238a 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [238b 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [238c 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [238d 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27bf 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [27c0 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [27c1 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [27c2 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [27c3 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [27c4 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [27c5 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [27c6 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [27c7 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [27c8 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [27ca 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [27cb 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [27c9 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27cc 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [27cd 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [27ce 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [27cf 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [27d0 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27d1 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [27d2 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [27d4 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [245b 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [245c 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [245d 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [245e 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [245f 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [2460 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2461 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer1.org2.example.com | [2462 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org2.example.com | [2463 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2464 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2465 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2466 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [2467 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [2468 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 6 1 2] to 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [2469 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [246a 06-12 02:16:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [246b 06-12 02:16:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [246d 06-12 02:16:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [246e 06-12 02:16:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [246f 06-12 02:16:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2470 06-12 02:16:08.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [2471 06-12 02:16:08.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [246c 06-12 02:16:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2472 06-12 02:16:08.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2473 06-12 02:16:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2474 06-12 02:16:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org2.example.com | [2475 06-12 02:16:08.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2476 06-12 02:16:08.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [238e 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [238f 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2390 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2391 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2392 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [2393 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [2394 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2395 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2396 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2397 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2398 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2399 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [239a 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [239b 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [27d5 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [27d6 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [27d7 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [27d8 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [27d9 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [27da 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [27db 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [27dc 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [27dd 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [27de 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [27df 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [27e0 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\224\001" signature:"0E\002!\000\234\203\300\333\321?=\356\352\25238\342\333F\211\353\306\227\230A\273\025\271\003\346_\"\210\367\311\344\002 %\306\241}\322+\227\333\343\243\023 h\016Q8\323\252\332\373O{\321\222\272\355\241\264I\240+\017" > +peer0.org1.example.com | [27e1 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [27e2 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [27d3 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27e3 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [27e4 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [27e5 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27e6 06-12 02:16:08.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [27e7 06-12 02:16:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [27e8 06-12 02:16:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27e9 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [27ea 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [27eb 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [27ec 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27ed 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [27ee 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [27ef 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [27f0 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [27f1 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [27f2 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [27f3 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [27f4 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [27f5 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [27f6 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [27f7 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [27f8 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [27f9 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [27fa 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\225\001" signature:"0D\002 h4E\213\224\215\345\342*L\351\305\361Q\261:h\253rBN\177\203\377\3466\266*\323\266-\315\002 }[\360\305\232\236u[\311\353\324N<\264\311L\357+\244ob0\223\231\260\212\217\255\335i61" secret_envelope: > +peer0.org1.example.com | [27fb 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer0.org1.example.com | [27fc 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [27fd 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [27fe 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] +peer0.org1.example.com | [27ff 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] +peer0.org1.example.com | [2800 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org1.example.com | [2801 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [239c 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [239d 06-12 02:16:01.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [239e 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [239f 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [23a0 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [23a1 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [23a3 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23a2 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [23a4 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [23a5 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23a6 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23a7 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [23a8 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23a9 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23aa 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [23ab 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23ac 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23ad 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [23ae 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [23af 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [23b0 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [23b1 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [23b2 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [23b3 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [23b4 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23b5 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [23b6 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [23b7 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [23b9 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [23ba 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [23b8 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23bb 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [23bc 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 139 but got ts: inc_num:1528769651824440500 seq_num:138 +peer1.org1.example.com | [23bd 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23be 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [23bf 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [23c0 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [23c1 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [23c2 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [23c3 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [23c4 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [23c5 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23c6 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23c7 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [23c8 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23c9 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23ca 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23cb 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [23cc 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [23cd 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2802 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4233d0b20 env 0xc42350b320 txn 0 +peer0.org1.example.com | [2803 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42350b320 +peer0.org1.example.com | [2804 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +peer0.org1.example.com | [2805 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org1.example.com | [2806 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org1.example.com | [2807 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer0.org1.example.com | [2808 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org1.example.com | [2809 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org1.example.com | [280a 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42385aa80, header channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +peer0.org1.example.com | [280b 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org1.example.com | [280c 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [280d 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [280e 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [280f 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [2810 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [2811 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [2812 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [2813 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [2814 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [2815 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [2816 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [2817 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [2818 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer0.org1.example.com | [281a 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer0.org1.example.com | [281b 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org1.example.com | [281c 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org2.example.com | [2525 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [252c 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [252d 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [252e 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [252f 06-12 02:16:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [2530 06-12 02:16:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2531 06-12 02:16:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [2532 06-12 02:16:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [2533 06-12 02:16:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2534 06-12 02:16:08.54 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2535 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2536 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2537 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2538 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2539 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [253a 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [253b 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [253c 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2477 06-12 02:16:08.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [2478 06-12 02:16:08.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2479 06-12 02:16:08.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [247a 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [247b 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [247c 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org2.example.com | [247d 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org2.example.com | [247e 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [247f 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2480 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2481 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2482 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [2483 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2484 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2485 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2486 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2487 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2488 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2489 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [248a 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [248b 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [248c 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [248d 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [248e 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [248f 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2491 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [2490 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2492 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2493 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > alive: +peer1.org2.example.com | [2494 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [2495 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2496 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56484 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes +peer1.org2.example.com | [2497 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2498 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org2.example.com | [2499 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org2.example.com | [249a 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc424bc6560 env 0xc424b31ec0 txn 0 +peer1.org2.example.com | [249b 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424b31ec0 +peer1.org2.example.com | [249c 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +peer1.org2.example.com | [249d 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org2.example.com | [249e 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org2.example.com | [249f 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer1.org2.example.com | [24a0 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org2.example.com | [24a1 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org2.example.com | [24a2 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc424c24000, header channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +peer1.org2.example.com | [24a3 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org2.example.com | [24a4 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [24a5 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [24a6 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [24a7 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [24a8 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [24a9 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [24aa 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [24ab 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [24ac 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [24ad 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [24ae 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [24af 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer1.org2.example.com | [24b0 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer1.org2.example.com | [24b1 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer1.org2.example.com | [24b2 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [24b3 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer1.org2.example.com | [24b4 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [24b5 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org2.example.com | [24b6 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [24b7 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [24b8 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [24b9 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer1.org2.example.com | [24ba 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +peer1.org2.example.com | [24bb 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org2.example.com | [253d 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [253e 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [253f 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [2540 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2541 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2542 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2544 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2545 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2546 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2547 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2548 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2549 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [254a 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2543 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [254b 06-12 02:16:08.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [254c 06-12 02:16:08.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [254d 06-12 02:16:08.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [254e 06-12 02:16:08.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [254f 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2550 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2551 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2552 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2553 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2554 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2555 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2556 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2557 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2558 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2559 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [255a 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [255b 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [255c 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [255d 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [255e 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [255f 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2560 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2561 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2562 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2563 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2566 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org2.example.com | [2564 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [2567 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [2568 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2569 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [256a 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2565 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [256c 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [256d 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [256e 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [256f 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2570 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2571 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2572 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2573 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 148 but got ts: inc_num:1528769652088169500 seq_num:147 +peer0.org2.example.com | [2574 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2575 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [256b 06-12 02:16:08.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2577 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org2.example.com | [2576 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2578 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 147 but got ts: inc_num:1528769651824440500 seq_num:146 +peer0.org2.example.com | [2579 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [257a 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [257b 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [257d 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [257e 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [257f 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2580 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2581 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2582 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2583 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2584 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org2.example.com | [2585 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2586 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [257c 06-12 02:16:08.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [2588 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2589 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [2587 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [258a 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [258c 06-12 02:16:08.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [258d 06-12 02:16:08.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:37338 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [258e 06-12 02:16:08.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [258f 06-12 02:16:08.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org2.example.com | [258b 06-12 02:16:08.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [2590 06-12 02:16:08.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2591 06-12 02:16:08.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [2592 06-12 02:16:08.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2593 06-12 02:16:08.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2594 06-12 02:16:08.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2595 06-12 02:16:08.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2596 06-12 02:16:08.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2597 06-12 02:16:08.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2598 06-12 02:16:08.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2599 06-12 02:16:08.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [259a 06-12 02:16:08.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer0.org2.example.com | [259b 06-12 02:16:08.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [259c 06-12 02:16:08.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [259d 06-12 02:16:08.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [259e 06-12 02:16:08.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [259f 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [25a0 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [25a1 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [24bc 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer1.org2.example.com | [24bd 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +peer1.org2.example.com | [24be 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +peer1.org2.example.com | [24bf 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +peer1.org2.example.com | [24c0 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [24c1 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +peer1.org2.example.com | [24c2 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24c3 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [24c4 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24c5 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24c6 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24c7 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org2.example.com | [24c8 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [24c9 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24ca 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24cb 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [24cc 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [24cd 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24ce 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24cf 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24d0 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24d1 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [24d2 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org2.example.com | [24d3 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [23ce 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [23cf 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [23d0 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [23d1 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23d2 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [23d3 06-12 02:16:01.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [23d4 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23d5 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [23d6 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [23d7 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23d8 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23d9 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [23da 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [23db 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [23dc 06-12 02:16:01.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [23dd 06-12 02:16:01.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [23de 06-12 02:16:01.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [23df 06-12 02:16:01.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [23e0 06-12 02:16:01.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23e1 06-12 02:16:01.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [23e2 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23e3 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [23e4 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [23e5 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23e6 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23e7 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [23e8 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [23e9 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [23ea 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [23eb 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [23ec 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [23ed 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [23ee 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [23ef 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [23f1 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [23f2 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23f3 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23f4 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [23f0 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23f6 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23f7 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [23f8 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [23f9 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23fa 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [23f5 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [23fb 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23fc 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [23fd 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [23fe 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [23ff 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2400 06-12 02:16:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2401 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2402 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2403 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2404 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2405 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2406 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2407 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2408 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2409 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [240a 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [240b 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [240c 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [240d 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [240e 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [240f 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2410 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2411 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2412 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2413 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2414 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2415 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org1.example.com | [2416 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [2417 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [2418 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2419 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [241a 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [241b 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [241c 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [241d 06-12 02:16:02.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [241e 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [241f 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2420 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2421 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2422 06-12 02:16:02.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2423 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [2424 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [2425 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2426 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [2427 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2428 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2429 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [242a 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [242b 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [242c 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [242d 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [242e 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [242f 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2430 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2431 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2432 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2433 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2434 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2435 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2436 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2437 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2438 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2439 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [243a 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [243b 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [243c 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [243d 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [243e 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [243f 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2440 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2441 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2442 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2443 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2444 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2445 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2446 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [2447 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2448 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2449 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [244a 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [244b 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [244c 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [244d 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [244e 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [244f 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2450 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2451 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2452 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2453 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2454 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2455 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [2456 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2457 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2458 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2459 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [245a 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [245b 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [245c 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [245d 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [245e 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [245f 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [2460 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2461 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\310\1774-\370\303\303\030\300u&\033|\332?\272#\361\257\311'\311{\021\253\003'4" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\214\001" signature:"0E\002!\000\271\2122-W\033B\355\230\264t\000\334\242\377\026\365\205\206\203\344\262I\307\226\301\271\254\341E{\204\002 \0227,8\367c\216\343\357\356\300\002\360r\256\373\0147\357\202\205\004%\275h\306*\274\332\362\3222" > alive: alive: +peer1.org1.example.com | [2462 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [2463 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2464 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2465 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2466 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2467 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [2468 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2469 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [246a 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [246b 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [246c 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [246d 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [246e 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [246f 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [2470 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 1 3 4 5 6] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [2471 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2472 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [2473 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2474 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2475 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2476 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2477 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2478 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2479 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [247a 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [247b 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [247c 06-12 02:16:04.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [247d 06-12 02:16:04.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [247e 06-12 02:16:04.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [247f 06-12 02:16:04.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [2480 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2481 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" secret_envelope:\374\020.\257xBsC\001\"\273\002\002 \016ku\230\204\343m\301\255q\252\356\355;dU\315\276\333\245\014\341\316{X\375p\024\214\023+\010" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [2482 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" secret_envelope:\374\020.\257xBsC\001\"\273\002\002 \016ku\230\204\343m\301\255q\252\356\355;dU\315\276\333\245\014\341\316{X\375p\024\214\023+\010" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [2483 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2484 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" secret_envelope:\374\020.\257xBsC\001\"\273\002\002 \016ku\230\204\343m\301\255q\252\356\355;dU\315\276\333\245\014\341\316{X\375p\024\214\023+\010" > > > , Envelope: 271 bytes, Signature: 0 bytes +peer1.org1.example.com | [2485 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [2486 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2487 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [2488 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2489 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [248a 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [248b 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [248c 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [248d 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [248e 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [248f 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2490 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" secret_envelope:\374\020.\257xBsC\001\"\273\002\002 \016ku\230\204\343m\301\255q\252\356\355;dU\315\276\333\245\014\341\316{X\375p\024\214\023+\010" > > alive:m_\367^\03547\005\251\275lWq\247\211Vw\014\310\333=\244" secret_envelope: > +peer1.org1.example.com | [2491 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org1.example.com | [2492 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2493 06-12 02:16:04.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [2494 06-12 02:16:04.43 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2495 06-12 02:16:04.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [2496 06-12 02:16:04.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2497 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org1.example.com | [2498 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org1.example.com | [2499 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +peer1.org1.example.com | [249a 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [249b 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [249c 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [249d 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [249e 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [249f 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24a0 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [24a1 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [24a2 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24a3 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [24a4 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [24a5 06-12 02:16:04.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [24a6 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [24a7 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [24a8 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [24a9 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [24aa 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [24ab 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [24ac 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [24ad 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [24ae 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [24af 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > alive: alive: alive:\361\240\377\004\240\236\242\000\203\375F\276\313\021?\260AS\312\221\347\017s\267\037\206\370\260" > +peer1.org1.example.com | [24b0 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [24b1 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [24b2 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [24b3 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [24b4 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24b5 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [24b6 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24b7 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [24b8 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [24b9 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [24ba 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [24bb 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [24bd 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [24bc 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [24be 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [24bf 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [24c0 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes +peer1.org1.example.com | [24c1 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [24c2 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [24c3 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [24c4 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [24c5 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24c6 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes +peer1.org1.example.com | [24c7 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes +peer1.org1.example.com | [24c8 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes +peer1.org1.example.com | [24c9 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24ca 06-12 02:16:05.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [24cb 06-12 02:16:05.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [24cc 06-12 02:16:05.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [24cd 06-12 02:16:05.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24ce 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [24cf 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [24d0 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [24d1 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [24d2 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [24d3 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [24d4 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [24d5 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [24d6 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [24d7 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [24d8 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24d9 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +peer1.org1.example.com | [24da 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [24db 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [24dc 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [24dd 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [24de 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [24df 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [24e0 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [24e1 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [24e2 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [24e3 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [24e4 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [24e5 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [24e6 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [24e7 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [24e8 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [24e9 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [24ea 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [24eb 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [24ec 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [24ed 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [24ee 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [24ef 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [24f0 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [24f1 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [24f3 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [24f2 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [24f4 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [24f5 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [24f6 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [24f7 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [24f8 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [24f9 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [24fa 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [24fb 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [24fc 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [24fd 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [24fe 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [24ff 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2500 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [2501 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2502 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2503 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2504 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 144 but got ts: inc_num:1528769651824440500 seq_num:143 +peer1.org1.example.com | [2505 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2506 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2507 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2508 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 144 but got ts: inc_num:1528769652088169500 seq_num:143 +peer1.org1.example.com | [2509 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [250a 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [250b 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [250c 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [250d 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [250e 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [250f 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2510 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2511 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2512 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2513 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2514 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2515 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2516 06-12 02:16:05.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2517 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2518 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2519 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [251a 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [251b 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [251c 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [251d 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [251e 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [251f 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2520 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2521 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2522 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2523 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2524 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2525 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2527 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2528 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2526 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2819 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [281e 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes +peer0.org1.example.com | [281d 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [281f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [2820 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [2821 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [2822 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [2823 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +peer0.org1.example.com | [2824 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org1.example.com | [2825 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [2826 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +peer0.org1.example.com | [2827 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org1.example.com | [2828 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer0.org1.example.com | [2829 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +peer0.org1.example.com | [282a 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [282b 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org1.example.com | [282c 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [282d 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [282e 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [25a2 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [6 1 2 3 4 5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [25a3 06-12 02:16:08.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [25a4 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [25a5 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [25a6 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [25a7 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [25a8 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [25a9 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [25aa 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [25ab 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [25ac 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [25ad 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [25ae 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [25af 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [25b0 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [25b1 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [25b2 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [25b3 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [25b4 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [25b5 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [24d4 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org2.example.com | [24d5 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org2.example.com | [24d6 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24d7 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org2.example.com | [24d8 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org2.example.com | [24d9 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org2.example.com | [24da 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org2.example.com | [24db 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org2.example.com | [24dc 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org2.example.com | [24dd 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [24de 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org2.example.com | [24df 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org2.example.com | [24e0 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [24e1 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [24e2 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [24e3 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [24e4 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [24e5 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer1.org2.example.com | [24e6 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer1.org2.example.com | [24e7 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [24e8 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [24e9 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [24ea 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [24eb 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org2.example.com | [24ec 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org2.example.com | [24ed 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [24ee 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org2.example.com | [24ef 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [24f0 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [24f1 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org2.example.com | [24f2 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org2.example.com | [24f3 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org2.example.com | [24f4 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org2.example.com | [24f5 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org2.example.com | [24f6 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org2.example.com | [24f7 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org2.example.com | [24f8 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org2.example.com | [24f9 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org2.example.com | [24fa 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org2.example.com | [24fb 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org2.example.com | [24fc 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org2.example.com | [24fd 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org2.example.com | [24fe 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org2.example.com | [24ff 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org2.example.com | [2500 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org2.example.com | [2501 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org2.example.com | [2502 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org2.example.com | [2503 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org2.example.com | [2504 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org2.example.com | [2505 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer1.org2.example.com | [2506 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer1.org2.example.com | [2507 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer1.org2.example.com | [2508 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer1.org2.example.com | [2509 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer1.org2.example.com | [250a 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org2.example.com | [250b 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org2.example.com | [250c 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org2.example.com | [250d 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org2.example.com | [250e 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org2.example.com | [250f 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org2.example.com | [2510 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [25b6 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\224\001" signature:"0E\002!\000\234\203\300\333\321?=\356\352\25238\342\333F\211\353\306\227\230A\273\025\271\003\346_\"\210\367\311\344\002 %\306\241}\322+\227\333\343\243\023 h\016Q8\323\252\332\373O{\321\222\272\355\241\264I\240+\017" > alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive: +peer0.org2.example.com | [25b7 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org2.example.com | [25b8 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [25b9 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] +peer0.org2.example.com | [25ba 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] +peer0.org2.example.com | [25bb 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer0.org2.example.com | [25bc 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer0.org2.example.com | [25bd 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4221abba0 env 0xc4224245a0 txn 0 +peer0.org2.example.com | [25be 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4224245a0 +peer0.org2.example.com | [25bf 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +peer0.org2.example.com | [25c0 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer0.org2.example.com | [25c1 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer0.org2.example.com | [25c2 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer0.org2.example.com | [25c3 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer0.org2.example.com | [25c4 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer0.org2.example.com | [25c5 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc423a5ea80, header channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +peer0.org2.example.com | [25c6 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer0.org2.example.com | [25c7 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [25c8 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [25c9 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [25ca 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [25cb 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [25cc 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [25cd 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [25ce 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [25cf 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [25d0 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [2529 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [252a 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [252b 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [252c 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [252d 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [252e 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [252f 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2530 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2531 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2532 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2533 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2534 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2535 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2536 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2537 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2538 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2539 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [253a 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [253b 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [253c 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [253d 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [253e 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [253f 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2540 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2541 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2542 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2543 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [282f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2830 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2831 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org1.example.com | [2832 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [2833 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2834 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2835 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [2836 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [2837 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2838 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2839 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [283a 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [283b 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [283c 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org1.example.com | [283d 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org1.example.com | [283e 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org1.example.com | [283f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2840 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org1.example.com | [2841 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org1.example.com | [2842 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org1.example.com | [2843 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org1.example.com | [2844 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org1.example.com | [2845 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org1.example.com | [2846 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org1.example.com | [2847 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [2848 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org1.example.com | [2849 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org1.example.com | [284a 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [284b 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org2.example.com | [2511 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org2.example.com | [2512 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org2.example.com | [2513 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org2.example.com | [2514 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org2.example.com | [2515 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org2.example.com | [2516 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org2.example.com | [2517 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org2.example.com | [2518 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org2.example.com | [2519 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org2.example.com | [251a 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org2.example.com | [251b 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org2.example.com | [251c 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org2.example.com | [251d 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org2.example.com | [251e 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org2.example.com | [251f 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org2.example.com | [2520 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org2.example.com | [2521 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org2.example.com | [2522 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org2.example.com | [2523 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org2.example.com | [2524 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [2525 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org2.example.com | [2526 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org2.example.com | [2527 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org2.example.com | [2528 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org2.example.com | [2529 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org2.example.com | [252a 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org2.example.com | [252b 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org2.example.com | [252c 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org2.example.com | [252d 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org2.example.com | [252e 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org2.example.com | [252f 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org2.example.com | [2530 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org2.example.com | [2531 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org2.example.com | [2532 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer1.org2.example.com | [2533 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer1.org2.example.com | [2534 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +peer1.org2.example.com | [2535 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer1.org2.example.com | [2536 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org2.example.com | [2537 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org2.example.com | [2538 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org2.example.com | [2539 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org2.example.com | [253a 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] +peer1.org2.example.com | [253b 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org2.example.com | [253c 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org2.example.com | [253d 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org2.example.com | [253e 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc424bc6560 env 0xc424b31ec0 txn 0 +peer1.org2.example.com | [253f 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org2.example.com | [2540 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org2.example.com | [2541 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [2542 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] +peer1.org2.example.com | [2543 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org2.example.com | [2544 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] +peer1.org2.example.com | [2545 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org2.example.com | [2546 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org2.example.com | [2547 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org2.example.com | [2548 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org2.example.com | [2549 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org2.example.com | [254a 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org2.example.com | [254c 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org1.example.com | [284c 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [284d 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [284e 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [284f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org1.example.com | [2850 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org1.example.com | [2851 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2852 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [2853 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [2854 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [2855 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [2856 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer0.org1.example.com | [2857 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer0.org1.example.com | [2858 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org1.example.com | [2859 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org1.example.com | [285a 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [285b 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [285c 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org1.example.com | [285d 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org1.example.com | [285e 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org1.example.com | [285f 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org1.example.com | [2860 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org1.example.com | [2861 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org1.example.com | [2862 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org1.example.com | [2863 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org1.example.com | [2864 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org1.example.com | [2865 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org1.example.com | [2866 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org1.example.com | [2867 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org1.example.com | [2869 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:58698 +peer0.org1.example.com | [286a 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58698 +peer0.org1.example.com | [2868 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org1.example.com | [286b 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org1.example.com | [286c 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org1.example.com | [286d 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org1.example.com | [286e 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org1.example.com | [286f 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org1.example.com | [2870 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org1.example.com | [2871 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org1.example.com | [2872 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org1.example.com | [2873 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org1.example.com | [2874 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org1.example.com | [2875 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org1.example.com | [2876 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org1.example.com | [2877 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58698 +peer0.org1.example.com | [2879 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58698 +peer0.org1.example.com | [2878 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org1.example.com | [287a 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org1.example.com | [287b 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org1.example.com | [287c 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org1.example.com | [287d 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org1.example.com | [287e 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org1.example.com | [287f 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org1.example.com | [2880 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org1.example.com | [2881 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org1.example.com | [2882 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org1.example.com | [2883 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer0.org1.example.com | [2885 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +peer0.org1.example.com | [2886 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [2884 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer0.org1.example.com | [2887 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org1.example.com | [2888 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org1.example.com | [2889 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org1.example.com | [288a 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org1.example.com | [288b 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org1.example.com | [288c 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org1.example.com | [288d 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org1.example.com | [288e 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org1.example.com | [288f 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing +peer0.org1.example.com | [2890 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org1.example.com | [2891 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org1.example.com | [2892 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org1.example.com | [2893 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org1.example.com | [2894 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org1.example.com | [2895 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org1.example.com | [2896 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org1.example.com | [2897 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org1.example.com | [2898 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org1.example.com | [2899 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org1.example.com | [289a 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org1.example.com | [289b 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org1.example.com | [289c 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org1.example.com | [289d 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org1.example.com | [289e 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org1.example.com | [289f 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org1.example.com | [28a0 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org1.example.com | [28a1 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org1.example.com | [28a2 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org1.example.com | [28a3 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer0.org1.example.com | [28a4 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer1.org1.example.com | [2544 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2545 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2546 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2547 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2548 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2549 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [254a 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [254b 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [254c 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [254d 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [254e 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [254f 06-12 02:16:07.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2550 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2551 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2553 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2554 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2552 06-12 02:16:07.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2555 06-12 02:16:07.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [2556 06-12 02:16:07.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [2557 06-12 02:16:07.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2558 06-12 02:16:07.27 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [2559 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [255a 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [255b 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [255c 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [255d 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [255e 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [255f 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2560 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2561 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2562 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2563 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2564 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2565 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2566 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2567 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2568 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2569 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [256a 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [256b 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [256c 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [256d 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [256e 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [256f 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2570 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2571 06-12 02:16:07.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2572 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2573 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2574 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2575 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2576 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2577 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2578 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2579 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [257a 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [257b 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [257c 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [257d 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [257e 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [257f 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2580 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2581 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2582 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2583 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2584 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2585 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2586 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2587 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [2588 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2589 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\221\001" signature:"0E\002!\000\2748\010\3740\357\310\306\007\031\242\224\353d\\\364m\224?\323\250E\3733\315\325\307\347\0245\3666\002 \033\375N\344ktQ\267\237X\326\263\311\200\\\224\336\352\336SU%\006|\255\375[\233^\016a#" > alive: +peer1.org1.example.com | [258a 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [258b 06-12 02:16:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [258c 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [258d 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [258e 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [258f 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [2590 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2591 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2592 06-12 02:16:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2593 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2594 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2595 06-12 02:16:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2596 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [2597 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2598 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2599 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [259a 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [259b 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [259d 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [259e 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [259f 06-12 02:16:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [259c 06-12 02:16:08.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [25a0 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [25a1 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [25a2 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [25a3 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25a4 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [25a5 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [25a6 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [25a7 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 6 2 1] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [25a8 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25a9 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [25aa 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [25ab 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [25ac 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25ad 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [25ae 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [25af 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [25b0 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25b1 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [25b2 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [25b3 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25b4 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [25b5 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [25b6 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [25b7 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [25b8 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [25d1 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [25d2 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer0.org2.example.com | [25d3 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer0.org2.example.com | [25d4 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org2.example.com | [25d5 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [25d6 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org2.example.com | [25d7 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [25d8 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [25d9 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [25da 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [25db 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [25dc 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org2.example.com | [25dd 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [25de 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer0.org2.example.com | [25df 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +peer0.org2.example.com | [25e0 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org2.example.com | [25e1 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer0.org2.example.com | [25e2 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +peer0.org2.example.com | [25e3 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +peer0.org2.example.com | [25e4 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org2.example.com | [25e5 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25e6 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [25e7 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25e8 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25e9 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25ea 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer0.org2.example.com | [25eb 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [25ec 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25ed 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25ee 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [25ef 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [25f0 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25f1 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25f2 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25f3 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25f4 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [25f5 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer0.org2.example.com | [25f6 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer0.org2.example.com | [25f7 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer0.org2.example.com | [25f8 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25f9 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer0.org2.example.com | [25fa 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer0.org2.example.com | [25fb 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer0.org2.example.com | [25fc 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer0.org2.example.com | [25fd 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer0.org2.example.com | [25ff 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [25fe 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer0.org2.example.com | [2601 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes +peer0.org2.example.com | [2600 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer0.org2.example.com | [2602 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [2603 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2604 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer0.org2.example.com | [2605 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer0.org2.example.com | [2606 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [2607 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [2608 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2609 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [260a 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [260b 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer0.org2.example.com | [260c 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer0.org2.example.com | [260d 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [260e 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [260f 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2610 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2611 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer0.org2.example.com | [2612 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer0.org2.example.com | [2613 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer0.org2.example.com | [2614 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer0.org2.example.com | [2615 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2616 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2617 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer0.org2.example.com | [2618 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer0.org2.example.com | [2619 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer0.org2.example.com | [261a 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer0.org2.example.com | [261b 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer0.org2.example.com | [261c 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer0.org2.example.com | [261d 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer0.org2.example.com | [261e 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer0.org2.example.com | [261f 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer0.org2.example.com | [2620 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer0.org2.example.com | [2621 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer0.org2.example.com | [2622 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer0.org2.example.com | [2623 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer0.org2.example.com | [2624 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer0.org2.example.com | [2625 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer0.org2.example.com | [2626 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer0.org2.example.com | [2627 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer0.org2.example.com | [2628 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer0.org2.example.com | [2629 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer0.org2.example.com | [262a 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer0.org2.example.com | [262b 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer0.org2.example.com | [262c 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer0.org2.example.com | [262d 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer0.org2.example.com | [262e 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer0.org2.example.com | [262f 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer0.org2.example.com | [2630 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer0.org2.example.com | [2631 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer0.org2.example.com | [2632 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer0.org2.example.com | [2633 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer0.org2.example.com | [2634 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer0.org2.example.com | [2635 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer0.org2.example.com | [2636 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer0.org2.example.com | [2637 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer0.org2.example.com | [2638 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer0.org2.example.com | [2639 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer0.org2.example.com | [263a 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer0.org2.example.com | [263b 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer0.org2.example.com | [263c 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer0.org2.example.com | [263d 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer0.org2.example.com | [263e 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer0.org2.example.com | [263f 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer0.org2.example.com | [2640 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer0.org2.example.com | [2641 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer0.org2.example.com | [2642 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer0.org2.example.com | [2643 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer0.org2.example.com | [2644 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer0.org2.example.com | [2645 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer0.org2.example.com | [2646 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer0.org2.example.com | [2647 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer0.org2.example.com | [2648 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer0.org2.example.com | [2649 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer0.org2.example.com | [264a 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer0.org2.example.com | [264b 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer0.org2.example.com | [264c 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer0.org2.example.com | [264d 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer0.org2.example.com | [264e 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer0.org2.example.com | [264f 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer0.org2.example.com | [2650 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer0.org2.example.com | [2651 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer0.org2.example.com | [2652 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer0.org2.example.com | [2653 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer0.org2.example.com | [2654 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer0.org2.example.com | [2655 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer0.org2.example.com | [2656 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer0.org2.example.com | [2657 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer0.org2.example.com | [2658 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer0.org2.example.com | [2659 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer0.org2.example.com | [265a 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself +peer0.org2.example.com | [265b 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org2.example.com | [265c 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:7051 +peer0.org2.example.com | [265d 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org2.example.com | [265e 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org2.example.com | [265f 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] +peer0.org2.example.com | [2660 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org2.example.com | [2661 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org2.example.com | [2662 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org2.example.com | [2663 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4221abba0 env 0xc4224245a0 txn 0 +peer0.org2.example.com | [2664 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org2.example.com | [2665 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org2.example.com | [2666 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer0.org2.example.com | [2667 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] +peer0.org2.example.com | [2668 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org2.example.com | [2669 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] +peer0.org2.example.com | [266a 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org2.example.com | [266b 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org2.example.com | [266c 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org2.example.com | [266d 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org2.example.com | [266e 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org2.example.com | [266f 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org2.example.com | [2670 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer1.org2.example.com | [254d 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org1.example.com | [25b9 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [25ba 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [25bb 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [25bc 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [25bd 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [25be 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [25bf 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [25c1 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [25c0 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > alive: > +peer1.org1.example.com | [25c2 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [25c3 06-12 02:16:08.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [25c4 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25c5 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [25c6 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [25c7 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org1.example.com | [25c8 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [25c9 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org1.example.com | [25ca 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org1.example.com | [25cb 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +peer1.org1.example.com | [25cc 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25cd 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [25ce 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [25cf 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [25d0 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [25d1 06-12 02:16:08.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [28a5 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +peer0.org1.example.com | [28a7 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org1.example.com | [28a8 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:58698 disconnected +peer0.org1.example.com | [28a9 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [28a6 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer0.org1.example.com | [28aa 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer0.org1.example.com | [28ad 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:59848 +peer0.org1.example.com | [28ae 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59848 +peer0.org1.example.com | [28ab 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +peer0.org1.example.com | [28ac 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:58700 +peer0.org1.example.com | [28af 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58700 +peer0.org1.example.com | [28b0 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer0.org1.example.com | [28b1 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer0.org1.example.com | [28b2 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58700 +peer0.org1.example.com | [28b3 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58700 +peer0.org1.example.com | [28b4 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:2439552935110934065 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [28b5 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:2439552935110934065 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org1.example.com | [28b6 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [28b7 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer0.org1.example.com | [28b8 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:2872289812012144563 tag:EMPTY mem_req: > , Envelope: 177 bytes, Signature: 0 bytes +peer0.org1.example.com | [28ba 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer0.org1.example.com | [28bc 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] +peer0.org1.example.com | [28bd 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer0.org1.example.com | [28be 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer0.org1.example.com | [28bf 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:2872289812012144563 tag:EMPTY mem_req: > , Envelope: 177 bytes, Signature: 0 bytes +peer0.org1.example.com | [28c0 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [28c1 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [28c2 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer0.org1.example.com | [28c3 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4233d0b20 env 0xc42350b320 txn 0 +peer0.org1.example.com | [28c4 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer0.org1.example.com | [28c6 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer0.org1.example.com | [28c5 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [28c7 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [28c8 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org2.example.com | [254b 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 71 bytes to 172.18.0.4:7051 +peer1.org2.example.com | [254e 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org2.example.com | [254f 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org2.example.com | [2550 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator +peer1.org2.example.com | [2551 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org2.example.com | [2552 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org2.example.com | [2553 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org2.example.com | [2554 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage +peer1.org2.example.com | [2555 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] +peer1.org2.example.com | [2556 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.5:7051 +peer1.org2.example.com | [2557 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x4d, 0xcf, 0x4e, 0x7c, 0xc2, 0x5f, 0x80, 0xf, 0x3f, 0x60, 0x2d, 0x1b, 0xe9, 0x83, 0x9f, 0x18, 0x1d, 0x9a, 0x52, 0xc8, 0x19, 0x75, 0x20, 0xdf, 0xd0, 0xfb, 0xd, 0xd6, 0xf3, 0x8d, 0xc6, 0x3b} txOffsets= +peer1.org2.example.com | txId= locPointer=offset=71, bytesLength=19393 +peer1.org2.example.com | ] +peer1.org2.example.com | [2559 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index +peer1.org2.example.com | [255a 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org2.example.com | [2558 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer1.org2.example.com | [255b 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] +peer1.org2.example.com | [255c 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] +peer1.org1.example.com | [25d2 06-12 02:16:08.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [25d3 06-12 02:16:08.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [25d4 06-12 02:16:08.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25d5 06-12 02:16:08.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [25d6 06-12 02:16:08.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [25d7 06-12 02:16:08.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [25d8 06-12 02:16:08.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [25d9 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [25da 06-12 02:16:08.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [25dc 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [25dd 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [25de 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [25df 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [25e0 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [25e1 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [25e2 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > alive: alive: +peer1.org1.example.com | [25e3 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [25e4 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [25db 06-12 02:16:08.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [25e5 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [25e6 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25e7 06-12 02:16:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [25e8 06-12 02:16:08.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25e9 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [25ea 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [25eb 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [25ec 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [25ee 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [25ed 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [25ef 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [25f0 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [25f1 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [25f2 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [25f3 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [25f4 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [25f5 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [25f6 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [25f7 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [25f8 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [25f9 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [25fb 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [25fa 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [25fc 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2671 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer0.org2.example.com | [2672 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org2.example.com | [2673 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org2.example.com | [2674 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator +peer0.org2.example.com | [2675 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org2.example.com | [2676 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org2.example.com | [2677 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org2.example.com | [2678 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage +peer0.org2.example.com | [2679 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] +peer0.org2.example.com | [267a 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x4d, 0xcf, 0x4e, 0x7c, 0xc2, 0x5f, 0x80, 0xf, 0x3f, 0x60, 0x2d, 0x1b, 0xe9, 0x83, 0x9f, 0x18, 0x1d, 0x9a, 0x52, 0xc8, 0x19, 0x75, 0x20, 0xdf, 0xd0, 0xfb, 0xd, 0xd6, 0xf3, 0x8d, 0xc6, 0x3b} txOffsets= +peer0.org2.example.com | txId= locPointer=offset=71, bytesLength=19393 +peer0.org2.example.com | ] +peer0.org2.example.com | [267b 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index +peer0.org2.example.com | [267c 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org2.example.com | [267d 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] +peer0.org2.example.com | [267e 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] +peer0.org2.example.com | [267f 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] +peer0.org2.example.com | [2680 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) +peer0.org2.example.com | [2681 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database +peer0.org2.example.com | [2682 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org2.example.com | [2683 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org2.example.com | [2684 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org2.example.com | [2685 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org2.example.com | [2686 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org2.example.com | [2687 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [8] +peer0.org2.example.com | [2688 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] +peer0.org2.example.com | [2689 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database +peer0.org2.example.com | [268b 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions +peer1.org2.example.com | [255d 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] +peer1.org2.example.com | [255e 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) +peer1.org2.example.com | [2560 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database +peer1.org2.example.com | [255f 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer1.org2.example.com | [2561 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer1.org2.example.com | [2565 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer1.org2.example.com | [2566 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:16175844673097943640 tag:EMPTY mem_req:\246\tI!" secret_envelope:\304\345dZ\226=J\220\315\007^\222ZRv\002 \007\2702g,\346\177\322O\371/\274\000\247\331\356\317+\200A\213\355\325\360\234\330?\316u\342\214'" > > > , Envelope: 284 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2567 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:16175844673097943640 tag:EMPTY mem_req:\246\tI!" secret_envelope:\304\345dZ\226=J\220\315\007^\222ZRv\002 \007\2702g,\346\177\322O\371/\274\000\247\331\356\317+\200A\213\355\325\360\234\330?\316u\342\214'" > > > , Envelope: 284 bytes, Signature: 0 bytes +peer1.org2.example.com | [2568 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2569 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer0.org2.example.com:7051, PKIid:[209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] isn't responsive: rpc error: code = Canceled desc = context canceled +peer1.org2.example.com | [256a 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:12091290199625780626 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [256c 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165]] +peer1.org2.example.com | [256d 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer0.org2.example.com:7051, InternalEndpoint: peer0.org2.example.com:7051, PKI-ID: [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165], Metadata: [] +peer1.org2.example.com | [256b 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:12091290199625780626 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes +peer1.org2.example.com | [256e 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] expireDeadMembers.CloseConn.CloseConn -> DEBU Closing connection for , PKIid:[209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [256f 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +peer1.org2.example.com | [2562 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer1.org2.example.com | [2563 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:56484 disconnected +peer1.org2.example.com | [2564 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org2.example.com | [2570 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org2.example.com | [2572 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2571 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org2.example.com | [2573 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org2.example.com | [2574 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org2.example.com | [2575 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [8] +peer1.org2.example.com | [2576 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database +peer1.org2.example.com | [2578 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions +peer1.org2.example.com | [2579 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org2.example.com | [2577 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] +peer1.org2.example.com | [257b 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] +peer1.org2.example.com | [257c 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org2.example.com | [257a 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [8] +peer1.org2.example.com | [257d 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org2.example.com | [257e 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [257f 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [2580 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [2581 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [2582 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org2.example.com | [2583 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org2.example.com | [2584 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org2.example.com | [2585 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [2586 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41508 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 12091290199625780626, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 662 bytes, Signature: 0 bytes +peer1.org2.example.com | [2587 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2588 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 12091290199625780626, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 662 bytes, Signature: 0 bytes +peer1.org2.example.com | [2589 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [258a 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [258b 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [258c 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [258e 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:41508 disconnected +peer1.org2.example.com | [258f 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [258d 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer1.org2.example.com | [2590 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer1.org1.example.com | [25fd 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [25fe 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [25ff 06-12 02:16:09.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2600 06-12 02:16:09.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2601 06-12 02:16:09.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2603 06-12 02:16:09.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2602 06-12 02:16:09.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2605 06-12 02:16:09.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2607 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2606 06-12 02:16:09.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2604 06-12 02:16:09.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2608 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2609 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [260a 06-12 02:16:09.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [260b 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [260c 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [260d 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [260e 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [260f 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2610 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2611 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2612 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2613 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2614 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2615 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2616 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2617 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [2618 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [2619 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [261a 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [261b 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [261c 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [261d 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [261e 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [261f 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2620 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2621 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2622 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2623 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2624 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2625 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2626 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2627 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2628 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2629 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [262a 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [262b 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [262c 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +peer1.org1.example.com | [262d 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [262e 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [262f 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2630 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [2631 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2632 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2633 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [2634 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2635 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [2636 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2637 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2638 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2639 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [263a 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [263b 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [263c 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [263e 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [263d 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [263f 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2640 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 150 but got ts: inc_num:1528769652429776900 seq_num:149 +peer1.org1.example.com | [2641 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2642 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2643 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2644 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2645 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2646 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2647 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2648 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 149 but got ts: inc_num:1528769652088169500 seq_num:147 +peer1.org1.example.com | [2649 06-12 02:16:09.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [264a 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [264b 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [264c 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [264d 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [264e 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [264f 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2650 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2651 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2652 06-12 02:16:09.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2653 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes +peer1.org1.example.com | [2654 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes +peer1.org1.example.com | [2655 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2656 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +peer1.org1.example.com | [2657 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +peer1.org1.example.com | [2658 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4202d1be0 env 0xc42036bda0 txn 0 +peer1.org1.example.com | [2659 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42036bda0 +peer1.org2.example.com | [2591 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Entering, AliveMessage: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes t: {1528769652429776900 156} +peer1.org2.example.com | [2592 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Exiting +peer1.org2.example.com | [2593 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2594 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2595 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [2596 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2597 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2598 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2599 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [259a 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [259b 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [259c 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [259d 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [259e 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [259f 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [25a0 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [25a1 06-12 02:16:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [25a2 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [25a3 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [25a5 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [25a6 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25a7 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [25a4 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25a8 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25a9 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25aa 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [25ab 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.4:7051 +peer1.org2.example.com | [25ac 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.5:7051 +peer1.org2.example.com | [25ad 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer1.org2.example.com | [25ae 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer1.org2.example.com | [25af 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer1.org2.example.com | [25b0 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25b1 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.5:56614 +peer1.org2.example.com | [25b2 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:56614 +peer1.org2.example.com | [25b3 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:56614 +peer1.org2.example.com | [25b4 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:56614 +peer1.org2.example.com | [25b5 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +peer1.org2.example.com | [25b6 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer1.org2.example.com | [25b7 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing +peer1.org2.example.com | [25b8 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer1.org2.example.com | [25b9 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer1.org2.example.com | [25ba 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer1.org2.example.com | [25bb 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25bc 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 874 bytes, Signature: 70 bytes to 172.18.0.4:41632 +peer1.org2.example.com | [25bd 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:41632 +peer1.org2.example.com | [25be 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:41632 +peer1.org2.example.com | [25bf 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:41632 +peer1.org2.example.com | [25c0 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +peer1.org2.example.com | [25c1 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer1.org2.example.com | [25c2 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] canceling read because closing +peer1.org2.example.com | [25c3 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25c4 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [25c5 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [25c6 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25c7 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25c8 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [25c9 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25ca 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [25cb 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [25cc 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25cd 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [25ce 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [25cf 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25d0 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [25d1 06-12 02:16:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [25d2 06-12 02:16:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [25d3 06-12 02:16:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25d4 06-12 02:16:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [25d5 06-12 02:16:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25d6 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25d7 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [25d8 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [25d9 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [25da 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [25db 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +peer1.org2.example.com | [25dc 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [25dd 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25de 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [25df 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25e1 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [25e2 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [25e0 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [25e3 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org2.example.com | [25e4 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [25e5 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25e6 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [25e7 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [25e8 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25e9 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25ea 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [25eb 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [25ec 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [25ed 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [25ee 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [25ef 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [25f0 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [25f1 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [25f2 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25f3 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25f4 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [25f5 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [25f6 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25f7 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [28ca 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] +peer0.org1.example.com | [28cb 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer0.org1.example.com | [28cc 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] +peer0.org1.example.com | [28cd 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer0.org1.example.com | [28ce 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer0.org1.example.com | [28cf 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer0.org1.example.com | [28d0 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer0.org1.example.com | [28d1 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer0.org1.example.com | [28d2 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer0.org1.example.com | [28d3 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org1.example.com | [28c9 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [28d5 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [28d7 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [28d8 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [28d9 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [28da 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [265a 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +peer1.org1.example.com | [265b 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +peer1.org1.example.com | [265c 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +peer1.org1.example.com | [265d 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +peer1.org1.example.com | [265e 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +peer1.org1.example.com | [265f 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +peer1.org1.example.com | [2660 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc420328000, header channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +peer1.org1.example.com | [2661 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +peer1.org1.example.com | [2662 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [2663 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [2664 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [2665 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [2666 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [2667 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [2668 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [2669 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [266a 06-12 02:16:09.99 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [266b 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [266c 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [266d 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer1.org1.example.com | [266e 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer1.org1.example.com | [266f 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer1.org1.example.com | [2670 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer1.org1.example.com | [2671 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer1.org1.example.com | [2672 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [2673 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [2674 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [2675 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [2676 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [2677 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +peer1.org1.example.com | [2678 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +peer1.org1.example.com | [2679 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer1.org1.example.com | [267a 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +peer1.org1.example.com | [267b 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +peer1.org1.example.com | [267c 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +peer1.org1.example.com | [267d 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +peer1.org1.example.com | [267e 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +peer1.org1.example.com | [267f 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +peer1.org1.example.com | [2680 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2681 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2682 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2683 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2684 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2685 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +peer1.org1.example.com | [2686 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2687 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2688 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2689 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [268a 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [268b 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [268c 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [268d 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [268e 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [268f 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2690 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +peer1.org1.example.com | [2691 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +peer1.org1.example.com | [2692 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +peer1.org1.example.com | [2693 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +peer1.org1.example.com | [2694 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2695 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +peer1.org1.example.com | [2696 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +peer1.org1.example.com | [2697 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +peer1.org1.example.com | [2698 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +peer1.org1.example.com | [2699 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +peer1.org1.example.com | [269a 06-12 02:16:10.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +peer1.org1.example.com | [269b 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [269c 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +peer1.org1.example.com | [269d 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +peer1.org1.example.com | [269e 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [269f 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [26a0 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [26a1 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [26a2 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [26a3 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +peer1.org1.example.com | [26a4 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +peer1.org1.example.com | [26a5 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [26a6 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [26a7 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [26a8 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [26a9 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +peer1.org1.example.com | [26aa 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +peer1.org1.example.com | [26ab 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +peer1.org1.example.com | [26ac 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +peer1.org1.example.com | [26ad 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [26ae 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [26af 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +peer1.org1.example.com | [26b0 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +peer1.org1.example.com | [26b1 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +peer1.org1.example.com | [26b2 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +peer1.org1.example.com | [26b3 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +peer1.org1.example.com | [26b4 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +peer1.org1.example.com | [26b5 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +peer1.org1.example.com | [26b6 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +peer1.org1.example.com | [26b7 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +peer1.org1.example.com | [26b8 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +peer1.org1.example.com | [26b9 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +peer1.org1.example.com | [26ba 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +peer1.org1.example.com | [26bb 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +peer1.org1.example.com | [26bc 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +peer1.org1.example.com | [26bd 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +peer1.org1.example.com | [26be 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +peer1.org1.example.com | [26bf 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +peer1.org1.example.com | [26c0 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +peer1.org1.example.com | [26c1 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +peer1.org1.example.com | [26c2 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +peer1.org1.example.com | [26c3 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +peer1.org1.example.com | [26c4 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +peer1.org1.example.com | [26c5 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +peer1.org1.example.com | [26c6 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +peer1.org1.example.com | [26c7 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +peer1.org1.example.com | [26c8 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +peer1.org1.example.com | [26c9 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +peer1.org1.example.com | [26ca 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +peer1.org1.example.com | [26cb 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +peer1.org1.example.com | [26cc 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +peer1.org1.example.com | [26cd 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +peer1.org1.example.com | [26ce 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +peer1.org1.example.com | [26cf 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +peer1.org1.example.com | [26d0 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +peer1.org1.example.com | [26d1 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +peer1.org1.example.com | [26d2 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +peer1.org1.example.com | [26d3 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +peer1.org1.example.com | [26d4 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +peer1.org1.example.com | [26d5 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +peer1.org1.example.com | [26d6 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +peer1.org1.example.com | [26d7 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +peer1.org1.example.com | [26d8 06-12 02:16:10.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +peer1.org1.example.com | [26d9 06-12 02:16:10.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +peer1.org1.example.com | [26da 06-12 02:16:10.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +peer1.org1.example.com | [26db 06-12 02:16:10.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +peer1.org1.example.com | [26dc 06-12 02:16:10.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +peer1.org1.example.com | [26dd 06-12 02:16:10.12 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +peer1.org1.example.com | [26de 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +peer1.org1.example.com | [26df 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +peer1.org1.example.com | [26e0 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +peer1.org1.example.com | [26e1 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +peer1.org1.example.com | [26e2 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +peer1.org1.example.com | [26e3 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +peer1.org1.example.com | [26e4 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +peer1.org2.example.com | [25f8 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [25f9 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [25fa 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25fb 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25fc 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25fd 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [25ff 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [25fe 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2601 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2602 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2600 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2603 06-12 02:16:12.31 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2604 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2605 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2606 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [2607 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2608 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org2.example.com | [2609 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [260a 06-12 02:16:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [260b 06-12 02:16:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [268c 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org2.example.com | [268d 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org2.example.com | [268e 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:37338 disconnected +peer0.org2.example.com | [268f 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] +peer0.org2.example.com | [2690 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org2.example.com | [2691 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org2.example.com | [2692 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [2693 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [2694 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [2695 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [2696 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org2.example.com | [2697 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org2.example.com | [2698 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org2.example.com | [2699 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org2.example.com | [268a 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [8] +peer0.org2.example.com | [269a 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [269b 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer0.org2.example.com | [269c 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer0.org2.example.com | [269d 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:2872289812012144563 tag:EMPTY mem_req: > , Envelope: 177 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [269e 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:2872289812012144563 tag:EMPTY mem_req: > , Envelope: 177 bytes, Signature: 0 bytes +peer0.org2.example.com | [269f 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org1.example.com:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [26a0 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:7051 +peer0.org1.example.com | [28d6 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org1.example.com | [26e5 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +peer1.org1.example.com | [26e6 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +peer1.org1.example.com | [26e7 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +peer1.org1.example.com | [26e8 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +peer1.org1.example.com | [26e9 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +peer1.org1.example.com | [26ea 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +peer1.org1.example.com | [26eb 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +peer1.org1.example.com | [26ec 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +peer1.org1.example.com | [26ed 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +peer1.org1.example.com | [26ee 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +peer1.org1.example.com | [26ef 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +peer1.org1.example.com | [26f0 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } +peer1.org1.example.com | [26f1 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer1.org1.example.com | [26f2 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +peer1.org1.example.com | [26f3 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +peer1.org1.example.com | [26f4 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found +peer1.org1.example.com | [26f5 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +peer1.org1.example.com | [26f6 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +peer1.org1.example.com | [26f7 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +peer1.org1.example.com | [26f8 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +peer1.org1.example.com | [26f9 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:3711124290966880616 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [26fa 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:3711124290966880616 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +peer1.org1.example.com | [26fb 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [260c 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [260d 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [260e 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [260f 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2610 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2611 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2612 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2613 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2614 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2615 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2616 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [2617 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2618 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2619 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [261a 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [261b 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [261c 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [261d 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [261e 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [261f 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2620 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2621 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2622 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2623 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [2624 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2625 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2626 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [2627 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2628 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2629 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [262a 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [262b 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [262c 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [262d 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [262e 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [262f 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [2630 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [2631 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2632 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org2.example.com | [2633 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2634 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2635 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2636 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2637 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2638 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2639 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [263b 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org1.example.com | [26fc 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +peer1.org1.example.com | [26fd 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +peer1.org1.example.com | [26fe 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] +peer1.org1.example.com | [26ff 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +peer1.org1.example.com | [2700 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +peer1.org1.example.com | [2701 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +peer1.org1.example.com | [2703 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +peer1.org1.example.com | [2704 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +peer1.org1.example.com | [2705 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +peer1.org1.example.com | [2706 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] +peer1.org1.example.com | [2707 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +peer1.org1.example.com | [2708 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] +peer1.org1.example.com | [2709 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +peer1.org1.example.com | [270a 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +peer1.org1.example.com | [270b 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +peer1.org1.example.com | [270c 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +peer1.org1.example.com | [270d 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +peer1.org1.example.com | [270e 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +peer1.org1.example.com | [270f 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +peer0.org2.example.com | [26a1 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:37446 +peer0.org2.example.com | [26a2 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:53058 +peer0.org2.example.com | [26a3 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:53058 +peer0.org2.example.com | [26a4 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:53058 +peer0.org2.example.com | [26a5 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:53058 +peer0.org2.example.com | [26a6 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +peer0.org2.example.com | [26a8 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [26a7 06-12 02:16:10.16 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing +peer0.org2.example.com | [26a9 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer0.org2.example.com | [26aa 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer0.org2.example.com | [26ab 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org2.example.com | [26ac 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [26ad 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:2439552935110934065 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org2.example.com | [26ae 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: nonce:2439552935110934065 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org2.example.com | [26af 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [28db 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer0.org1.example.com | [28dc 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer0.org1.example.com | [28dd 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator +peer0.org1.example.com | [28de 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer0.org1.example.com | [28df 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer0.org1.example.com | [28e0 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer0.org1.example.com | [28e1 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage +peer0.org1.example.com | [28bb 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [28e2 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 2439552935110934065, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes +peer0.org1.example.com | [28e3 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [28e4 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 2439552935110934065, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes +peer0.org1.example.com | [28e5 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] +peer0.org1.example.com | [28e6 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [28e7 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [28e8 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x4d, 0xcf, 0x4e, 0x7c, 0xc2, 0x5f, 0x80, 0xf, 0x3f, 0x60, 0x2d, 0x1b, 0xe9, 0x83, 0x9f, 0x18, 0x1d, 0x9a, 0x52, 0xc8, 0x19, 0x75, 0x20, 0xdf, 0xd0, 0xfb, 0xd, 0xd6, 0xf3, 0x8d, 0xc6, 0x3b} txOffsets= peer0.org1.example.com | txId= locPointer=offset=71, bytesLength=19393 peer0.org1.example.com | ] -peer0.org1.example.com | [2838 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index -peer0.org1.example.com | [2839 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index -peer0.org1.example.com | [283a 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] -peer0.org1.example.com | [283b 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] -peer0.org1.example.com | [283c 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] -peer0.org1.example.com | [283d 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -peer0.org1.example.com | [283e 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -peer0.org1.example.com | [283f 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer0.org1.example.com | [2840 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer0.org1.example.com | [2841 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer0.org1.example.com | [2842 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer0.org1.example.com | [2843 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] -peer0.org1.example.com | [2844 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database -peer0.org1.example.com | [2845 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions -peer0.org1.example.com | [2846 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer0.org1.example.com | [2847 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] -peer0.org1.example.com | [2848 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer0.org1.example.com | [2849 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer0.org1.example.com | [284a 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [284b 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [284c 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [284d 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [284e 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer0.org1.example.com | [284f 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer0.org1.example.com | [2850 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer0.org1.example.com | [2851 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer0.org1.example.com | [2852 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:36348 -peer0.org1.example.com | [2853 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36348 -peer0.org1.example.com | [2854 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36348 -peer0.org1.example.com | [2855 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36348 -peer0.org1.example.com | [2856 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org1.example.com | [2857 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36244 disconnected -peer0.org1.example.com | [2858 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing -peer0.org1.example.com | [2859 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [285a 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org1.example.com | [285b 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36348 disconnected -peer0.org1.example.com | [285c 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [285d 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer1.org1.example.com | [27e2 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -peer1.org1.example.com | [27e3 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -peer1.org1.example.com | [27e4 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -peer1.org1.example.com | [27e5 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -peer1.org1.example.com | [27e6 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -peer1.org1.example.com | [27e7 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -peer1.org1.example.com | [27e8 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -peer1.org1.example.com | [27e9 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -peer1.org1.example.com | [27ea 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -peer1.org1.example.com | [27eb 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -peer1.org1.example.com | [27ec 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -peer1.org1.example.com | [27ed 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -peer1.org1.example.com | [27ee 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -peer1.org1.example.com | [27ef 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -peer1.org1.example.com | [27f0 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -peer1.org1.example.com | [27f1 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -peer1.org1.example.com | [27f2 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -peer1.org1.example.com | [27f3 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -peer1.org1.example.com | [27f4 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -peer1.org1.example.com | [27f5 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -peer1.org1.example.com | [27f6 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -peer1.org1.example.com | [27f7 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -peer1.org1.example.com | [27f8 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -peer1.org1.example.com | [27f9 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -peer1.org1.example.com | [27fa 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -peer1.org1.example.com | [27fb 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -peer1.org1.example.com | [27fc 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -peer1.org1.example.com | [27fd 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -peer1.org1.example.com | [27fe 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -peer1.org1.example.com | [27ff 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -peer1.org1.example.com | [2800 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -peer1.org1.example.com | [2801 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -peer1.org1.example.com | [2802 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -peer1.org1.example.com | [2803 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -peer1.org1.example.com | [2804 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -peer1.org1.example.com | [2805 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -peer1.org1.example.com | [2806 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -peer1.org1.example.com | [2807 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -peer1.org1.example.com | [2808 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -peer1.org1.example.com | [2809 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -peer1.org1.example.com | [280a 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -peer1.org1.example.com | [280b 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -peer1.org1.example.com | [280c 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -peer1.org1.example.com | [280d 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -peer1.org1.example.com | [280e 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -peer1.org1.example.com | [280f 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -peer1.org1.example.com | [2810 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -peer1.org1.example.com | [2811 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -peer1.org1.example.com | [2812 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -peer1.org1.example.com | [2813 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -peer1.org1.example.com | [2814 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -peer1.org1.example.com | [2815 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -peer1.org1.example.com | [2816 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -peer1.org1.example.com | [2817 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -peer1.org1.example.com | [2818 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -peer1.org1.example.com | [2819 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -peer1.org1.example.com | [281a 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -peer1.org1.example.com | [281b 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -peer1.org1.example.com | [281c 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -peer1.org1.example.com | [281d 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -peer1.org1.example.com | [281e 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -peer1.org1.example.com | [281f 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -peer1.org1.example.com | [2820 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org1.example.com:7051 [] [] peer0.org1.example.com:7051 } -peer1.org1.example.com | [2821 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org1.example.com | [2822 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -peer1.org1.example.com | [2824 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 -peer1.org1.example.com | [2825 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:7051 -peer1.org1.example.com | [2826 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 -peer1.org1.example.com | [2827 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:3617917922458579421 tag:EMPTY mem_req: > > , Envelope: 282 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2828 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:3617917922458579421 tag:EMPTY mem_req: > > , Envelope: 282 bytes, Signature: 0 bytes -peer1.org1.example.com | [2823 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -peer1.org1.example.com | [2829 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -peer1.org1.example.com | [282a 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [282b 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) -peer1.org1.example.com | [282c 05-31 05:23:32.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -peer1.org1.example.com | [282d 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer1.org1.example.com | [282e 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer0.org1.example.com | [285e 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer0.org1.example.com | [285f 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer0.org1.example.com | [2860 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:14972931874340803463 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\237\001" signature:"0E\002!\000\2337\367\017\023 \357\267:\233\253gV\310\366\315v\260\3519\323\362\222\021\237q\374\220Yi|\362\002 XG\276)\375\033my\021\241\236+\340G]TD5\360EI<[z\007\337s\\U\373P=" > > , Envelope: 178 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2861 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:14972931874340803463 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\237\001" signature:"0E\002!\000\2337\367\017\023 \357\267:\233\253gV\310\366\315v\260\3519\323\362\222\021\237q\374\220Yi|\362\002 XG\276)\375\033my\021\241\236+\340G]TD5\360EI<[z\007\337s\\U\373P=" > > , Envelope: 178 bytes, Signature: 0 bytes -peer0.org1.example.com | [2862 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [2863 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:52998 -peer0.org1.example.com | [2864 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:52998 -peer0.org1.example.com | [2865 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:52998 -peer0.org1.example.com | [2866 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:52998 -peer0.org1.example.com | [2867 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [2868 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -peer0.org1.example.com | [2869 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing -peer0.org1.example.com | [286a 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:7051 -peer0.org1.example.com | [286b 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -peer0.org1.example.com | [286c 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:52998 disconnected -peer0.org1.example.com | [286d 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [286e 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -peer0.org1.example.com | [286f 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -peer0.org1.example.com | [2870 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [2871 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2872 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 14972931874340803463, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 664 bytes, Signature: 0 bytes -peer0.org1.example.com | [2873 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 14972931874340803463, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 664 bytes, Signature: 0 bytes -peer0.org1.example.com | [2874 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2875 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 14972931874340803463, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 664 bytes, Signature: 0 bytes -peer0.org1.example.com | [2876 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2877 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2878 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2879 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [287a 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [287b 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [287c 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [287d 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [287e 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [287f 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2880 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2881 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2882 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2883 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2884 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2918 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:3008996468516081304 tag:EMPTY mem_req: > > , Envelope: 281 bytes, Signature: 0 bytes -peer0.org2.example.com | [2919 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [291a 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:3008996468516081304 tag:EMPTY mem_req: > > , Envelope: 281 bytes, Signature: 0 bytes -peer0.org2.example.com | [291b 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [291c 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [291d 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [291e 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [291f 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2920 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2921 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2922 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2923 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2924 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [2925 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 3008996468516081304, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2926 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer0.org2.example.com | [2927 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 3008996468516081304, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 548 bytes, Signature: 0 bytes -peer0.org2.example.com | [2928 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2929 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [282f 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:975904512374788323 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2830 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:975904512374788323 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -peer1.org1.example.com | [2831 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2832 05-31 05:23:32.87 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) -peer1.org1.example.com | [2833 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -peer1.org1.example.com | [2834 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -peer1.org1.example.com | [2835 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -peer1.org1.example.com | [2836 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -peer1.org1.example.com | [2837 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -peer1.org1.example.com | [2838 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -peer1.org1.example.com | [2839 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc423ac3180 env 0xc423ab32f0 txn 0 -peer1.org1.example.com | [283a 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -peer1.org1.example.com | [283b 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -peer1.org1.example.com | [283c 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -peer1.org1.example.com | [283d 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -peer1.org1.example.com | [283e 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -peer1.org1.example.com | [283f 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] -peer1.org1.example.com | [2840 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -peer1.org1.example.com | [2841 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -peer1.org1.example.com | [2842 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -peer1.org1.example.com | [2843 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -peer1.org1.example.com | [2844 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -peer1.org1.example.com | [2845 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -peer1.org1.example.com | [2846 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -peer0.org2.example.com | [292a 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [292b 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [292c 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [292d 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [292e 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [292f 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [2930 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2931 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer0.org2.example.com | [2932 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [2933 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [2934 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org1.example.com:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [2935 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2936 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:7051 -peer0.org2.example.com | [2937 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:7051 -peer0.org2.example.com | [2938 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 -peer0.org2.example.com | [2939 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org2.example.com | [293a 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [293b 05-31 05:23:34.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [293c 05-31 05:23:34.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [293d 05-31 05:23:34.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [293e 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [293f 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2940 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [2941 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [2942 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2943 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [2944 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2945 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2946 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2947 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2948 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2949 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [294a 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [294b 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [294c 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive: > -peer1.org1.example.com | [2847 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -peer0.org1.example.com | [2885 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2886 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2887 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2888 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2889 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [288a 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [288b 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [288c 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [288d 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [288e 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [288f 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2890 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2891 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2892 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2893 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:33360 -peer0.org1.example.com | [2894 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33360 -peer0.org1.example.com | [2895 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33360 -peer0.org1.example.com | [2896 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33360 -peer0.org1.example.com | [2897 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer0.org1.example.com | [2898 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -peer0.org1.example.com | [2899 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33212 disconnected -peer0.org1.example.com | [289a 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing -peer0.org1.example.com | [289b 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33360 disconnected -peer0.org1.example.com | [289c 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [289d 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28a0 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [289e 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28a1 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [289f 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28a2 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org1.example.com:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [28a3 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [28a4 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [28a5 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28a6 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:7051 -peer0.org1.example.com | [28a7 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:7051 -peer0.org1.example.com | [28a8 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:7051 -peer0.org1.example.com | [28a9 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 -peer0.org1.example.com | [28aa 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [28ac 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [28ad 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [2848 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -peer1.org1.example.com | [2849 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -peer1.org1.example.com | [284a 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator -peer1.org1.example.com | [284b 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -peer1.org1.example.com | [284c 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -peer1.org1.example.com | [284d 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -peer1.org1.example.com | [284e 05-31 05:23:32.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -peer1.org1.example.com | [284f 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] -peer1.org1.example.com | [2850 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xc4, 0x16, 0x22, 0xe7, 0x46, 0x1a, 0xfc, 0xec, 0xc7, 0x69, 0xc, 0xf3, 0xe0, 0x1, 0x23, 0x22, 0x90, 0xfe, 0x17, 0x1c, 0xa7, 0xb2, 0xe9, 0x74, 0x12, 0x78, 0x2c, 0xe5, 0xd0, 0xba, 0x37, 0xee} txOffsets= -peer1.org1.example.com | txId= locPointer=offset=71, bytesLength=19393 -peer1.org1.example.com | ] -peer1.org1.example.com | [2851 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index -peer1.org1.example.com | [2852 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index -peer1.org1.example.com | [2853 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] -peer1.org1.example.com | [2854 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] -peer1.org1.example.com | [2855 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] -peer1.org1.example.com | [2856 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -peer1.org1.example.com | [2857 05-31 05:23:32.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -peer1.org1.example.com | [2858 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -peer1.org1.example.com | [2859 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -peer1.org1.example.com | [285a 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -peer1.org1.example.com | [285b 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -peer1.org1.example.com | [285d 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database -peer1.org1.example.com | [285e 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions -peer1.org1.example.com | [285f 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -peer1.org1.example.com | [285c 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] -peer1.org1.example.com | [2860 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] -peer1.org1.example.com | [2861 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -peer1.org1.example.com | [2862 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -peer1.org1.example.com | [2863 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [2864 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [2865 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [2866 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [2867 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -peer1.org1.example.com | [2868 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -peer1.org1.example.com | [2869 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -peer1.org1.example.com | [286a 05-31 05:23:32.90 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -peer1.org1.example.com | [286b 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:37060 -peer1.org1.example.com | [286c 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.6:37060 -peer1.org1.example.com | [286d 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:37060 -peer1.org1.example.com | [286e 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:37060 -peer1.org1.example.com | [286f 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer1.org1.example.com | [2870 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2871 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2872 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2873 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2874 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2875 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [2876 05-31 05:23:34.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2877 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2878 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28ae 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [28ab 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:7051 -peer0.org1.example.com | [28af 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:7051 -peer0.org1.example.com | [28b0 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28b1 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -peer0.org1.example.com | [28b2 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [28b3 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -peer0.org1.example.com | [28b4 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [28b5 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [28b6 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [28b8 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [28b7 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org1.example.com | [28b9 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [28ba 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [28bb 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [28bc 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [28bd 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [28be 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [28bf 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28c0 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org1.example.com | [28c1 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [294d 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -peer0.org2.example.com | [294e 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [294f 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer0.org2.example.com | [2950 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2951 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2952 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2953 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2954 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [2955 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [2956 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2957 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers -peer0.org2.example.com | [2958 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [2959 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [295a 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [295b 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [295c 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [295d 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [295e 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2961 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2960 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [295f 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2962 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2963 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2964 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [2879 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:40892 -peer1.org1.example.com | [287a 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:40892 -peer1.org1.example.com | [287b 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:40892 -peer1.org1.example.com | [287c 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:40892 -peer1.org1.example.com | [287d 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -peer1.org1.example.com | [287e 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers -peer1.org1.example.com | [287f 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2880 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2882 05-31 05:23:34.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2881 05-31 05:23:34.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2883 05-31 05:23:34.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2884 05-31 05:23:34.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2885 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2886 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2887 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2888 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [28c2 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [28c3 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [28c4 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28c5 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [28c6 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [28c7 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [28c8 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [28c9 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [28ca 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [28cb 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [28cc 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [28cd 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [28ce 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [28cf 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [28d0 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [28d1 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org1.example.com | [28d2 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [28d3 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\240\001" signature:"0E\002!\000\303M\017\014C\305\321\210\263\305\003\034v2iN\261\225\264.DU\356\023`\335\330@\275\371\260\244\002 F\350]\022\221\232\355\204\304\027aH\347S{\005\324s\021\242r\273\330\242Ib~>\333QNn" > -peer0.org1.example.com | [28d4 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [2965 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer0.org2.example.com | [2966 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [2968 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [2969 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [296b 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [296c 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2967 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [296d 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [296a 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [296e 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [296f 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer0.org2.example.com | [2970 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2971 05-31 05:23:35.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [2972 05-31 05:23:35.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2973 05-31 05:23:35.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [2974 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2975 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer0.org2.example.com | [2976 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer0.org2.example.com | [2977 05-31 05:23:35.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2978 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2979 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [297a 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [297b 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [297c 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [297d 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [297e 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [297f 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2980 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2981 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2982 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2983 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2984 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2985 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2986 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2987 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2988 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2989 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [298a 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [298b 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [298d 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer0.org2.example.com | [298e 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [298c 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\237\001" signature:"0E\002!\000\2337\367\017\023 \357\267:\233\253gV\310\366\315v\260\3519\323\362\222\021\237q\374\220Yi|\362\002 XG\276)\375\033my\021\241\236+\340G]TD5\360EI<[z\007\337s\\U\373P=" > alive: alive:\254%A\372l4\247\th/\021\352i\276\217\324\366\310WJp\240+\220\n\204\273\3236\027\032" > -peer0.org2.example.com | [298f 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2990 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2991 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [2992 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2993 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [2994 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [2995 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6 7] to 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2996 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2997 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2998 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2999 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [299a 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [299b 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [299c 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [299d 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [299e 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [299f 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [29a0 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [29a1 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [29a2 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [29a3 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [29a4 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [29a5 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [29a6 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [29a7 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [29a8 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [29a9 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > alive: alive: -peer0.org2.example.com | [29aa 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [29ab 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29ac 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29ad 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [29ae 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [29af 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29b0 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29b1 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [29b2 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [29b3 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [29b4 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [29b5 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [29b6 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [29b7 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [29b8 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [29b9 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [29ba 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [29bb 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [29bc 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [29bd 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [29be 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [29bf 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [29c1 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29c0 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [29c4 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [29c5 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29c2 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [29c6 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29c7 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29c8 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29c3 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [29c9 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29ca 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29cb 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29cc 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [29cd 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [29ce 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29d0 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [29d1 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [29d2 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [29cf 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [29d3 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [29d5 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [29d4 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [29d7 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29d6 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [29d8 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [29d9 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [29db 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29dc 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [29dd 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [29da 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [29de 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [29df 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [29e0 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [29e1 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [29e2 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [29e3 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org2.example.com | [29e4 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [29e5 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org2.example.com | [29e7 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [28d5 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [28d6 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [28d7 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [28d8 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org1.example.com | [28d9 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org1.example.com | [28da 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org1.example.com | [28db 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28dc 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28dd 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28de 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28df 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28e0 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28e1 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28e2 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28e3 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28e4 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28e5 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28e6 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28e7 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28e8 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [28e9 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [28ea 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [28eb 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6 7] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [28ec 05-31 05:23:35.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28ed 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28ee 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28ef 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28f0 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28f1 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28f2 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28f3 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28f4 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [28f5 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28f6 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [28f7 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [28f8 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [28f9 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [28fa 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28fb 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28fc 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [28fd 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [28fe 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [28ff 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [2900 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2901 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org1.example.com | [2902 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [2903 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2904 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [2905 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2906 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2907 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2908 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2909 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [290a 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [290b 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [290c 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [290d 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\241\001" signature:"0E\002!\000\342B\320\322\321\335j\254\021@e\317.\"\226x\004y\n\322\222H\177% \214\013o\277*P\207\002 @jX\260\ttB&\334ij\302\316\236\275\025y\254\252\261\254\322I\341\255\266\003C8OZN" secret_envelope: > -peer0.org1.example.com | [290e 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org1.example.com | [290f 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2910 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org2.example.com | [29e6 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [29e8 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [29e9 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [29ea 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [29ec 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [29eb 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [29ee 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29ed 05-31 05:23:36.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [29ef 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [29f0 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [29f1 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [29f2 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [29f3 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [29f4 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [29f5 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [29f6 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [29f8 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [29f7 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [29f9 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29fa 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [29fb 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29fc 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [29fd 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [29fe 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2889 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [288a 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [288b 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [288c 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [288d 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [288e 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [288f 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2890 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2891 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2892 05-31 05:23:35.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [2893 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2894 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\231\001" signature:"0C\002 C\254\034a\241(\375-qXo\332\177\206\224\0053\033\323l2\247]\231\335\030\010T&w\001\311\002\037{\375R(\206\325\263n\330\321\242.a}\r#\364p5\021\214\235\370\242\032\035\\u\347p@" > alive: alive: -peer1.org1.example.com | [2895 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -peer1.org1.example.com | [2896 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2897 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -peer1.org1.example.com | [2898 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2899 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [289a 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [289b 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [289c 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [7 1 2 3 4 5 6] to 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org1.example.com | [2911 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer0.org1.example.com | [2912 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2913 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [2914 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2916 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2915 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [2918 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2919 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [2917 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [291a 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [291b 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [291c 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [291d 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [291e 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2920 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [291f 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2921 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2922 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2923 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2924 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2926 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2927 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2928 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2929 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2925 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [292a 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [292b 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [292c 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [292d 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [292e 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [292f 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2930 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2931 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2932 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2933 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2934 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2935 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2936 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2937 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2938 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [293a 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2939 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [293b 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [293c 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [293d 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [293e 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [293f 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2941 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2942 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2940 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [2943 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2945 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2944 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [2946 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2947 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2948 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2949 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [294a 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [294b 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [294c 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [294d 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [294f 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [294e 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2950 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2951 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2952 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2953 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2954 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [289d 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [289e 05-31 05:23:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [289f 05-31 05:23:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [28a1 05-31 05:23:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28a2 05-31 05:23:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [28a3 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28a0 05-31 05:23:35.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [28a4 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28a5 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [28a6 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers -peer1.org1.example.com | [28a7 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28a8 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28a9 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28aa 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28ab 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28ac 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28ad 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28ae 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [28af 05-31 05:23:35.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28b0 05-31 05:23:35.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [28b1 05-31 05:23:35.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -peer1.org1.example.com | [28b2 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28b3 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28b4 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28b5 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28b6 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [29ff 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2a00 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2a01 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2a02 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2a03 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2a04 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a05 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2a06 05-31 05:23:36.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2a07 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2a08 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2a09 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2a0a 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2a0b 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2a0c 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a0d 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a0e 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a0f 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a10 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a12 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2a11 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a13 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2a14 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 163 but got ts: inc_num:1527744091618763800 seq_num:162 -peer0.org2.example.com | [2a15 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a16 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a17 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2a18 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a19 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a1a 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a1b 05-31 05:23:36.07 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2a1c 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2a1d 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2a1e 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2a1f 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2a20 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2a21 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a22 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a24 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a23 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a25 05-31 05:23:36.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a26 05-31 05:23:36.42 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [2a27 05-31 05:23:36.42 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [2a28 05-31 05:23:36.43 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [2a29 05-31 05:23:36.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a2a 05-31 05:23:36.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a2b 05-31 05:23:36.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a2c 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a2d 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a2e 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2a2f 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a30 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [28b7 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [28b8 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [28b9 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28ba 05-31 05:23:35.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org1.example.com | [28bb 05-31 05:23:35.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org1.example.com | [28bc 05-31 05:23:35.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28bd 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [28be 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28bf 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28c0 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28c1 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28c2 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28c3 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28c4 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [28c5 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [28c6 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [28c7 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [28c8 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [28ca 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [28cb 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [28cc 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [28cd 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28c9 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28ce 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [28cf 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28d0 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2955 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [2956 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2957 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [2958 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2959 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [295a 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [295b 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [295c 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [295d 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [295f 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [295e 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2960 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2961 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2962 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 165 but got ts: inc_num:1527744091840124700 seq_num:163 -peer0.org1.example.com | [2963 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2964 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2965 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2966 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2967 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2968 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2969 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [296a 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 160 but got ts: inc_num:1527744091508552400 seq_num:159 -peer0.org1.example.com | [296b 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [296c 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [296d 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2a31 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a32 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2a33 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2a34 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2a35 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2a36 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2a37 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2a38 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a39 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a3a 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a3b 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a3c 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a3d 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a3e 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a40 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2a3f 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a41 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a42 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a43 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a45 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a44 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a46 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2a48 05-31 05:23:36.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a49 05-31 05:23:36.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a47 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28d1 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [28d2 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [28d3 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28d4 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [28d5 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [28d6 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28d7 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [28d8 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [28d9 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28da 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [28db 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [28dc 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28dd 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [28de 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > > , Envelope: 272 bytes, Signature: 0 bytes -peer1.org1.example.com | [28df 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [296e 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [296f 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2970 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2971 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2972 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2973 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2974 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2975 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2976 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2977 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2978 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2979 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [297a 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [297b 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [297c 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [297d 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [297e 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [297f 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2980 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2981 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2982 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2983 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [2984 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a4a 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a4b 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2a4c 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a4d 05-31 05:23:36.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a4e 05-31 05:23:36.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a50 05-31 05:23:36.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2a4f 05-31 05:23:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a51 05-31 05:23:36.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2a52 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2a53 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2a54 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2a55 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2a56 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a57 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a58 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a59 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2a5a 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a5b 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a5e 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a5c 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a5f 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a60 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a61 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a62 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a63 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a5d 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a64 05-31 05:23:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2a66 05-31 05:23:36.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a67 05-31 05:23:36.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a65 05-31 05:23:36.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a68 05-31 05:23:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org2.example.com | [2a69 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [2a6a 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a6b 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a6c 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2a6d 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a6e 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a6f 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a70 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a71 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2a72 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a73 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a74 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a75 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a76 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a77 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2a78 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a79 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org1.example.com | [2986 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2987 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2985 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2988 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2989 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [298a 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [298b 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [298c 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [298d 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [298f 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2990 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [298e 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2991 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2992 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [2993 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2994 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2995 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2996 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2997 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -peer0.org1.example.com | [2998 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [2999 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -peer0.org1.example.com | [299a 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [299b 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [299c 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [299d 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [299e 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [299f 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [29a0 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [29a1 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29a2 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [29a3 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [29a4 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [29a5 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [29a6 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [29a7 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [29a8 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [29a9 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [29aa 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [29ab 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [29ac 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\243\001" signature:"0E\002!\000\362\373\302\002\225+\r\342T\344\356\027\214N|\272 \270\207:\350\007\224\301H\276\332\325r8\361\325\002 Z\364|\311&\232u\n\217\230\211\364\345zq\221\210K\201\034\206\230\0069ur\204\"\2615\351}" > -peer0.org1.example.com | [29ad 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [29ae 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [29af 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [29b0 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [29b1 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [29b2 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [29b3 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [29b4 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29b5 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29b6 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [29b7 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29b8 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29b9 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [29ba 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [29bb 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [29bc 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [29bd 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [29be 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [29bf 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [29c0 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [29c1 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [29c2 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [29c3 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [29c4 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29c5 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29c6 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [29c7 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [29c8 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer0.org1.example.com | [29c9 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [28e0 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28e1 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [28e2 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [28e4 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28e3 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [28e5 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [28e6 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [28e7 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28e8 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [28e9 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [28ea 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [28eb 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [28ec 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org1.example.com | [28ed 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [28ee 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [28ef 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [28f0 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [28f1 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [28f2 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [28f3 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes in aliveMembership -peer1.org1.example.com | [28f4 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [28f5 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a7a 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a7b 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a7c 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer0.org2.example.com | [2a7d 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2a7e 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer0.org2.example.com | [2a7f 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2a80 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2a81 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2a82 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2a83 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2a84 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2a85 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [2a86 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2a87 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" secret_envelope: > alive: > -peer0.org2.example.com | [2a88 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a89 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a8a 05-31 05:23:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a8b 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a8c 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a8d 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [29ca 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29cb 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [29cc 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [29cd 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29ce 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [29cf 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29d0 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29d1 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [29d2 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [29d3 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29d4 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [29d5 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [29d6 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [29d7 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [29d8 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [29d9 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29da 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [29db 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29dc 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [29dd 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29de 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [29df 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29e0 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29e1 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [29e2 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [28f6 05-31 05:23:35.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [28f7 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [28f8 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [28f9 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [28fa 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [28fb 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [28fc 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [28fe 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [28fd 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [28ff 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2900 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2901 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2902 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2903 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2904 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org1.example.com | [2905 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [2906 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2907 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2908 05-31 05:23:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -peer1.org1.example.com | [2909 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [290a 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [290c 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [290d 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [290e 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [290b 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a8e 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a8f 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a90 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a91 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a92 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a93 05-31 05:23:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a94 05-31 05:23:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a95 05-31 05:23:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a96 05-31 05:23:39.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a97 05-31 05:23:39.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a98 05-31 05:23:39.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a99 05-31 05:23:39.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a9a 05-31 05:23:39.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2a9b 05-31 05:23:39.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [2a9c 05-31 05:23:39.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2a9d 05-31 05:23:39.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [2a9e 05-31 05:23:39.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2a9f 05-31 05:23:39.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aa0 05-31 05:23:39.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aa1 05-31 05:23:39.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2aa2 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aa3 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2aa4 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aa5 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aa6 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aa7 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [2aa8 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2aa9 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [29e3 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29e4 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29e5 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [29e6 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [29e7 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [29e8 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [29e9 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29ea 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29eb 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [29ec 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [29ed 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [29ee 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [29ef 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [29f1 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [29f0 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29f2 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [29f3 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [29f4 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [29f5 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29f6 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29f7 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [29f8 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [29f9 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2aaa 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aab 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2aac 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aad 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2aae 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2aaf 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2ab0 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2ab1 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2ab2 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2ab3 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2ab4 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2ab5 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2ab6 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [2ab7 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2ab8 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\244\001" signature:"0D\002 9\330\301\270\343\246\275\316\301\266\310@\340\316#T\013B\242e\367\002\215\036\021\210$\373G\244\001[\002 k\242\024\210\354\214GD\316F\010\336z\341\202\343\340;\036\226\336\313\327RK\007\363y\236\335\036-" > alive: alive:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > alive: -peer0.org2.example.com | [2ab9 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aba 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2abb 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [2abc 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [2abd 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6 7] to 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2abe 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2abf 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ac0 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ac1 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [2ac2 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2ac3 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ac4 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2ac5 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ac6 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2ac7 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2ac8 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2ac9 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2aca 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2acb 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2acc 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2acd 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2ace 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2acf 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [2ad0 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2ad1 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > alive: alive: -peer0.org2.example.com | [2ad2 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ad3 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2ad4 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [2ad5 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2ad6 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer0.org2.example.com | [2ad7 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2ad8 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org2.example.com | [2ad9 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2ada 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2adb 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2adc 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2add 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2ade 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2adf 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2ae0 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ae2 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ae3 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2ae4 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ae1 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ae5 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ae6 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2ae7 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [29fa 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29fb 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [29fc 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [29fd 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [29fe 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [29ff 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [2a00 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a01 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a02 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a03 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a04 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a05 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a06 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a08 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a09 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a0a 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a07 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a0b 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a0c 05-31 05:23:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a0d 05-31 05:23:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a0e 05-31 05:23:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a0f 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a10 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a11 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a12 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [2a13 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a14 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a15 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a16 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a17 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a18 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2a19 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2a1a 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2a1b 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2a1c 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2a1d 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2a1e 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2a1f 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a20 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2a21 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [2a22 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2a23 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\245\001" signature:"0D\002 k\311\250Tc<\346\004\377V\360\335\364{c\177\021\214\027H\321\200\337~\203\256\0063\257j0=\002 \004\324\213[\277\027M\326$\363^)\255\210\213W\027\314\234\024\241\221\230\342L\212d\353w\013\214\347" > -peer0.org1.example.com | [2a24 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a25 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a26 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [2a27 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2a28 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a29 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a2a 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ae8 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org2.example.com | [2ae9 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2aea 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2aeb 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2aec 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 272 bytes, Signature: 0 bytes -peer0.org2.example.com | [2aed 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2af0 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2af1 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2aee 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2aef 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org2.example.com | [2af2 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2af3 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [2af4 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2af5 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2af6 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2af8 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2af9 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2af7 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [2afa 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [290f 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer1.org1.example.com | [2910 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2911 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2912 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2913 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2914 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2915 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2916 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [2917 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2918 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2919 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [291a 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 164 but got ts: inc_num:1527744091840124700 seq_num:163 -peer1.org1.example.com | [291b 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [291c 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [291d 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [291e 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 161 but got ts: inc_num:1527744091618763800 seq_num:160 -peer1.org1.example.com | [291f 05-31 05:23:35.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2920 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2921 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2922 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2923 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2924 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2925 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2926 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2a2b 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a2c 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a2d 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a2e 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a2f 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a30 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a31 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a32 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a33 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a34 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [5 6 7 1 2 3 4] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [2a35 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a36 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a37 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a38 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a39 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a3a 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a3b 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a3c 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a3d 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a3e 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a3f 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [2a40 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a41 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a42 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a43 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a44 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a45 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [2a46 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2a47 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [2a48 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2a49 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2a4a 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2a4b 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2a4c 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a4d 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2a4e 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [2a4f 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2a50 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\246\001" signature:"0E\002!\000\333\023E:Af\233\340\032\372;\261\223\310~\0248\207\335\206\313\336\263x\265\302\232\247\230?\310\r\002 \036\255tK\203\204\030\017\351$\330\3750\332\266\224\321\204\357\330\031y\2571\221m\343\252\362R\354V" secret_envelope: > -peer0.org1.example.com | [2a51 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a52 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a53 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [2a54 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2a55 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [2a56 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2927 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2928 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2929 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [292a 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [292b 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [292c 05-31 05:23:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [292d 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [292e 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [292f 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [2930 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2931 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2932 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2933 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2934 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2935 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2936 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2937 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2938 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2939 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [293a 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [293b 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [293c 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [293d 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [293e 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2afb 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2afc 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2afd 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2afe 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2aff 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b00 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b01 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2b02 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2b03 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2b04 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2b05 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2b06 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2b07 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b08 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b09 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2b0a 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b0b 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b0c 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b0d 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2b0e 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2b0f 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2b10 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2b11 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2b12 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2b13 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b14 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b15 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [2b16 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [2b17 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2b18 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b1a 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [2b19 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [2b1b 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b1c 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [2b1d 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2b1e 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [2b1f 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2b20 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2b21 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2b22 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2b23 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b24 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b25 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org2.example.com | [2b26 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b27 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b28 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2b29 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 168 but got ts: inc_num:1527744091618763800 seq_num:167 -peer0.org2.example.com | [2b2a 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b2b 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [293f 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > alive: > -peer1.org1.example.com | [2940 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [2941 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2942 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2943 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2944 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2945 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2946 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2947 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2948 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [294a 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2949 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [294b 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [294c 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [294d 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [294e 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [294f 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2950 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2951 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2952 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [2953 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2954 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2a57 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [2a58 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2a59 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a5a 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a5b 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a5c 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a5d 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a5e 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a5f 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a60 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a61 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a62 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a63 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2a64 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2a65 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2a67 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a66 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a68 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a69 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a6a 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a6b 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a6c 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a6d 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a6e 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a6f 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2a70 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a71 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a72 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a73 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a74 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2a75 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2a76 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a77 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2a78 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2a79 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2a7a 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a7b 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2a7c 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2a7d 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a7e 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2a7f 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2a80 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2955 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2956 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2957 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2958 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2959 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [295a 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [295b 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [295c 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [295d 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [295e 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [295f 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2960 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2961 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2963 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2964 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2965 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2966 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2967 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2968 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2969 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [296a 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [296b 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [296c 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2b2c 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2b2d 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b2e 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b2f 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b30 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2b31 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 169 but got ts: inc_num:1527744090808810100 seq_num:167 -peer0.org2.example.com | [2b32 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b33 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b34 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2b35 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2b36 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2b37 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2b38 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2b39 05-31 05:23:40.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2b3a 05-31 05:23:40.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b3b 05-31 05:23:40.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b3c 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b3d 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2b3e 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b3f 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b40 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b41 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2b42 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2b43 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2a81 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2a82 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2a83 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2a84 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2a85 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a86 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2a87 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a88 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a89 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2a8a 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2a8b 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2a8c 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2a8d 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2a8e 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a8f 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2a90 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2a91 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a92 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2a93 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2a94 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 170 but got ts: inc_num:1527744091840124700 seq_num:168 -peer0.org1.example.com | [2a95 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a96 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2a97 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2a98 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2a99 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2a9a 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [296d 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [296e 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [296f 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [2970 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2971 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > alive: alive: alive: -peer1.org1.example.com | [2972 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -peer1.org1.example.com | [2973 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2974 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [2975 05-31 05:23:36.03 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [2976 05-31 05:23:36.04 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [2962 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2977 05-31 05:23:36.04 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2978 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2979 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [297a 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [297b 05-31 05:23:36.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -peer1.org1.example.com | [297c 05-31 05:23:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [297d 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [297e 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [297f 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2980 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2981 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2982 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2983 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2984 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2985 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2986 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2987 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2988 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2989 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [298a 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [298b 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [298c 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [298d 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [298e 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [298f 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2990 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2991 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2992 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2993 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2994 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2995 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2996 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2997 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2998 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2999 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2a9b 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2a9c 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2a9d 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2a9e 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2a9f 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2aa0 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org1.example.com | [2aa1 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2aa2 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2aa3 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2aa4 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org1.example.com | [2aa5 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2aa6 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer0.org1.example.com | [2aa7 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2aa8 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2aa9 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2aaa 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2aab 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [2aac 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2aad 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [2aae 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2aaf 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2b44 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2b45 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2b46 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2b47 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b48 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b49 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2b4a 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2b4b 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b4c 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b4d 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2b4e 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2b4f 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b50 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b51 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2b52 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b53 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b54 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b55 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b56 05-31 05:23:40.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2b57 05-31 05:23:40.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b58 05-31 05:23:40.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b59 05-31 05:23:40.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b5a 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting -peer0.org2.example.com | [2b5b 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true -peer0.org2.example.com | [2b5c 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering -peer0.org2.example.com | [2b5d 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer0.org2.example.com | [2b5e 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org2.example.com | [2b5f 05-31 05:23:41.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2b60 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b61 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b62 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2b63 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b64 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b65 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b66 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2b67 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2b68 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2b69 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2b6a 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2b6b 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2b6c 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b6d 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b6e 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b6f 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2b70 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b71 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b72 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b73 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2b74 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2b75 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b76 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2b77 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b78 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2b79 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b7a 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2b7b 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b7c 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b7d 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b7e 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b7f 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2b80 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b81 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b82 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b83 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2b84 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org2.example.com | [2b85 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2b86 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2b87 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2b88 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2b89 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2b8a 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b8b 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2b8c 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [299a 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [299b 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [299d 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [299e 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [299c 05-31 05:23:36.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [299f 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29a0 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [29a1 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29a2 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29a3 05-31 05:23:36.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [29a4 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29a5 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [29a6 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29a7 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29a8 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29a9 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [29aa 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [29ab 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [29ac 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [29ad 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [29ae 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [29af 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [29b0 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [29b1 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [29b2 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [2ab0 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2ab1 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2ab2 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2ab3 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2ab4 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ab5 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ab6 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ab7 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer0.org1.example.com | [2ab8 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2ab9 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2aba 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2abb 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2abc 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2abd 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2abe 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2abf 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2ac0 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2ac1 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2ac2 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2ac3 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2ac4 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2ac5 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2ac6 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer0.org1.example.com | [2ac7 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2b8e 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2b8f 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2b91 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b93 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2b90 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b92 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b95 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b8d 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b94 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b97 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2b96 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b98 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2b99 05-31 05:23:41.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2b9a 05-31 05:23:41.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2b9b 05-31 05:23:41.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2b9c 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org2.example.com | [2b9d 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2b9e 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2b9f 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2ba0 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2ba1 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2ba2 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2ba3 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2ba4 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2ba5 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [29b4 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29b5 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [29b3 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29b6 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [29b7 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29b8 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [29b9 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29ba 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29bb 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [29bc 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29bd 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29be 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [29bf 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29c0 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [29c1 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [29c2 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [29c3 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29c4 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [29c5 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [29c6 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [29c7 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [29c8 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29c9 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [29ca 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ac8 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:r\006t\271w\327\002 \013\204\014\265\365~ alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\250\001" signature:"0D\002 \177\247\225\347\251Y\354\352\257\026#c`\375\272\371\306\240\216\2273\013\317\005\007\264%|$\2072\214\002 \"/\035ys\231\314n2\203P\266)e\2730\2619\226q\016t(\312`\312\2605y-\266Q" > -peer0.org1.example.com | [2ac9 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2aca 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2acb 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2acc 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2acd 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2ace 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2acf 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2ad0 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2ad1 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2ad2 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2ad3 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2ad4 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2ad5 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2ad6 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2ad7 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2ad8 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2ad9 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2ada 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2adb 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2adc 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2add 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2ade 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2adf 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2ae0 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2ae1 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2ae2 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2ae3 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2ae4 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2ae5 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [2ae6 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer0.org1.example.com | [2ae7 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2ae8 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2ae9 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2aea 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2aeb 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [2aec 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer0.org1.example.com | [2aed 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2aee 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -peer0.org1.example.com | [2aef 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -peer0.org1.example.com | [2af0 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2af1 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2af2 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2af3 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29cb 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29cc 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [29cd 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [29ce 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [29cf 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [29d0 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [29d1 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [29d2 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [29d3 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [29d4 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [29d5 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [29d6 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [29d7 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [29d8 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\244\001" signature:"0D\002 9\330\301\270\343\246\275\316\301\266\310@\340\316#T\013B\242e\367\002\215\036\021\210$\373G\244\001[\002 k\242\024\210\354\214GD\316F\010\336z\341\202\343\340;\036\226\336\313\327RK\007\363y\236\335\036-" > alive: alive:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > alive:a\002 -x\330\005\313\225\332\315;\372M\n\376M\331*\261R\n\227\300\3744M\177\016\210\004\\\355\324\265" > -peer1.org1.example.com | [29d9 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [29da 05-31 05:23:39.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [29db 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [29dc 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [29dd 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 6 7 1 2] to 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [29de 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29df 05-31 05:23:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [2ba6 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2ba7 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2ba8 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2ba9 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2baa 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2bab 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org2.example.com | [2bac 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2bad 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2bae 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2baf 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2bb0 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org2.example.com | [2bb2 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2bb1 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org2.example.com | [2bb3 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2bb4 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2bb5 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bb6 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2bb7 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bb8 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bb9 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2bba 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2bbb 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bbc 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2af4 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2af5 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2af6 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2af7 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2af8 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2af9 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2afa 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2afb 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2afc 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2afd 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2afe 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2aff 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2b01 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b00 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b02 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b03 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b04 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b05 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b06 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2b07 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b08 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b09 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b0a 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [29e0 05-31 05:23:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [29e1 05-31 05:23:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [29e2 05-31 05:23:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [29e3 05-31 05:23:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [29e4 05-31 05:23:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [29e5 05-31 05:23:39.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [29e6 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [29e7 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29e8 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [29e9 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [29ea 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29eb 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [29ec 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29ed 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [29ee 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [29ef 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [29f0 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [29f1 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org1.example.com | [29f2 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org1.example.com | [29f3 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29f4 05-31 05:23:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [29f5 05-31 05:23:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29f6 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [29f7 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [29f8 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [29f9 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [29fa 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [29fb 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [29fc 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [29fd 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [29fe 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2bbd 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bbe 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org2.example.com | [2bbf 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org2.example.com | [2bc0 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org2.example.com | [2bc1 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2bc2 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2bc3 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org2.example.com | [2bc4 05-31 05:23:43.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2bc5 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2bc6 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2bc7 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org2.example.com | [2bc8 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2bc9 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:)8\206\010" > > -peer0.org2.example.com | [2bca 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bcb 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2bcc 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bcd 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bce 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2bcf 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org2.example.com | [2bd0 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bd2 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bd3 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b0b 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b0c 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2b0d 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b0e 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b0f 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b10 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer0.org1.example.com | [2b11 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2b12 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2b13 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b14 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2b15 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b17 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b16 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b18 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b19 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b1a 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b1b 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b1c 05-31 05:23:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2b1d 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b1e 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b1f 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b20 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2b21 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2b22 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2b23 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2b24 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2b25 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2b26 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2b27 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b28 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2b29 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer0.org1.example.com | [2b2a 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b2b 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b2c 05-31 05:23:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b2d 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b2e 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b2f 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b30 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b31 05-31 05:23:41.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2b32 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b33 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b34 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2b35 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b36 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b37 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b38 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b39 05-31 05:23:41.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b3a 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b3b 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b3c 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2b3d 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b3e 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2b3f 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b40 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer0.org1.example.com | [2b41 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b42 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b44 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b45 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b46 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b43 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b47 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b48 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b49 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b4a 05-31 05:23:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b4b 05-31 05:23:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b4c 05-31 05:23:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b4d 05-31 05:23:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b4e 05-31 05:23:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b4f 05-31 05:23:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b50 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b51 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b52 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b53 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org1.example.com | [2b54 05-31 05:23:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b55 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b56 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [29ff 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a00 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a01 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a02 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a03 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a04 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a05 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a06 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a07 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a08 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a09 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a0a 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a0b 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a0c 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a0d 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a0e 05-31 05:23:39.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a0f 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2bd4 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2bd1 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bd5 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2bd6 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bd7 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bd8 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2bd9 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bda 05-31 05:23:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2bdb 05-31 05:23:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bdc 05-31 05:23:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2bdd 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 -peer0.org2.example.com | [2bde 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2bdf 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org2.example.com | [2be0 05-31 05:23:43.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2be1 05-31 05:23:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org2.example.com | [2be2 05-31 05:23:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org2.example.com | [2be3 05-31 05:23:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2be4 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org2.example.com | [2be5 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2be6 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2be7 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2be8 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2be9 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org2.example.com | [2bea 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2beb 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bec 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bed 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b57 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b58 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b59 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2b5a 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2b5b 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2b5c 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2b5d 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2b5e 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2b5f 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2b60 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2b61 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b62 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer0.org1.example.com | [2b63 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2b65 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b64 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\252\001" signature:"0D\002 \036\014\315U\363C\340^!\331?D\314Z=\214 \344\nR\233\350%\231\357\323\303\230\203\263\nu\002 9\275\310\321/\353\263\260\373X\307g\314\013A\003\306\353\275@G\027g\326\324\032%\240\014\233D\200" > -peer0.org1.example.com | [2b66 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b67 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [2b68 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2b69 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b6a 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b6b 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a10 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2a11 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2a12 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a13 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a14 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 271 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a15 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a16 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a17 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a18 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a19 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a1a 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a1b 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [2a1c 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2a1d 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer1.org1.example.com | [2a1e 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a1f 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [2a20 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2a21 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [2a22 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2a23 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2bee 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bef 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2bf0 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org2.example.com | [2bf1 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2bf2 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org2.example.com | [2bf3 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org2.example.com | [2bf4 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2bf5 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2bf6 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2bf8 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org2.example.com | [2bf9 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2bfa 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\251\001" signature:"0E\002!\000\257r\274hc\177\367\032t\245\032^\233,\222\264\014\265\227\313\231\305\237\373\335\302m\263\246\221\215d\002 Q\rM\344\200\004\307v\263!s\323\266}\331\247\305\234c\200\002\300\271\311R{1\210!\263\232h" > alive: alive:\\\250\351\033l\007\254\321\304\354\365J\326B\322\360\002 i\224\271B\005` -peer0.org2.example.com | [2bfb 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bfc 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2bf7 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org2.example.com | [2bfd 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bfe 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org2.example.com | [2bff 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6 7] to 172.18.0.2:37960 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer0.org2.example.com | [2c00 05-31 05:23:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2c01 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2c02 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org2.example.com | [2c03 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer0.org2.example.com | [2c04 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2c05 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60404 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2c06 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2c07 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org2.example.com | [2c08 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org2.example.com | [2c09 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org2.example.com | [2c0a 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org2.example.com | [2c0b 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2c0c 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer0.org2.example.com | [2c0d 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org2.example.com | [2c0e 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org2.example.com | [2c0f 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org2.example.com | [2c11 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer0.org2.example.com | [2c12 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -peer0.org2.example.com | [2c13 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > alive: alive: -peer1.org1.example.com | [2a24 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2a25 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2a26 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a27 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a28 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a29 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a2a 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a2b 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a2c 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2a2d 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a2e 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a2f 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2a30 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2a31 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a32 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a33 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2a34 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2a35 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2a36 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2a37 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2a38 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2a39 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a3a 05-31 05:23:39.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a3b 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a3c 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a3d 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a3e 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a3f 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2b6c 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b6d 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b6e 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b6f 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b70 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b71 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b72 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b73 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b74 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b75 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [5 6 7 1 2 3 4] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [2b76 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b77 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b78 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b79 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b7a 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b7b 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b7c 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b7d 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -peer0.org1.example.com | [2b7e 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b7f 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b80 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b81 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b82 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b83 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b84 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2b85 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b86 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2b87 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2b88 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer0.org1.example.com | [2b89 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2b8a 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2b8b 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2b8c 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2b8d 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2b8e 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b8f 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -peer0.org1.example.com | [2b90 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2b92 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b93 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b91 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\253\001" signature:"0E\002!\000\220\273\206\234\320]\336On\025\306\211\213\334\271\330\214\256\360\013%!C\270hxBj\301\263\367\354\002 o6\257O\005\311\205\\\360\367\371\235\263\317\024\007\004\347<\\GD]\346\274\217,\027\234\235\343\354" secret_envelope: > -peer0.org1.example.com | [2b94 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer0.org1.example.com | [2b95 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2b96 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -peer0.org1.example.com | [2b97 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2b98 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer0.org1.example.com | [2b99 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2b9a 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b9b 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b9c 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer0.org1.example.com | [2b9d 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2b9e 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a40 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2a41 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1527744091618763800, 166 but got ts: inc_num:1527744091618763800 seq_num:165 -peer1.org1.example.com | [2a42 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a43 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a44 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2a45 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a46 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a47 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2a48 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2a49 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 169 but got ts: inc_num:1527744091840124700 seq_num:168 -peer1.org1.example.com | [2a4a 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a4b 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a4c 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2a4d 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2a4e 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2a4f 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2a50 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2a51 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2a52 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a53 05-31 05:23:39.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a54 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a55 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a56 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [2a57 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org2.example.com | [2c14 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org2.example.com | [2c15 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org2.example.com | [2c10 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2b9f 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2ba0 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ba2 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2ba1 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ba5 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ba6 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2ba3 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ba7 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ba8 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2ba9 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2ba4 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2baa 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bab 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2bac 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a58 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a59 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a5a 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a5b 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2a5c 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2a5d 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2a5e 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2a5f 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2a60 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2a61 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2a62 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a63 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a64 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [2a65 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2a66 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > alive:\273k\034T\322\025\342O\247\333oKr\204\261\353\355\200\005\311\002 \001\036\255\351T\213s~\266m\202\017\257.\315\222\313\264\301\037e4pl\223\232\320\245g\233/2" > > -peer1.org1.example.com | [2a67 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a68 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a69 05-31 05:23:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a6a 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a6b 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -peer1.org1.example.com | [2a6c 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2bad 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bae 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer0.org1.example.com | [2baf 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2bb0 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bb1 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2bb2 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer0.org1.example.com | [2bb3 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bb4 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer0.org1.example.com | [2bb5 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bb6 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bb7 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2bb8 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bb9 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2bba 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2bbb 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bbc 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2bbd 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2bbe 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2bbf 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bc2 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bc0 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bc1 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bc3 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2bc4 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2bc5 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bc6 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2bc7 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2bc8 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2bc9 05-31 05:23:43.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2bca 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2bcb 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer0.org1.example.com | [2bcc 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2bcd 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bce 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2bd0 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2bd1 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bcf 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer0.org1.example.com | [2bd2 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2bd3 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2bd4 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2bd5 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bd6 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -peer0.org1.example.com | [2bd7 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2bd8 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -peer0.org1.example.com | [2bd9 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2bda 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2bdb 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2a6d 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a6e 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a6f 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a70 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2a71 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2a72 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2a73 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2a74 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2a75 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2a76 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2a77 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a79 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -peer1.org1.example.com | [2a7a 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2a7b 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > alive: alive: alive: -peer1.org1.example.com | [2a7c 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -peer1.org1.example.com | [2a7d 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a78 05-31 05:23:40.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a7e 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a7f 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a80 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2bdc 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2bdd 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bde 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer0.org1.example.com | [2be0 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer0.org1.example.com | [2bdf 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer0.org1.example.com | [2be1 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2be2 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer0.org1.example.com | [2be3 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 175 but got ts: inc_num:1527744091840124700 seq_num:173 -peer0.org1.example.com | [2be4 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2be5 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2be6 05-31 05:23:43.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer0.org1.example.com | [2be7 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2be8 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2be9 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer0.org1.example.com | [2bea 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer0.org1.example.com | [2beb 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 170 but got ts: inc_num:1527744091508552400 seq_num:169 -peer0.org1.example.com | [2bec 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bed 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer0.org1.example.com | [2bee 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer0.org1.example.com | [2bef 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer0.org1.example.com | [2bf0 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer0.org1.example.com | [2bf1 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer0.org1.example.com | [2bf2 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer0.org1.example.com | [2bf3 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer0.org1.example.com | [2bf4 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer0.org1.example.com | [2bf5 05-31 05:23:43.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a81 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a82 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a83 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a84 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2a85 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2a86 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2a87 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2a88 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2a89 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2a8a 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2a8b 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a8c 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2a8d 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2a8e 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a8f 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a90 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a91 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2a92 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a93 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2a94 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a95 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a96 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a97 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a98 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2a99 05-31 05:23:40.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2a9a 05-31 05:23:40.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2a9b 05-31 05:23:40.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2a9c 05-31 05:23:41.05 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting -peer1.org1.example.com | [2a9d 05-31 05:23:41.05 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning true -peer1.org1.example.com | [2a9e 05-31 05:23:41.05 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering -peer1.org1.example.com | [2a9f 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers -peer1.org1.example.com | [2aa0 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -peer1.org1.example.com | [2aa1 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2aa2 05-31 05:23:41.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -peer1.org1.example.com | [2aa3 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2aa4 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2aa5 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2aa6 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2aa7 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2aa8 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2aa9 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2aaa 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2aab 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2aac 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2aad 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2aae 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2aaf 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ab0 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ab1 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2ab2 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2ab3 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2ab4 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2ab5 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2ab6 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2ab7 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2ab8 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2ab9 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2aba 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2abb 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2abc 05-31 05:23:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2abd 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2abe 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2abf 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ac0 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ac1 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2ac2 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2ac3 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ac4 05-31 05:23:41.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2ac5 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ac6 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2ac7 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2ac8 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ac9 05-31 05:23:41.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2aca 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2acb 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2acc 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2acd 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ace 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2acf 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2ad0 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2ad1 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2ad2 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2ad3 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2ad4 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2ad5 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2ad6 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2ad7 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2ad8 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -peer1.org1.example.com | [2ad9 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ada 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2adb 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2adc 05-31 05:23:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2add 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ade 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2adf 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2ae0 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ae1 05-31 05:23:41.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2ae2 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ae3 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2ae4 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2ae5 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2ae6 05-31 05:23:41.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2ae7 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2ae8 05-31 05:23:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2ae9 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2aea 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2aeb 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2aec 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -peer1.org1.example.com | [2aed 05-31 05:23:42.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2aee 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2aef 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2af0 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2af1 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2af2 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2af3 05-31 05:23:43.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2af4 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2af5 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2af6 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2af7 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2af8 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2af9 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2afa 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2afb 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -peer1.org1.example.com | [2afc 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2afd 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\251\001" signature:"0E\002!\000\257r\274hc\177\367\032t\245\032^\233,\222\264\014\265\227\313\231\305\237\373\335\302m\263\246\221\215d\002 Q\rM\344\200\004\307v\263!s\323\266}\331\247\305\234c\200\002\300\271\311R{1\210!\263\232h" > alive: alive: -peer1.org1.example.com | [2afe 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -peer1.org1.example.com | [2aff 05-31 05:23:43.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b00 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b01 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b02 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 6 7 1] to 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [2b03 05-31 05:23:43.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b04 05-31 05:23:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -peer1.org1.example.com | [2b06 05-31 05:23:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b05 05-31 05:23:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b07 05-31 05:23:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b08 05-31 05:23:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b09 05-31 05:23:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b0a 05-31 05:23:43.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b0b 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b0c 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b0d 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b0e 05-31 05:23:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b0f 05-31 05:23:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b10 05-31 05:23:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b11 05-31 05:23:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b12 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [2b13 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2b14 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b15 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b16 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b17 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b18 05-31 05:23:43.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b19 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b1a 05-31 05:23:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b1b 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b1c 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b1d 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b1e 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 -peer1.org1.example.com | [2b1f 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2b20 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -peer1.org1.example.com | [2b21 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2b22 05-31 05:23:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -peer1.org1.example.com | [2b23 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2b24 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b25 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b26 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b27 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b28 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b29 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b2a 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b2b 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b2c 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b2d 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b2e 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b2f 05-31 05:23:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b30 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b31 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b32 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b33 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b34 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2b35 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2b36 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b38 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b39 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b3a 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b37 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2b3b 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b3c 05-31 05:23:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -peer1.org1.example.com | [2b3d 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b3e 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b3f 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b40 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b41 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b42 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2b43 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2b44 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2b45 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2b46 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2b47 05-31 05:23:43.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2b48 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b49 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b4a 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2b4b 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2b4c 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2b4d 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2b4e 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2b4f 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2b50 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b51 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b52 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2b53 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b54 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b55 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -peer1.org1.example.com | [2b56 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2b57 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -peer1.org1.example.com | [2b58 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2b59 05-31 05:23:43.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2b5a 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2b5b 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2b5c 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b5d 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2b5e 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b5f 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b60 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:40892 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b61 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b62 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b63 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2b64 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b65 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b66 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -peer1.org1.example.com | [2b67 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2b68 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -peer1.org1.example.com | [2b69 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2b6a 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2b6b 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2b6c 05-31 05:23:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2b6d 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b6e 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2b6f 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b70 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b72 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -peer1.org1.example.com | [2b71 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b73 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 172 but got ts: inc_num:1527744090808810100 seq_num:171 -peer1.org1.example.com | [2b74 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b75 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b76 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -peer1.org1.example.com | [2b77 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b78 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b79 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b7a 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -peer1.org1.example.com | [2b7b 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2b7c 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -peer1.org1.example.com | [2b7d 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -peer1.org1.example.com | [2b7e 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -peer1.org1.example.com | [2b7f 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2b80 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b81 05-31 05:23:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2b82 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b83 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b84 05-31 05:23:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] -peer1.org1.example.com | [2b85 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b86 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:37060 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b87 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -peer1.org1.example.com | [2b88 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > > , Envelope: 166 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b89 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -peer1.org1.example.com | [2b8a 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -peer1.org1.example.com | [2b8b 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -peer1.org1.example.com | [2b8c 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2b8d 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: -peer1.org1.example.com | [2b8e 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -peer1.org1.example.com | [2b8f 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -peer1.org1.example.com | [2b90 05-31 05:23:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -peer1.org1.example.com | [2b91 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -peer1.org1.example.com | [2b92 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" -peer1.org1.example.com | [2b93 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers -peer1.org1.example.com | [2b94 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\254\001" signature:"0D\002 Q\3051\315\256\"\000\340\270\270bt\021\314\220\354\312\355{\252\2751\231\0334\245\214\264\377;\341i\002 c\267\022\r\230\021\344\032\013GH\377+\337\264\267\314\351\031N=\323i\023\266W%\214\261\377^\003" > alive: > -peer1.org1.example.com | [2b95 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -peer1.org1.example.com | [2b96 05-31 05:23:43.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [28e9 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index +peer0.org1.example.com | [28ea 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index +peer0.org1.example.com | [28eb 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [28ec 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [28ed 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [28ee 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [28ef 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [28f0 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [28f2 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [26b0 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:2439552935110934065 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org2.example.com | [26b1 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [26b2 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [26b3 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [26b4 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [26b5 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [26b6 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [26b7 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [26b8 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [26b9 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [26ba 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [26bb 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org2.example.com | [26bc 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:53058 disconnected +peer0.org2.example.com | [26bd 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [26be 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 2439552935110934065, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [26bf 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive: +peer0.org2.example.com | [26c0 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 2439552935110934065, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes +peer0.org2.example.com | [26c1 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [26c2 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:32840 +peer1.org2.example.com | [263c 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [263a 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [263d 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [263e 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [2640 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2641 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2642 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2643 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2644 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [2645 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2646 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2647 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2648 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2649 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [264a 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [264b 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org2.example.com | [264c 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [264d 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [264e 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [264f 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2650 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [2651 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2652 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [2654 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2653 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2656 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2657 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2658 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2659 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [265a 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [265b 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [265c 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [265d 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [265e 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [265f 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [2660 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2661 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2662 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [263f 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2663 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2664 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2665 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [2666 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2667 06-12 02:16:12.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [2655 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [2668 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2669 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [266a 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [266b 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [266c 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [266d 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [266e 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [266f 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [2670 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2671 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2672 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2673 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2674 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2675 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2676 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2677 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2678 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2679 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [267a 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [267b 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [267c 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [267d 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [267e 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [267f 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2680 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2681 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2682 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2683 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2684 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2685 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2686 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2687 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2688 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [2689 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [268a 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [268b 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [268c 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [268d 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > alive: +peer1.org2.example.com | [268e 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [268f 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2690 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2691 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2692 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2693 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2694 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2695 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2696 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2697 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org2.example.com | [2698 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2699 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [269a 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [269b 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [269c 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [269d 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [269e 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [269f 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [26a0 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [26a1 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [26a2 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [26a3 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [26a4 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26a5 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes +peer1.org2.example.com | [26a6 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26a7 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes +peer1.org2.example.com | [26a8 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [26a9 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [26aa 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org2.example.com | [26ab 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [26ac 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [26ad 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [26ae 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [26af 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [26b0 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [26b1 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [26b2 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [26b3 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\246\356oX\327\335\005[x\016U,\017\252\251\345,\317\026\027\226}]I8l\337\266\205\002 \027\311\000\340M\n\213\210\303|\255J{\226\227\264\017\321\n\344\031E\334\221\363\201\355-5\304\260O" > > +peer1.org2.example.com | [26b4 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes +peer1.org2.example.com | [26b5 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26b6 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [26b7 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26b8 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [26b9 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26ba 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer1.org2.example.com | [26bb 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [26bd 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26bc 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [26be 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26bf 06-12 02:16:12.60 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Exiting +peer1.org2.example.com | [26c0 06-12 02:16:12.60 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Returning false +peer1.org2.example.com | [26c1 06-12 02:16:12.60 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : Entering +peer1.org2.example.com | [26c2 06-12 02:16:12.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org2.example.com | [26c3 06-12 02:16:12.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26c4 06-12 02:16:12.64 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [26c5 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [26c6 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [26c7 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [7 1 2 3 4 5 6] to 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [26c8 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26c9 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [26ca 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [26cb 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26cc 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [26cd 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26ce 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [26cf 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [26d0 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [26d1 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26d2 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26d3 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org2.example.com | [26d4 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [26d5 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26d6 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [26d7 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26d8 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org2.example.com | [26d9 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [26da 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26db 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26dc 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [26dd 06-12 02:16:12.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26de 06-12 02:16:12.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [26df 06-12 02:16:12.82 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [26e0 06-12 02:16:12.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [26e1 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26e2 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes +peer1.org2.example.com | [26e3 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes +peer1.org2.example.com | [26e4 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26e5 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [26e6 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [26e7 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [26e8 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [26e9 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26ea 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [26eb 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [26ec 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [26ed 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26ee 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [26ef 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [26f0 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [26f1 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [26f2 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [26f3 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [26f4 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [26f5 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [26f6 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [26f7 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [26f8 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [26f9 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [26fa 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [26fb 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [26fd 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [26fc 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [26fe 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [2700 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2701 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [26ff 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2702 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2703 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2704 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2705 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2706 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2707 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2708 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2709 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [270a 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [270b 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [270c 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [270d 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [270e 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [270f 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2710 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [2711 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2713 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes +peer1.org2.example.com | [2714 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2712 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > alive: alive: +peer1.org2.example.com | [2715 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2716 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2717 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2718 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2719 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [271a 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [271b 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [271c 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:O$\r\216F:F\257[@\271\002 Y\233\215;\275\021;g\222\024\263\254D\334\027\373K\034\2131\314\2618)\222\036\205\350\330\315\327\277" > > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [271e 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [271f 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [271d 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 273 bytes, Signature: 0 bytes +peer1.org2.example.com | [2720 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2723 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2722 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2721 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2724 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2725 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [2726 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2727 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [2728 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2729 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [272a 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [272b 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [272c 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [272d 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [272e 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [272f 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [2730 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2731 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2732 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2733 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2734 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [2735 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2736 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2737 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2738 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2739 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [273a 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [273b 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [273c 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [273d 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [273e 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [273f 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2740 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [2741 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2742 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2743 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2744 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2745 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [2746 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2747 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2748 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2749 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [274a 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [274b 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [274c 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [274d 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 162 but got ts: inc_num:1528769652088169500 seq_num:161 +peer1.org2.example.com | [274e 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [274f 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2750 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2751 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2752 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2753 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2754 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2755 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2756 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2757 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2758 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org2.example.com | [2759 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [275a 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org2.example.com | [275b 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [275c 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org2.example.com | [275d 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org2.example.com | [275e 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [275f 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org2.example.com | [2760 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2761 06-12 02:16:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org2.example.com | [2762 06-12 02:16:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2763 06-12 02:16:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2764 06-12 02:16:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2765 06-12 02:16:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2766 06-12 02:16:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2767 06-12 02:16:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2768 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [2769 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [276a 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [276b 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [276c 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [276d 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org2.example.com | [276e 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [276f 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2770 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2771 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [2772 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [2773 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [2774 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2775 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2776 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [2777 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2778 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2779 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [277b 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org2.example.com | [277c 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [277d 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:ZNN%\332b\353 \024w_~\")\244\2539\214\002\204[\300x\214\203\300\000\250\362m" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > alive: +peer1.org2.example.com | [277e 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org2.example.com | [277f 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [277a 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2780 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org2.example.com | [2781 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2782 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [2783 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2784 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer1.org2.example.com | [2785 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [2786 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2787 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2788 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2789 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [278a 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [278b 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [278c 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [278d 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [278e 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [278f 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2790 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [2791 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org2.example.com | [2792 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2793 06-12 02:16:16.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [2794 06-12 02:16:16.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org2.example.com | [2795 06-12 02:16:16.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2796 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2797 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org2.example.com | [2798 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [2799 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [279a 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [279b 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [279c 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [279d 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [279e 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org2.example.com | [279f 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27a0 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [27a1 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [27a2 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [27a3 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [28f3 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [28f4 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [28f5 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [28f6 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [28f7 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [28f8 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 2872289812012144563, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 661 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [28f9 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\233\001" signature:"0D\002 w\337\350Vp\004\377Ow\377\226\343\313\214\325G?\210\311\272\244\272\354\251\335\256.\226+\272f\353\002 \014T\0337*/$\022\031\327B@\2266~\214q\277\237\006\261\n\317\226P\177\266\377r)]=" > +peer0.org1.example.com | [28fa 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 2872289812012144563, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 661 bytes, Signature: 0 bytes +peer0.org1.example.com | [28fb 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [28fc 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:35532 +peer0.org1.example.com | [28fd 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [28fe 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [28ff 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35532 +peer0.org1.example.com | [2900 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [28f1 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] +peer0.org1.example.com | [2901 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] +peer0.org1.example.com | [2902 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] +peer0.org1.example.com | [2903 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) +peer0.org1.example.com | [2904 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database +peer0.org1.example.com | [2905 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer0.org1.example.com | [2906 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer0.org1.example.com | [2907 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer0.org1.example.com | [2909 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer0.org1.example.com | [290a 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [290b 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [290c 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [290d 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [290e 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [290f 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2910 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [28d4 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:12091290199625780626 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes +peer0.org1.example.com | [2911 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:12091290199625780626 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes +peer0.org1.example.com | [2912 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2913 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:12091290199625780626 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes +peer0.org1.example.com | [2914 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2915 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2916 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2917 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2918 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2919 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [291a 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [291b 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [291c 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [291d 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [291e 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 12091290199625780626, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 662 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [291f 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\234\001" signature:"0D\002 \016\334v\346\274@\201Ck\321\033\250,\200\322W\225u\270-\240g\032\320;p\374\266\223\350\332\242\002 \026H\037\364\220n\344\230\r*\352\355\343>w/\210/7[\234O\360\362\221`\305l\245:\205P" > +peer0.org1.example.com | [2920 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 12091290199625780626, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 662 bytes, Signature: 0 bytes +peer0.org1.example.com | [2921 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [28b9 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59848 +peer0.org1.example.com | [2922 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59848 +peer0.org1.example.com | [2923 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +peer0.org1.example.com | [2924 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [2925 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing +peer0.org1.example.com | [2926 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org1.example.com | [2927 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59848 disconnected +peer0.org1.example.com | [2928 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [2908 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35532 +peer0.org1.example.com | [2929 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35532 +peer0.org1.example.com | [292a 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org1.example.com | [292b 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing +peer0.org1.example.com | [292c 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org1.example.com | [292d 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35532 disconnected +peer0.org1.example.com | [292e 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35394 disconnected +peer0.org1.example.com | [2930 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [292f 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [2931 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer0.org1.example.com | [2932 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [8] +peer1.org2.example.com | [27a4 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [27a5 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [27a6 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [27a7 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [27a8 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org2.example.com | [27a9 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +peer1.org2.example.com | [27ab 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer1.org2.example.com | [27aa 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: > +peer1.org2.example.com | [27ac 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27ad 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [27ae 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [27af 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [6 7 1 2 3 4 5] to 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org2.example.com | [27b0 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27b1 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org2.example.com | [27b2 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [27b3 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27b4 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [27b5 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27b6 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [27b7 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27b8 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org2.example.com | [27b9 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27ba 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [27bb 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [27bc 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27bd 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org2.example.com | [27be 06-12 02:16:16.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27bf 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org2.example.com:7051 +peer1.org2.example.com | [27c0 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [26c3 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:32840 +peer0.org2.example.com | [26c4 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:32840 +peer0.org2.example.com | [26c5 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:32840 +peer0.org2.example.com | [26c6 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:60934 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:3711124290966880616 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org2.example.com | [26c7 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [26c8 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [26c9 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org2.example.com | [26cb 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:60934 disconnected +peer0.org2.example.com | [26cc 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing +peer0.org2.example.com | [26cd 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +peer0.org2.example.com | [26ce 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:32840 disconnected +peer0.org2.example.com | [26cf 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [26ca 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:3711124290966880616 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +peer0.org2.example.com | [26d0 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [26d1 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [26d2 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [26d3 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [26d4 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [26d5 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [26d6 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [26d7 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [26d9 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [26d8 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [26da 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 3711124290966880616, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2933 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] +peer0.org1.example.com | [2934 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [8] +peer0.org1.example.com | [2935 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database +peer0.org1.example.com | [2936 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions +peer0.org1.example.com | [2937 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer0.org1.example.com | [2938 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] +peer0.org1.example.com | [2939 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer0.org1.example.com | [293a 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer0.org1.example.com | [293b 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [293c 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [293d 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [293e 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [293f 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer0.org1.example.com | [2940 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer0.org1.example.com | [2941 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer0.org1.example.com | [2942 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer0.org1.example.com | [2943 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2944 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2945 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2946 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2947 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2948 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2949 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [294a 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [294b 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [294c 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [294d 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [294e 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [294f 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2950 06-12 02:16:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2951 06-12 02:16:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2952 06-12 02:16:11.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2953 06-12 02:16:11.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org1.example.com:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2954 06-12 02:16:11.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2955 06-12 02:16:11.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [2956 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:7051 +peer0.org1.example.com | [2957 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:7051 +peer0.org1.example.com | [2958 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 +peer0.org1.example.com | [2959 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:59860 +peer0.org1.example.com | [295a 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org1.example.com | [295b 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [295c 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59860 +peer1.org2.example.com | [27c1 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer1.org2.example.com | [27c2 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27c3 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes +peer1.org2.example.com | [27c5 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org2.example.com | [27c4 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes +peer1.org2.example.com | [27c6 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27c7 06-12 02:16:16.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org2.example.com | [27c8 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [27c9 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [27cb 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27cd 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27cc 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27ce 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27ca 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [27cf 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27d0 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27d1 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27d2 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [27d3 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27d4 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27d5 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27d6 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [27d7 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [27d8 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [26db 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > alive: alive: +peer0.org2.example.com | [26dc 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 3711124290966880616, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes +peer0.org2.example.com | [26dd 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org1.example.com:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [26de 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 2872289812012144563, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 661 bytes, Signature: 0 bytes +peer0.org2.example.com | [26df 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 2872289812012144563, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 661 bytes, Signature: 0 bytes +peer0.org2.example.com | [26e0 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [26e1 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 2872289812012144563, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 661 bytes, Signature: 0 bytes +peer0.org2.example.com | [26e2 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [26e3 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [26e4 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:7051 +peer0.org2.example.com | [26e5 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:7051 +peer0.org2.example.com | [26e6 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 +peer0.org2.example.com | [26e7 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 154 but got ts: inc_num:1528769653227426900 seq_num:148 +peer0.org2.example.com | [26e9 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [26ea 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [26eb 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2710 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +peer1.org1.example.com | [2711 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +peer1.org1.example.com | [2712 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +peer1.org1.example.com | [2713 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator +peer1.org1.example.com | [2714 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +peer1.org1.example.com | [2715 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +peer1.org1.example.com | [2716 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +peer1.org1.example.com | [2717 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage +peer1.org1.example.com | [2718 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) +peer1.org1.example.com | [2702 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4202d1be0 env 0xc42036bda0 txn 0 +peer1.org1.example.com | [2719 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] +peer1.org1.example.com | [271a 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x4d, 0xcf, 0x4e, 0x7c, 0xc2, 0x5f, 0x80, 0xf, 0x3f, 0x60, 0x2d, 0x1b, 0xe9, 0x83, 0x9f, 0x18, 0x1d, 0x9a, 0x52, 0xc8, 0x19, 0x75, 0x20, 0xdf, 0xd0, 0xfb, 0xd, 0xd6, 0xf3, 0x8d, 0xc6, 0x3b} txOffsets= +peer1.org1.example.com | txId= locPointer=offset=71, bytesLength=19393 +peer1.org1.example.com | ] +peer1.org1.example.com | [271b 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index +peer1.org1.example.com | [271c 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index +peer1.org1.example.com | [271d 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] +peer1.org1.example.com | [271e 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] +peer1.org1.example.com | [271f 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] +peer1.org1.example.com | [2720 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) +peer1.org1.example.com | [2721 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database +peer1.org1.example.com | [2722 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +peer1.org1.example.com | [2723 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +peer1.org1.example.com | [2724 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +peer1.org1.example.com | [2725 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +peer1.org1.example.com | [2726 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:7051 +peer1.org1.example.com | [2727 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +peer1.org1.example.com | [2728 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [8] +peer1.org1.example.com | [272a 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] +peer1.org1.example.com | [2729 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database +peer1.org1.example.com | [272b 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions +peer1.org1.example.com | [272c 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +peer1.org1.example.com | [272d 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [8] +peer1.org1.example.com | [272e 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] +peer1.org1.example.com | [272f 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +peer1.org1.example.com | [2730 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +peer1.org1.example.com | [2731 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [2732 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [2733 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2734 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org1.example.com | [2735 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +peer1.org1.example.com | [2736 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +peer1.org1.example.com | [2737 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +peer1.org1.example.com | [2738 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +peer1.org2.example.com | [27d9 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org2.example.com | [27da 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [27db 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [27dc 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [27dd 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [27de 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27df 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27e0 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [27e1 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27e2 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27e4 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27e5 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [27e3 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [27e6 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27e7 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27e8 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [27e9 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [27ea 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [27eb 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27ec 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27ed 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27ee 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [27ef 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27f0 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org2.example.com | [27f1 06-12 02:16:17.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27f2 06-12 02:16:17.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [26ec 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [26ed 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [26ee 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [26e8 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org2.example.com | [26ef 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [26f0 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [26f1 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [26f2 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [26f3 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [26f4 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [26f5 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [26f6 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [26f7 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [26f8 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [26f9 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [26fa 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [26fb 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [26fc 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [26fd 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [26fe 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [26ff 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2700 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2701 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2702 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2703 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [295d 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59860 +peer0.org1.example.com | [295f 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:7051 +peer0.org1.example.com | [295e 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59860 +peer0.org1.example.com | [2960 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59860 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2961 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2963 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2964 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2965 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org1.example.com | [2966 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59860 disconnected +peer0.org1.example.com | [2967 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org1.example.com | [2968 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:7051 +peer0.org1.example.com | [2969 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:7051 +peer0.org1.example.com | [296a 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org1.example.com | [296b 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2962 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [296c 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [296d 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [296e 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [296f 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2970 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2971 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2972 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [2973 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2739 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:7051 +peer1.org1.example.com | [273a 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 +peer1.org1.example.com | [273b 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:112978558822334207 tag:EMPTY mem_req:qb\372\376K\013]\362\244\273\257|v(\036*\244\274\245\355t;\2727c\337\003\326\367\330\375\002 .\220F\325\322-\226\252\367/\335\003\374\017\322.\377\302A\350=#SB\232\263;i\206\344\211d" secret_envelope: > > , Envelope: 281 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [273c 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: nonce:112978558822334207 tag:EMPTY mem_req:qb\372\376K\013]\362\244\273\257|v(\036*\244\274\245\355t;\2727c\337\003\326\367\330\375\002 .\220F\325\322-\226\252\367/\335\003\374\017\322.\377\302A\350=#SB\232\263;i\206\344\211d" secret_envelope: > > , Envelope: 281 bytes, Signature: 0 bytes +peer1.org1.example.com | [273d 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [273e 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU EOF Got error, aborting: %!v(MISSING) +peer1.org1.example.com | [273f 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:42916 +peer1.org1.example.com | [2740 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:42916 +peer1.org1.example.com | [2741 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:42916 +peer1.org1.example.com | [2742 06-12 02:16:10.29 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:42916 +peer1.org1.example.com | [2743 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer1.org1.example.com | [2744 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 3711124290966880616, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes +peer1.org1.example.com | [2745 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2746 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 3711124290966880616, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes +peer1.org1.example.com | [2747 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [27f3 06-12 02:16:17.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [27f4 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [27f5 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [27f6 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org2.example.com | [27f7 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer1.org2.example.com | [27f8 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27f9 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [27fa 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [27fb 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [27fc 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org2.example.com | [27fd 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org2.example.com | [27fe 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [27ff 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org2.example.com | [2800 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2801 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2802 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [2803 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2804 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2806 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer1.org2.example.com | [2807 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2704 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2705 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2706 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2707 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2708 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2709 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [270a 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [270b 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [270c 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [270d 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [270e 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [270f 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:53066 +peer0.org2.example.com | [2710 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:53066 +peer0.org2.example.com | [2711 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:53066 +peer0.org2.example.com | [2712 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:53066 +peer0.org2.example.com | [2713 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:53066 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2714 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2715 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2716 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2717 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2974 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2975 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2976 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2977 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2978 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2979 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [297a 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [297b 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [297c 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [297d 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [297e 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [297f 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers +peer0.org1.example.com | [2980 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [2981 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2982 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [2983 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2984 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org1.example.com | [2985 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2986 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer0.org1.example.com | [2987 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2988 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [2989 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [298a 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [298b 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [298c 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [298d 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2748 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2749 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 149 but got ts: inc_num:1528769651824440500 seq_num:148 +peer1.org1.example.com | [274a 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [274b 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [274c 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [274d 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [274e 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [274f 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2750 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2751 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2752 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2753 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2754 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2755 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2756 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2757 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2758 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2759 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [275a 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [275b 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [275c 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [275d 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [275e 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [275f 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2808 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\245\001" signature:"0D\002 W\342Q\315\313\265\017\316\010\036\204\360\202\r\033q\321\257\276,\237\227b\224\334w\241^\203.+\374\002 \0176\223#\335\030\337\213 \225C\352&W\340a\321 alive: alive: alive:" > +peer1.org2.example.com | [2809 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org2.example.com | [280a 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2805 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [280b 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [280c 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [280d 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [280e 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [280f 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2810 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2811 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [2812 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2813 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [2814 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org2.example.com | [2815 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [2816 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [2817 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2818 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [2819 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [281b 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [281c 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [281d 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2718 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:7051 +peer0.org2.example.com | [2719 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:7051 +peer0.org2.example.com | [271a 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +peer0.org2.example.com | [271b 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:53066 disconnected +peer0.org2.example.com | [271c 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +peer0.org2.example.com | [271d 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:7051 +peer0.org2.example.com | [271e 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +peer0.org2.example.com | [271f 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2720 06-12 02:16:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.4:37446, reason: Timed out waiting for connection message from 172.18.0.4:37446 +peer0.org2.example.com | [2721 06-12 02:16:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> ERRO Authentication failed: Timed out waiting for connection message from 172.18.0.4:37446 +peer0.org2.example.com | [2722 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2723 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2724 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2725 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [2726 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [2727 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2728 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +peer0.org2.example.com | [2729 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [272a 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [272b 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [272c 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [272d 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [272e 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [272f 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2730 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [2731 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer0.org2.example.com | [2732 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2733 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2734 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2735 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2736 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2737 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2738 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2739 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [273a 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [273b 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [273d 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [273e 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [273c 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [273f 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2740 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2741 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2742 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2743 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2744 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2745 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2746 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2747 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2748 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [274a 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2749 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [274b 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [274c 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [274d 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [274e 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [274f 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2750 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2751 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2752 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2753 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2754 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2755 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2756 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [2757 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [2758 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [2759 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [275a 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [275b 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org2.example.com | [275c 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [275d 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [275e 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [275f 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2760 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2761 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2762 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2763 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2764 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2765 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [2766 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2767 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" secret_envelope: > alive:\352\230eV\340\027XS\276H\323z&+\363.\266\271\r9\002 \021\372x\220\275\267\003\373'\265\303\206\030\231\327\\\362\264\203\243\022\223\332\271r>\270\243\243@\010\023" secret_envelope: > +peer0.org2.example.com | [2768 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org2.example.com | [2769 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [276a 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [276b 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 2 peers +peer0.org2.example.com | [276c 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [276d 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [276e 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [276f 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [2771 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2770 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2772 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2773 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [2774 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2775 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [2776 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [2777 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2778 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2779 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [277a 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [277b 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [277c 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [277d 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [277e 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [277f 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2780 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2781 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2782 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2783 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2784 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2785 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [2786 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2787 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > alive: alive:\365_" > +peer0.org2.example.com | [2788 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [2789 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [278a 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [278b 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [278c 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [278d 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [278e 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [278f 06-12 02:16:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [2790 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2791 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2792 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org2.example.com | [2793 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2794 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2796 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2797 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2795 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2798 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2799 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [279a 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [279b 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [279c 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [279d 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [279e 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [279f 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [27a0 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27a1 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [27a2 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27a3 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [27a4 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27a5 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [27a6 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [27a7 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [27a8 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [27a9 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [27ab 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [27aa 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [27ac 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [27ad 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [27ae 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [27af 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [27b0 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [27b1 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [27b2 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [27b3 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 273 bytes, Signature: 0 bytes +peer0.org2.example.com | [27b4 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [27b6 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [27b8 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27b5 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27b7 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [27b9 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27ba 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes +peer0.org2.example.com | [27bb 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes +peer0.org2.example.com | [27bc 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [27bd 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 541 bytes, Signature: 0 bytes +peer0.org2.example.com | [27be 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [27bf 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [27c0 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [27c1 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [27c2 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [27c3 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [27c4 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [27c5 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [27c6 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [27c7 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27c8 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [27c9 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27ca 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27cb 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [27cc 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [27cd 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [27ce 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [27cf 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [27d0 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [27d1 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [27d2 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [27d3 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [27d4 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [27d5 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [27d6 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [27d7 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [27d8 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [27d9 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [27da 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 160 but got ts: inc_num:1528769651824440500 seq_num:159 +peer0.org2.example.com | [27db 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [27dc 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [27e0 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [27dd 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [27de 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [27e1 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org2.example.com | [27e2 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [27df 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [27e3 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [27e4 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [27e5 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [27e6 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [27e7 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [27ea 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [27e8 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [27ec 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org2.example.com | [27e9 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer0.org2.example.com | [27ed 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [27ee 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27ef 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [27f0 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27f1 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [27f2 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [27eb 06-12 02:16:12.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [27f3 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [27f4 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [27f5 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [27f6 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [27f7 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [27f8 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [27f9 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [27fa 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [27fb 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [27fc 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [27fd 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [27fe 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [27ff 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org2.example.com | [2800 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2801 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2802 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2760 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2761 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2762 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2763 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2764 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2765 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2766 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2767 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2768 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2769 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [276a 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [276b 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [276c 06-12 02:16:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [276d 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [276e 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [276f 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2770 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2771 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2772 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2773 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] -> WARN peer0.org1.example.com:7051, PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] isn't responsive: EOF +peer1.org1.example.com | [2774 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Entering [[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182]] +peer1.org1.example.com | [2775 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Closing connection to Endpoint: peer0.org1.example.com:7051, InternalEndpoint: peer0.org1.example.com:7051, PKI-ID: [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182], Metadata: [] +peer1.org1.example.com | [2776 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] expireDeadMembers.CloseConn.CloseConn -> DEBU Closing connection for , PKIid:[51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [2777 06-12 02:16:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] expireDeadMembers -> WARN Exiting +peer1.org1.example.com | [2778 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn: , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:45262 +peer1.org1.example.com | [2779 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" from 172.18.0.4:45262 +peer1.org1.example.com | [277a 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:45262 +peer1.org1.example.com | [277b 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:45262 +peer1.org1.example.com | [277c 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [277d 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [277e 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [277f 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2780 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2781 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2782 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2783 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2784 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2785 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2786 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2787 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2788 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [2789 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [278a 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 2 peers +peer1.org1.example.com | [278c 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [278b 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [278d 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [278e 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [278f 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2790 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2791 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +peer1.org1.example.com | [2792 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2793 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2794 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2795 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2796 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2797 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2798 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2799 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Entering, AliveMessage: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes t: {1528769652088169500 157} +peer1.org1.example.com | [279a 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.resurrectMember -> INFO Exiting +peer1.org1.example.com | [279b 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [279c 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [279d 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [279e 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [279f 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [27a0 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27a1 06-12 02:16:12.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [27a2 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27a3 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Exiting +peer1.org1.example.com | [27a4 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Returning false +peer1.org1.example.com | [27a5 06-12 02:16:12.24 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : Entering +peer1.org1.example.com | [27a6 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [27a7 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [27a8 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27a9 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [27aa 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [27ab 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [27ac 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [27ad 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27ae 06-12 02:16:12.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [27af 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [27b0 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer1.org1.example.com | [27b1 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27b2 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [27b3 06-12 02:16:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [27b4 06-12 02:16:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27b5 06-12 02:16:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [27b6 06-12 02:16:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [27b7 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [27b8 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [27b9 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [27ba 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [27bb 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [27bc 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [27bd 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [27be 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [27bf 06-12 02:16:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [27c0 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [27c1 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [27c2 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27c3 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [27c4 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27c5 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [27c6 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27c7 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +peer1.org1.example.com | [27c8 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +peer1.org1.example.com | [27c9 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [27ca 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27cb 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [27cc 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27cd 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [27ce 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27cf 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [27d0 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\235\001" signature:"0D\002 |\211\271\005\223+\r?\264\273c:\224\373\344\255~\357x~\277\347\303\255n\341\343\353.rs\360\002 \017]5\347\222\t\006D*\rb\236\200\"\333\203;'\035\374'\377\343?\314R\250\252r\266\006\220" > alive:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > alive: +peer1.org1.example.com | [27d1 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [27d3 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27d2 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27d4 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [27d5 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27d6 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [27d7 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27d8 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [27d9 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [27da 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [27db 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27dc 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [27dd 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [27de 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [5 6 7 2 1 3 4] to 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [27df 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27e0 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes +peer1.org1.example.com | [27e1 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27e2 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes +peer1.org1.example.com | [27e3 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer1.org1.example.com | [27e4 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [27e5 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer1.org1.example.com | [27e6 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [27e7 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [27e8 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [27e9 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [27ea 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [27eb 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [27ec 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [27ed 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [27ee 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" secret_envelope: > alive:\362c+\211\265\320T8(\002 \002\226\242\326\023\377ll\304\007\374.%n\315\214\362\226O\223>\211\226\035|\202^+A\3442\344" secret_envelope: > +peer1.org1.example.com | [27ef 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org1.example.com | [27f0 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27f1 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [27f2 06-12 02:16:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [27f3 06-12 02:16:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [27f4 06-12 02:16:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27f6 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [27f5 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [27f7 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [27f8 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [27f9 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [27fa 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [27fb 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [27fc 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [27fd 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [27fe 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [27ff 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2800 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2801 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2802 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2803 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2804 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2806 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer1.org1.example.com | [2807 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer1.org1.example.com | [2808 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2805 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2809 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [280a 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer1.org1.example.com | [280b 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [280c 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [280d 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [280e 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [280f 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2810 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2811 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2812 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2813 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2814 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2815 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2816 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2817 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2818 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2819 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [281a 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [281b 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [281c 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [281d 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [281e 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [281f 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2820 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2821 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2822 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2823 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2824 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2825 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2826 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2827 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2828 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [282a 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [282b 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [282c 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [282d 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > alive:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > alive: alive:4\256\\6\3421^\347\033\363\333\356^*\304tPa\322]\357\352_\264" > +peer1.org1.example.com | [282e 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [282f 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2829 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2830 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2831 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2832 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2833 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2834 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [2835 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2836 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer1.org1.example.com | [2837 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2838 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [2839 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [283a 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [283b 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [283c 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [283d 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [283e 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [283f 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2840 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2841 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2842 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2843 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2844 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2845 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [2846 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2847 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [2848 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [2849 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [284a 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [284b 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [284c 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [284d 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [284e 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [284f 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [2850 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [2851 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2853 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2854 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2855 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2852 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2856 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2857 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2858 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2859 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [285a 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [285b 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [285c 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [285e 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [285d 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [285f 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2860 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [2861 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2862 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [2863 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2864 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2865 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2866 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2867 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [2868 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2869 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [286a 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [286b 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [286c 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [286d 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [286e 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [286f 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2870 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes +peer1.org1.example.com | [2872 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes +peer1.org1.example.com | [2873 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2874 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2871 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2875 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2876 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2877 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2878 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2879 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 161 but got ts: inc_num:1528769652088169500 seq_num:159 +peer1.org1.example.com | [287a 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [287c 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [287d 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [287b 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [287e 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [287f 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2880 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2881 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2882 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2883 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2884 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2885 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2886 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2887 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2888 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [2889 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [288a 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [288b 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [288c 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 161 but got ts: inc_num:1528769651824440500 seq_num:160 +peer1.org1.example.com | [288d 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [288e 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [288f 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2890 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 161 but got ts: inc_num:1528769652088169500 seq_num:160 +peer1.org1.example.com | [2891 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2892 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2893 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2894 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2895 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2896 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2897 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2898 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2899 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [289a 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [289b 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [289c 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [289d 06-12 02:16:13.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [289e 06-12 02:16:13.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [289f 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [28a0 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [298e 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [298f 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2990 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2991 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2992 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [2993 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [2994 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [2995 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2996 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org1.example.com | [2997 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2998 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2999 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [299a 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [299b 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [299c 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [299d 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [299e 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [299f 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [29a0 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [29a1 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [29a2 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [29a3 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [29a4 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [29a5 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [29a6 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [29a7 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive: alive:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\236\001" signature:"0E\002!\000\363\213Q7\0078\326\343\032\360\234\203\361\312\240\326#{\336\302\355\230\232\2361\022\232u\2575\n=\002 %\344\2741W\033\307\341\030b\242\003\225L:9\037XqJ\301\032\337\312\366^\334\250\360\001n\253" > +peer0.org1.example.com | [29a8 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [29a9 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [29aa 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [29ab 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [29ac 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29ad 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [29ae 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [29af 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29b0 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [29b1 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [29b2 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [29b3 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [29b4 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [29b5 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [29b6 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [29b7 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [29b8 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [29b9 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [29ba 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [29bb 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [29bc 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [29bd 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [29be 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [29bf 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [29c0 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [29c1 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [29c2 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [29c3 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 273 bytes, Signature: 0 bytes +peer0.org1.example.com | [29c4 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [29c5 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [29c7 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [29c8 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [29c9 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [29ca 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29cb 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [29cc 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [29cd 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29ce 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [29cf 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [29d0 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29c6 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [29d1 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [29d2 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [29d3 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [29d4 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29d5 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [29d6 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29d7 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org1.example.com | [29d8 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [29d9 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [29da 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [29db 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [29dc 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [29dd 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [29de 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [29df 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [29e0 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [29e1 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [29e2 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [29e3 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [29e4 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [29e5 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [29e6 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [29e7 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [29e8 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [29ea 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [29eb 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [29ec 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [29ed 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [29ee 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [29ef 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [29f0 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [29e9 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [29f2 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [29f3 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [29f4 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29f1 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org1.example.com | [29f5 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org1.example.com | [29f6 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org1.example.com | [29f7 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29f9 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [29fa 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [29fb 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [29fc 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [29fd 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [29fe 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [29ff 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2a00 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a01 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a02 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a03 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2a04 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2a05 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2a06 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2a07 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2a08 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2a09 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a0a 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [29f8 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a0b 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a0c 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a0d 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a0e 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [2a0f 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2a10 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a11 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org2.example.com | [281e 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [281a 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [281f 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2820 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2822 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2821 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2823 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2824 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2825 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [2826 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2827 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2828 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2829 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [282a 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org2.example.com | [282b 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [282c 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [282d 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [282e 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org2.example.com | [282f 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2830 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] : [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us declaration +peer1.org2.example.com | [2831 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:41632 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2832 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2833 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2834 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2835 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2836 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [28a1 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [28a2 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28a3 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [28a4 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [28a5 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [28a6 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [28a7 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [28a8 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [28a9 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [28aa 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [28ab 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [28ac 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [28ad 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer1.org1.example.com | [28ae 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [28af 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\241\001" signature:"0E\002!\000\311\336e\3714b\020\242c\244\275\260+5\265:\347\361\221\330\315\267\004\014T\214\036\223&wg\203\002 \n\027\022\362G\004[\036d\210\321\274f\004\t\211\200\005g\2678$\002a\3200sT\345\315\027\017" > alive:ZNN%\332b\353 \024w_~\")\244\2539\214\002\204[\300x\214\203\300\000\250\362m" > +peer1.org1.example.com | [28b0 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer1.org1.example.com | [28b1 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [28b2 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer1.org1.example.com | [28b3 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [28b4 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2803 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2804 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2805 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 160 but got ts: inc_num:1528769652088169500 seq_num:159 +peer0.org2.example.com | [2806 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2807 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2808 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2809 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 160 but got ts: inc_num:1528769651824440500 seq_num:158 +peer0.org2.example.com | [280a 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [280b 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [280c 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [280d 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [280e 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [280f 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2810 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2811 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2812 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2813 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2814 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2815 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2816 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2817 06-12 02:16:12.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2818 06-12 02:16:12.63 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [2819 06-12 02:16:12.63 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [281a 06-12 02:16:12.63 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [281b 06-12 02:16:12.64 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2a12 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a13 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [6 7 1 2 3 4 5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2a14 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a15 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a16 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a17 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a18 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [2a19 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a1a 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [2a1b 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2a1c 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org1.example.com | [2a1d 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2a1e 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2a1f 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2a20 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2a21 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a22 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2a24 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a25 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a26 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2a27 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2a28 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2a29 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a2a 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2837 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org2.example.com | [2838 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org2.example.com | [2839 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org2.example.com | [283a 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org2.example.com | [283b 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org2.example.com | [283c 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org2.example.com | [283d 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [283e 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [283f 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2840 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [2841 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [2842 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2843 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org2.example.com | [2844 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [2845 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org2.example.com | [2846 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2847 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [2848 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [2849 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org2.example.com | [284a 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:56614 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [284b 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org2.example.com | [284c 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org2.example.com | [284d 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org2.example.com | [284e 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [28b5 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [28b6 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [28b7 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [28b8 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [28b9 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [28ba 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28bb 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [28bc 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28bd 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer1.org1.example.com | [28be 06-12 02:16:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28bf 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [28c0 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [28c1 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [28c2 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28c3 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [28c4 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [28c5 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 3 4 5 6 7 2] to 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer1.org1.example.com | [28c6 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28c7 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" secret_envelope:\004\212\215\242F1@\276k\304!C\360>\252\334\334\340\211\243\347\267D\306" > > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [28c8 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" secret_envelope:\004\212\215\242F1@\276k\304!C\360>\252\334\334\340\211\243\347\267D\306" > > > , Envelope: 272 bytes, Signature: 0 bytes +peer1.org1.example.com | [28ca 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [28cb 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [28c9 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [281c 06-12 02:16:12.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +peer0.org2.example.com | [281d 06-12 02:16:12.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [281e 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [281f 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2820 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [2821 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2822 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org2.example.com | [2823 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org2.example.com | [2824 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org2.example.com | [2825 06-12 02:16:12.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2826 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2827 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2828 06-12 02:16:12.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2829 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [282a 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org2.example.com | [282b 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [282c 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [282d 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [282e 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [282f 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [7 1 2 3 4 5 6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [2830 06-12 02:16:12.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2831 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2832 06-12 02:16:13.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2833 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2834 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [2835 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a2b 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a2c 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2a2d 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a23 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a2e 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a2f 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2a30 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 157 but got ts: inc_num:1528769653227426900 seq_num:156 +peer0.org1.example.com | [2a31 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a32 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a33 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2a34 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a35 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a36 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a37 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2a38 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2a39 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2a3a 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2a3b 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2a3c 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2a3d 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a3e 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2a40 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a41 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a42 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2a3f 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a43 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [28cc 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [28cd 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [28ce 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [28cf 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [28d0 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [28d1 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [28d2 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [28d3 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer1.org1.example.com | [28d4 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [28d5 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" secret_envelope:\004\212\215\242F1@\276k\304!C\360>\252\334\334\340\211\243\347\267D\306" > > alive: > +peer1.org1.example.com | [28d6 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer1.org1.example.com | [28d7 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [28d8 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [28d9 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [28da 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer1.org1.example.com | [28db 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28dc 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [28dd 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [28de 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer1.org1.example.com | [28df 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [28e0 06-12 02:16:16.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer1.org1.example.com | [28e1 06-12 02:16:16.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer1.org1.example.com | [28e2 06-12 02:16:16.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28e3 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [2836 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2837 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2838 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2839 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [283a 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [283b 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [283c 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [283d 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [283e 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [283f 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2840 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2841 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2842 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2843 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2844 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2845 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2846 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2847 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2848 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2849 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [284a 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [284b 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [284c 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [284d 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2a45 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a46 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a47 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a48 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [2a49 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a44 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a4a 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2a4b 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a4c 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a4d 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a4e 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a4f 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2a50 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2a51 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2a52 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2a53 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2a54 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2a55 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a56 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2a57 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [2a58 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [28e4 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [28e5 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer1.org1.example.com | [28e6 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28e7 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [28e8 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28e9 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [28ea 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28eb 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer1.org1.example.com | [28ec 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [28ed 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [28ee 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [28ef 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [28f0 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [28f1 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [28f2 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [28f3 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [28f4 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [28f5 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer1.org1.example.com | [28f6 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [284e 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [284f 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2851 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2850 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2852 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2853 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2855 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2854 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2857 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2858 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [2856 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [285a 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2859 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [285b 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [285c 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [285d 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [285e 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [285f 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2860 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2861 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2862 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2863 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [2864 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2866 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [2867 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2865 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\240\001" signature:"0D\002 \027Dj\214\2275\220\036\225Z\031\347Cz;}\272^\315\366\026;jS\274\306T\360BF\320w\002 :\233l\305\227\030\340{\253\220s\331u\000n\270M\340p9\313\0212\212\255\376\323;\301\233\rM" > alive:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > alive: +peer0.org2.example.com | [2868 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2869 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [286a 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [286b 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:O$\r\216F:F\257[@\271\002 Y\233\215;\275\021;g\222\024\263\254D\334\027\373K\034\2131\314\2618)\222\036\205\350\330\315\327\277" > > > , Envelope: 273 bytes, Signature: 0 bytes +peer0.org2.example.com | [286c 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:O$\r\216F:F\257[@\271\002 Y\233\215;\275\021;g\222\024\263\254D\334\027\373K\034\2131\314\2618)\222\036\205\350\330\315\327\277" > > > , Envelope: 273 bytes, Signature: 0 bytes +peer0.org2.example.com | [286d 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [286e 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:O$\r\216F:F\257[@\271\002 Y\233\215;\275\021;g\222\024\263\254D\334\027\373K\034\2131\314\2618)\222\036\205\350\330\315\327\277" > > > , Envelope: 273 bytes, Signature: 0 bytes +peer0.org2.example.com | [286f 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org2.example.com | [2870 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2871 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org2.example.com | [2872 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2873 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2874 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2875 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2876 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2877 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2878 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org2.example.com | [2879 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [287b 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org2.example.com | [287c 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [287a 06-12 02:16:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:O$\r\216F:F\257[@\271\002 Y\233\215;\275\021;g\222\024\263\254D\334\027\373K\034\2131\314\2618)\222\036\205\350\330\315\327\277" > > alive: > +peer0.org2.example.com | [287d 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [287e 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [287f 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2880 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2881 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2882 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2883 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] +peer0.org2.example.com | [2884 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2885 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2886 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2887 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2888 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2889 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [288a 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [288b 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [288c 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [288d 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [288e 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [288f 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2890 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2892 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" +peer0.org2.example.com | [2893 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [2894 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > alive:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > alive: +peer0.org2.example.com | [2895 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes +peer0.org2.example.com | [2896 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2891 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2897 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2898 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2899 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [289a 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [289b 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [289c 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [289d 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [289e 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer0.org2.example.com | [289f 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [28a0 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org2.example.com | [28a1 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [28a2 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [28a3 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28a4 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org2.example.com | [28a5 06-12 02:16:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [28a6 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28a7 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28a8 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [28a9 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [28ab 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [28ac 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [28aa 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [28ad 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [28ae 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org2.example.com | [28af 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [28b0 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [28b1 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [28b2 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org2.example.com | [28b3 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [28b4 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [28b5 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [28b6 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [28b7 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [28b8 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28b9 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org2.example.com | [28ba 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [28bb 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28bc 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [28bd 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28be 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [28bf 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28c0 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [28c1 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [28c2 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [28c3 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [28c4 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [28c5 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [28c6 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [28c7 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [28c8 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [28c9 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [28ca 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28cb 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [28cd 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org2.example.com | [28ce 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [28cf 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [28d0 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [28d1 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [28d2 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [28cc 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [28d3 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [28d4 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [28d5 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [28d7 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [28d8 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [28d6 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [28d9 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [28da 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [28db 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [28dc 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [28dd 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [28de 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [28df 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [28e0 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [28e1 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [28e2 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [28e3 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [28e4 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [28e5 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [28e6 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [28e7 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [28e8 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org2.example.com | [28e9 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [28ea 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [28eb 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [28ec 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [28ed 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [28ee 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [28ef 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +peer0.org2.example.com | [28f0 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [28f2 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [28f1 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [28f3 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [28f4 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [28f5 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [28f6 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org2.example.com | [28f7 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [28f8 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer0.org2.example.com | [28f9 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [28fa 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [28fb 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [28fc 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [28fd 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [28fe 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [28ff 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org2.example.com | [2900 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2901 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2902 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2903 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org2.example.com | [2904 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 164 but got ts: inc_num:1528769651824440500 seq_num:162 +peer0.org2.example.com | [2905 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2906 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2907 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2908 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2909 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [290a 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [290b 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [290c 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org1.example.com:7051" pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" lastAliveTS: 1528769652088169500, 164 but got ts: inc_num:1528769652088169500 seq_num:163 +peer0.org2.example.com | [290e 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [290d 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [290f 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2910 06-12 02:16:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2911 06-12 02:16:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2912 06-12 02:16:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2913 06-12 02:16:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2914 06-12 02:16:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2915 06-12 02:16:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2916 06-12 02:16:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2917 06-12 02:16:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2918 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org2.example.com:7051 +peer0.org2.example.com | [2919 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [291a 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org2.example.com | [291b 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [291c 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org2.example.com | [291d 06-12 02:16:16.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org2.example.com | [291e 06-12 02:16:16.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org2.example.com | [291f 06-12 02:16:16.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2920 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2921 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org2.example.com | [2922 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2923 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [2924 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [2925 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +peer0.org2.example.com | [2926 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6 7] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org2.example.com | [2927 06-12 02:16:16.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2928 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2929 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [292a 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [292b 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [292c 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [292d 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a59 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\362c+\211\265\320T8(\002 \002\226\242\326\023\377ll\304\007\374.%n\315\214\362\226O\223>\211\226\035|\202^+A\3442\344" > alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\240\001" signature:"0D\002 \027Dj\214\2275\220\036\225Z\031\347Cz;}\272^\315\366\026;jS\274\306T\360BF\320w\002 :\233l\305\227\030\340{\253\220s\331u\000n\270M\340p9\313\0212\212\255\376\323;\301\233\rM" > +peer0.org1.example.com | [2a5a 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a5b 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2a5c 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a5d 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a5e 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a5f 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a60 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a61 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a62 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a63 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a64 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a65 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a66 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a67 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a68 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a69 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a6a 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a6b 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a6c 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2a6d 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a6e 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a6f 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a70 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2a71 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a72 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a73 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a74 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2a75 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2a76 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2a77 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2a78 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2a79 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2a7a 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a7b 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2a7c 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2a7d 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2a7e 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a7f 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2a80 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a81 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2a82 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a83 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2a84 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a85 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a86 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2a87 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a88 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a89 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a8a 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a8b 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2a8c 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2a8d 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2a8e 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2a8f 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2a90 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2a91 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2a92 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2a93 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2a94 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [2a95 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2a96 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\241\001" signature:"0E\002!\000\311\336e\3714b\020\242c\244\275\260+5\265:\347\361\221\330\315\267\004\014T\214\036\223&wg\203\002 \n\027\022\362G\004[\036d\210\321\274f\004\t\211\200\005g\2678$\002a\3200sT\345\315\027\017" secret_envelope: > +peer0.org1.example.com | [2a97 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org1.example.com | [2a98 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2a99 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a9a 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a9b 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2a9c 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2a9d 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2a9e 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2a9f 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +peer0.org1.example.com | [2aa0 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aa1 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2aa2 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aa3 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2aa4 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aa5 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2aa6 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aa7 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aa8 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2aa9 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aaa 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aab 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2aac 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aad 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2aae 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aaf 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ab0 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2ab1 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ab2 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2ab3 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2ab4 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2ab5 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2ab6 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2ab7 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2ab8 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2ab9 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2aba 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2abb 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +peer0.org1.example.com | [2abc 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2abd 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\242\001" signature:"0D\002 K\353\036\342\026\353\250\213\256\353\340L\032\215M8\242\277\013|\351\363\361\270\026|\300S~\217\034\024\002 (\353-\252z\024o\271.(I\260J\206\217\316\233\225U$\365\336\036C\2424\342\222%>2\207" > +peer0.org1.example.com | [2abe 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [2abf 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2ac0 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ac1 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ac2 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2ac3 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [2ac4 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2ac5 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer0.org1.example.com | [2ac6 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2ac7 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer0.org1.example.com | [2ac8 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2ac9 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aca 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2acb 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2acc 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2acd 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ace 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2acf 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ad0 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ad1 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2ad2 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +peer0.org1.example.com | [2ad3 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2ad4 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ad5 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2ad6 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ad7 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ad8 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ad9 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ada 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2adb 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org1.example.com | [2adc 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +peer0.org1.example.com | [2add 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2ade 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2adf 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ae0 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ae1 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2ae2 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" secret_envelope:\004\212\215\242F1@\276k\304!C\360>\252\334\334\340\211\243\347\267D\306" > > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2ae3 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2ae4 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2ae5 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ae7 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2ae6 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 272 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ae8 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2ae9 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aea 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aed 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aee 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2aef 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +peer0.org1.example.com | [2af0 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2af1 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2aec 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2af2 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes +peer0.org1.example.com | [2aeb 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [2af3 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2af4 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2af5 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2af6 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2af7 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2af8 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2af9 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2afa 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2afb 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2afc 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2afd 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2afe 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2aff 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2b00 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b01 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2b02 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2b03 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2b04 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b05 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2b06 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2b07 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2b08 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2b09 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2b0a 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2b0b 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2b0c 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b0d 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2b0e 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b0f 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b11 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b10 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2b12 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2b13 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 163 but got ts: inc_num:1528769651824440500 seq_num:162 +peer0.org1.example.com | [2b14 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b15 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2b16 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2b17 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2b18 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b19 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2b1a 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2b1b 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 161 but got ts: inc_num:1528769653227426900 seq_num:160 +peer0.org1.example.com | [2b1c 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b1d 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2b1e 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2b1f 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2b20 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2b21 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2b22 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2b23 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2b24 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b25 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2b26 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b27 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b28 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [2b29 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2b2a 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer0.org1.example.com | [2b2b 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b2c 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +peer0.org1.example.com | [2b2d 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2b2e 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +peer0.org1.example.com | [2b2f 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2b30 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2b31 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2b32 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2b33 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b34 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2b35 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b36 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b37 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b38 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +peer0.org1.example.com | [2b39 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b3a 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b3b 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b3c 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b3d 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 6 7 1 2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2b3e 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b3f 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b40 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b41 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +peer0.org1.example.com | [2b42 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b43 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b44 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b45 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b46 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b47 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2b48 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2b49 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2b4a 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2b4b 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2b4c 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2b4d 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b4f 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +peer0.org1.example.com | [2b50 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2b51 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\244\001" signature:"0E\002!\000\323\264\325;\207t\203\312Q\210d\362\305w\344p\r\367\210\304\250\022j\217\263\036o\331\233\2232@\002 g\307|8\246\203\315\266VNS/\205A\270\326c\367\353\326\254\3040\034^\204\023\003\344\254\256\356" > +peer0.org1.example.com | [2b52 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b53 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b4e 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2b54 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b55 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b56 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b57 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b58 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b59 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b5a 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b5b 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2b5c 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b5d 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b5e 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b5f 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2b60 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2b61 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2b62 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2b63 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2b64 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2b65 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b66 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2b67 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b68 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2b69 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b6a 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b6b 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2b6c 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b6d 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b6e 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org1.example.com | [2b6f 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b70 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b71 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2b72 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2b73 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2b74 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b75 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b76 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b77 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b78 06-12 02:16:17.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org1.example.com | [2b79 06-12 02:16:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org1.example.com | [2b7a 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +peer0.org1.example.com | [2b7b 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2b7d 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b7e 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b7f 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b80 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b7c 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2b81 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b82 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b83 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2b84 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b85 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b86 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b87 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org1.example.com | [2b88 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b89 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2b8a 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +peer0.org1.example.com | [2b8b 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +peer0.org1.example.com | [2b8c 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +peer0.org1.example.com | [2b8d 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2b8e 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b8f 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b90 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b91 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2b92 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2b93 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2b94 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b95 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b96 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2b97 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2b98 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b99 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b9a 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b9b 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org1.example.com | [2b9c 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2b9d 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b9e 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2b9f 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2ba0 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org1.example.com | [2ba1 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org1.example.com | [2ba2 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2ba3 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer0.org1.example.com | [2ba4 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2ba5 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2ba6 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2ba7 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2ba8 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2baa 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org1.example.com | [2bab 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +peer0.org1.example.com | [2bac 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\246\001" signature:"0E\002!\000\226\014\306\330\177\237I'\367\334#'\236\275P\317e\323f!^\360-M\0032\343\022\254s\365\265\002 \024n\236cWG\003\367D(i\232\276R%\213D^\325\215\200\360MQ\274\201\371\000\334C\002\210" secret_envelope:t\032\032\312\026\007z\017\266\343\177\002 C\365a\013;A,jekW\252\202!U[&\272~\022\001|\251\r\365\277\330\2710\333\271\235" > > +peer0.org1.example.com | [2bad 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer0.org1.example.com | [2bae 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2ba9 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2baf 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bb0 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2bb1 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2bb2 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bb3 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bb4 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2bb5 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2bb6 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2bb7 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2bb8 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org1.example.com | [2bb9 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2bba 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2bbb 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2bbc 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2bbe 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bbf 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2bbd 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2bc0 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bc1 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2bc2 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bc3 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bc4 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2bc5 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2bc6 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bc7 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2bc8 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bc9 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org1.example.com | [2bca 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2bcb 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bcc 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2bcd 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bce 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bcf 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2bd0 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2bd1 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bd2 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bd3 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2bd4 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org1.example.com | [2bd5 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org1.example.com | [2bd6 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org1.example.com | [2bd7 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org1.example.com | [2bd8 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org1.example.com | [2bd9 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org1.example.com | [2bda 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2bdb 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2bdc 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org1.example.com | [2bdd 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2bde 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2bdf 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2be0 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org1.example.com | [2be1 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2be2 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2be3 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2be4 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2be5 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2be6 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org1.example.com | [2be7 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2be8 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org1.example.com | [2be9 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org1.example.com | [2bea 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org1.example.com | [2beb 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [292e 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [292f 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2930 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2931 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2932 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2933 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2934 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2935 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2936 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2937 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2938 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2939 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [293a 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [293b 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [293c 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [293d 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [293e 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [293f 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2940 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2941 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2942 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2943 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2944 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer0.org2.example.com | [2945 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28f7 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > alive: +peer1.org1.example.com | [28f8 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [28f9 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [28fa 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +peer1.org1.example.com | [28fb 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28fc 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [28fd 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [28fe 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [28ff 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2900 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2901 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2902 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2903 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2904 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2905 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2906 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2907 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2908 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2909 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [290a 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [290b 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [290c 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [290d 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [290e 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2946 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2947 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2948 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2949 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [294a 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [294b 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [294c 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [294d 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [294e 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [294f 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [2950 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2951 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [2952 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [2953 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2954 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2955 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2956 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2957 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2958 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2959 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [295a 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [295b 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [295c 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [290f 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2910 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2911 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2912 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2913 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2914 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2915 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2916 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2917 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2918 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2919 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [291a 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [291b 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [291c 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [291d 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [291e 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [291f 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2920 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2921 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2922 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer1.org1.example.com | [2923 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2924 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2925 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2926 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [2927 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [295d 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [295e 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [295f 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2960 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2961 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2962 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2963 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2964 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer0.org2.example.com | [2965 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2966 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2967 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2968 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [2969 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [296a 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer0.org2.example.com | [296b 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +peer0.org2.example.com | [296c 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [296d 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [296e 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [296f 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [2970 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer0.org2.example.com | [2971 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer0.org2.example.com | [2972 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [2973 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2928 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2929 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [292a 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [292b 06-12 02:16:17.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [292c 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [292d 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [292e 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [292f 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2930 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2931 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer1.org1.example.com | [2933 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] : [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us declaration +peer1.org1.example.com | [2932 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2934 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2935 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2936 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2937 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2938 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2939 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +peer1.org1.example.com | [293a 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [293b 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org1.example.com:7051 +peer1.org1.example.com | [293c 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [293d 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [293e 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +peer1.org1.example.com | [2940 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [293f 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2942 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +peer1.org1.example.com | [2941 06-12 02:16:17.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +peer1.org1.example.com | [2943 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2974 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [2975 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [2976 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer0.org2.example.com | [2977 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [2978 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2979 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [297a 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +peer0.org2.example.com | [297b 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +peer0.org2.example.com | [297c 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer0.org2.example.com | [297d 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [297e 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\245\001" signature:"0D\002 W\342Q\315\313\265\017\316\010\036\204\360\202\r\033q\321\257\276,\237\227b\224\334w\241^\203.+\374\002 \0176\223#\335\030\337\213 \225C\352&W\340a\321 alive: alive: alive:\260\031_\325\351\247\227\310\233]\304o\327\350%z@xp$\236J\035\332]\22537n\236\002 r23\234\364\201\207S\322\347NY\177\355\024\333\235\317e&W*\264\302\203Js\262\211\013\034\256" > +peer0.org2.example.com | [297f 06-12 02:16:17.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer0.org2.example.com | [2980 06-12 02:16:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer0.org2.example.com | [2981 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2982 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2983 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2984 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2985 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2986 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2987 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2988 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2989 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2944 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [2945 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [2946 06-12 02:16:17.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2947 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2948 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [2949 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +peer1.org1.example.com | [294a 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [294b 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [294c 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +peer1.org1.example.com | [294d 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [294e 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [294f 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2950 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2951 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [2953 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [2954 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [298a 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [298b 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [298c 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [298d 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [298e 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [298f 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2990 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer0.org2.example.com | [2991 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2992 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [2993 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [2994 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2995 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [2996 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2997 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [2998 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [2999 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [299a 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Exiting +peer0.org2.example.com | [299b 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Returning true +peer0.org2.example.com | [299c 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] : Entering +peer0.org2.example.com | [299d 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [299e 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +peer0.org2.example.com | [299f 06-12 02:16:17.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [29a0 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29a1 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2952 06-12 02:16:17.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +peer1.org1.example.com | [2956 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [2957 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2958 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +peer1.org1.example.com | [2959 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [295a 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2955 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +peer1.org1.example.com | [295b 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [295d 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [295e 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [295c 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [295f 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2960 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2961 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2962 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2963 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2964 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2965 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2966 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2967 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [2968 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2969 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +peer1.org1.example.com | [296a 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [296b 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [296c 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 166 but got ts: inc_num:1528769652429776900 seq_num:165 +peer1.org1.example.com | [296d 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [29a2 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [29a3 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [29a4 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29a5 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29a6 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [29a7 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer0.org2.example.com | [29a8 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer0.org2.example.com | [29a9 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer0.org2.example.com | [29aa 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +peer0.org2.example.com | [29ab 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer0.org2.example.com | [29ac 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer0.org2.example.com | [29ad 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [29ae 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29af 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29b0 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [29b1 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [29b2 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29b3 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [29b4 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29b5 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29b6 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [29b7 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [29b8 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29b9 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer0.org2.example.com | [29ba 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [296e 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [296f 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [2970 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2971 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2972 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2973 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +peer1.org1.example.com | [2974 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +peer1.org1.example.com | [2975 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2976 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2978 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [2977 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2979 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [297a 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [297b 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [297c 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +peer1.org1.example.com | [297d 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [297e 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [297f 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +peer1.org1.example.com | [2980 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2981 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +peer1.org1.example.com | [2982 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +peer1.org1.example.com | [2983 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [2984 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +peer1.org1.example.com | [2985 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership:\331\377\265#f\203s\266" > timestamp: +peer0.org2.example.com | [29bb 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer0.org2.example.com | [29bc 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29bd 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [29be 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29bf 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer0.org2.example.com | [29c0 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29c1 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29c2 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer0.org2.example.com | [29c3 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer0.org2.example.com | [29c4 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer0.org2.example.com | [29c5 06-12 02:16:18.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [2986 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership:\331\377\265#f\203s\266" > timestamp: +peer1.org1.example.com | [2987 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2988 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2989 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [298a 06-12 02:16:17.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [298b 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:45262 [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [298c 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [298d 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [298e 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:42916 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2990 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [298f 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2991 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [2992 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [2993 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +peer1.org1.example.com | [2994 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +peer1.org1.example.com | [2995 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +peer1.org1.example.com | [2996 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +peer1.org1.example.com | [2997 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +peer1.org1.example.com | [2998 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [2999 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [299a 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [299b 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [299c 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [299d 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [299e 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +peer1.org1.example.com | [299f 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [29a0 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29a1 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [29a2 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [29a3 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [29a4 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29a5 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29a6 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [29a7 06-12 02:16:17.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [29a8 06-12 02:16:18.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +peer1.org1.example.com | [29a9 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +peer1.org1.example.com | [29aa 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [29ab 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [29ac 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [29ad 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29ae 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [29af 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29b0 06-12 02:16:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [29b1 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29b2 06-12 02:16:18.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [29b3 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59948 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29b4 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [29b5 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +peer1.org1.example.com | [29b6 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29b7 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29b8 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +peer1.org1.example.com | [29b9 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29ba 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +peer1.org1.example.com | [29bb 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +peer1.org1.example.com | [29bc 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [29bd 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +peer1.org1.example.com | [29be 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29bf 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +peer1.org1.example.com | [29c0 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +peer1.org1.example.com | [29c1 06-12 02:16:18.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting diff --git a/hyperledger_fabric/latest/solo/logs/dev_orderer.log b/hyperledger_fabric/latest/solo/logs/dev_orderer.log index 8aa42368..05ceaef0 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_orderer.log +++ b/hyperledger_fabric/latest/solo/logs/dev_orderer.log @@ -1,26 +1,26 @@ -2018-05-31 05:21:29.946 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 -[002 05-31 05:21:29.94 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done -[003 05-31 05:21:29.94 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] -[004 05-31 05:21:29.94 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts -[005 05-31 05:21:29.95 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem -[006 05-31 05:21:29.95 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts -[007 05-31 05:21:29.95 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem -[008 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts -[009 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem -[00a 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts -[00b 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] -[00c 05-31 05:21:29.96 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts -[00d 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem -[00e 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts -[00f 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] -[010 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls -[011 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] -[012 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] -[013 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[014 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance -[015 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP -[016 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[017 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +2018-06-12 02:14:10.774 UTC [localconfig] completeInitialization -> INFO 001 Kafka.Version unset, setting to 0.10.2.0 +[002 06-12 02:14:10.77 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/var/hyperledger/orderer/msp/keystore]...done +[003 06-12 02:14:10.77 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] +[004 06-12 02:14:10.77 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/signcerts +[005 06-12 02:14:10.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/signcerts/orderer.example.com-cert.pem +[006 06-12 02:14:10.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/cacerts +[007 06-12 02:14:10.78 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/cacerts/ca.example.com-cert.pem +[008 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/admincerts +[009 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/admincerts/Admin@example.com-cert.pem +[00a 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/intermediatecerts +[00b 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/var/hyperledger/orderer/msp/intermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/intermediatecerts: no such file or directory] +[00c 06-12 02:14:10.79 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlscacerts +[00d 06-12 02:14:10.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /var/hyperledger/orderer/msp/tlscacerts/tlsca.example.com-cert.pem +[00e 06-12 02:14:10.80 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/tlsintermediatecerts +[00f 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/var/hyperledger/orderer/msp/tlsintermediatecerts]. Skipping. [stat /var/hyperledger/orderer/msp/tlsintermediatecerts: no such file or directory] +[010 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /var/hyperledger/orderer/msp/crls +[011 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/var/hyperledger/orderer/msp/crls]. Skipping. [stat /var/hyperledger/orderer/msp/crls: no such file or directory] +[012 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/var/hyperledger/orderer/msp/config.yaml]: [stat /var/hyperledger/orderer/msp/config.yaml: no such file or directory] +[013 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[014 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance +[015 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.Main.initializeLocalMsp.LoadLocalMsp.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP +[016 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[017 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -34,7 +34,7 @@ AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -----END CERTIFICATE----- -[018 05-31 05:21:29.97 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[018 06-12 02:14:10.81 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -47,7 +47,7 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[019 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[019 06-12 02:14:10.84 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -60,8 +60,8 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -----END CERTIFICATE----- -[01a 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [7bec1120ee31ee2bc25b444ca5a6d1833f6affe546544a3258020a4a5f324947] at [/var/hyperledger/orderer/msp/keystore/7bec1120ee31ee2bc25b444ca5a6d1833f6affe546544a3258020a4a5f324947_sk]... -[01b 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[01a 06-12 02:14:10.85 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [7bec1120ee31ee2bc25b444ca5a6d1833f6affe546544a3258020a4a5f324947] at [/var/hyperledger/orderer/msp/keystore/7bec1120ee31ee2bc25b444ca5a6d1833f6affe546544a3258020a4a5f324947_sk]... +[01b 06-12 02:14:10.86 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -74,9 +74,9 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -----END CERTIFICATE----- -[01c 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:27 +0000 UTC -[01d 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[01e 05-31 05:21:30.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.prettyPrintStruct -> INFO Orderer config values: +[01c 06-12 02:14:10.86 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:27 +0000 UTC +[01d 06-12 02:14:10.86 UTC] [github.com/hyperledger/fabric/msp] main.Main.initializeLocalMsp.LoadLocalMsp.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[01e 06-12 02:14:10.86 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.prettyPrintStruct -> INFO Orderer config values: General.LedgerType = "file" General.ListenAddress = "0.0.0.0" General.ListenPort = 7050 @@ -132,57 +132,57 @@ qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= Kafka.TLS.ClientRootCAs = [] Debug.BroadcastTraceDir = "" Debug.DeliverTraceDir = "" -[01f 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled -[020 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer -[021 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] -[022 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist -[023 05-31 05:21:30.01 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists -[024 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid -[025 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] -[026 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist -[027 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists -[028 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[029 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[02a 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[02b 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[02c 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[02d 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[02e 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4200c6ca0)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[02f 05-31 05:21:30.03 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[030 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x6b, 0xf9, 0x6f, 0xeb, 0x50, 0x68, 0x74, 0xd3, 0x2d, 0xcc, 0x8c, 0xac, 0xe, 0xd9, 0x99, 0xaf, 0x5f, 0x3e, 0xe5, 0x52, 0xe1, 0x2d, 0xad, 0x7e, 0x1b, 0x4b, 0x7b, 0xbe, 0x91, 0xa7, 0x39, 0x32} txOffsets= +[01f 06-12 02:14:10.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeServerConfig -> INFO Starting orderer with TLS enabled +[020 06-12 02:14:10.89 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory -> DEBU Ledger dir: /var/hyperledger/production/orderer +[021 06-12 02:14:10.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/index/] +[022 06-12 02:14:10.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/index/] does not exist +[023 06-12 02:14:10.89 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.createLedgerFactory.New.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/index/] exists +[024 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: testchainid +[025 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/testchainid/] +[026 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] does not exist +[027 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/testchainid/] exists +[028 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[029 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[02a 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[02b 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[02c 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[02d 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[02e 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42018ab80)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[02f 06-12 02:14:10.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[030 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x6b, 0xf9, 0x6f, 0xeb, 0x50, 0x68, 0x74, 0xd3, 0x2d, 0xcc, 0x8c, 0xac, 0xe, 0xd9, 0x99, 0xaf, 0x5f, 0x3e, 0xe5, 0x52, 0xe1, 0x2d, 0xad, 0x7e, 0x1b, 0x4b, 0x7b, 0xbe, 0x91, 0xa7, 0x39, 0x32} txOffsets= txId=ce5eb80b7bb6cf50c571390070e9a63e015cf7076fa9dfa469debf1ce0812fd0 locPointer=offset=38, bytesLength=9111 ] -[031 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9154], isChainEmpty=[false], lastBlockNumber=[0] -[032 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[033 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[034 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes -[035 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[036 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[037 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[038 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[039 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes -[03a 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[03b 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[03c 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[03d 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[03e 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[03f 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[040 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[041 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[042 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[043 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[044 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[045 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[046 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[047 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[048 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[049 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[04a 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[04b 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[04c 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[04d 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[04e 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[04f 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[031 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.initializeBootstrapChannel.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[9154], isChainEmpty=[false], lastBlockNumber=[0] +[032 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[033 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[034 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes +[035 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[036 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[037 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[038 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[039 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes +[03a 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[03b 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.getConfigTx.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[03c 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[03d 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[03e 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[03f 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[040 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[041 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[042 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[043 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[044 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[045 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[046 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[047 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[048 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[049 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[04a 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[04b 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[04c 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[04d 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[04e 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[04f 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -196,7 +196,7 @@ AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -----END CERTIFICATE----- -[050 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[050 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -209,52 +209,16 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[051 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[052 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos -[053 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy -[054 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[055 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[056 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[057 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[058 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[059 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[05a 05-31 05:21:30.04 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -QKuzs3j8kg== ------END CERTIFICATE----- -[05b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -3BDFnYuSFYhOCexVkA== ------END CERTIFICATE----- -[05c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[05d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[05e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[05f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[060 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[061 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[062 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[063 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[051 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[052 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ConsortiumProtos +[053 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelCreationPolicy +[054 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[055 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[056 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[057 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[058 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[059 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[05a 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -269,7 +233,7 @@ FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN CSJWn+U1 -----END CERTIFICATE----- -[064 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[05b 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -283,126 +247,162 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[065 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[066 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[067 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[068 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[069 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[06a 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[06b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[06c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[06d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[06e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[06f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP -[070 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP -[071 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP -[072 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP -[073 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP -[074 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP -[075 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums -[076 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers -[077 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[078 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers -[079 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[07a 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[07b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[07c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[07d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[07e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[07f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[080 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[081 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[082 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[083 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[084 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[085 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[086 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[087 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[088 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[089 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[08a 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[08b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums -[08c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium -[08d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP -[08e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP -[08f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins -[090 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers -[091 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers -[092 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP -[093 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP -[094 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins -[095 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers -[096 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers -[097 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy -[098 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins -[099 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[09a 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[09b 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[09c 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[09d 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[09e 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[09f 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[0a0 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[0a1 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[0a2 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[0a3 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[0a4 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[0a5 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[0a6 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[0a7 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums -[0a8 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[0a9 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[0aa 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[0ab 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/capabilities] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[0ac 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/capabilities] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[0ad 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[0ae 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[0af 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes -[0b0 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[0b1 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[0b2 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) -[0b3 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources -[0b4 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid -[0b5 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[0b6 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[0b7 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes -[0b8 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[0b9 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[0ba 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 6bf96feb506874d32dcc8cac0ed999af5f3ee552e12dad7e1b4b7bbe91a73932 and orderer type solo -[0bb 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: +[05c 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[05d 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[05e 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[05f 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[060 06-12 02:14:10.92 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[061 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp/cache] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[062 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[063 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +QKuzs3j8kg== +-----END CERTIFICATE----- +[064 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +3BDFnYuSFYhOCexVkA== +-----END CERTIFICATE----- +[065 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.NewConsortiumsConfig.NewConsortiumConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[066 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[067 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/msp] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[068 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[069 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[06a 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[06b 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[06c 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[06d 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[06e 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[06f 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org1MSP +[070 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org1MSP +[071 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org1MSP +[072 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums/SampleConsortium/Org2MSP +[073 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Consortiums/SampleConsortium/Org2MSP +[074 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Consortiums/SampleConsortium/Org2MSP +[075 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Consortiums +[076 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[077 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Consortiums/Readers +[078 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[079 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Consortiums/Writers +[07a 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[07b 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[07c 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[07d 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[07e 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[07f 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[080 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[081 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[082 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[083 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[084 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[085 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[086 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[087 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[088 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[089 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[08a 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[08b 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums +[08c 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium +[08d 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org1MSP +[08e 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org1MSP/MSP +[08f 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Admins +[090 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Readers +[091 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org1MSP/Writers +[092 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Consortiums/SampleConsortium/Org2MSP +[093 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/Org2MSP/MSP +[094 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Admins +[095 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Readers +[096 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/SampleConsortium/Org2MSP/Writers +[097 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortiums/SampleConsortium/ChannelCreationPolicy +[098 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Consortiums/Admins +[099 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[09a 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[09b 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[09c 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[09d 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[09e 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[09f 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/configtx] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[0a0 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[0a1 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[0a2 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[0a3 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[0a4 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +[0a5 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[0a6 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[0a7 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Consortiums +[0a8 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[0a9 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/policies] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[0aa 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[0ab 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/capabilities] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[0ac 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/capabilities] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[0ad 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[0ae 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[0af 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes +[0b0 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[0b1 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[0b2 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport.newBlockWriter -> DEBU [channel: testchainid] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=0) +[0b3 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.newChainSupport -> DEBU [channel: testchainid] Done creating channel support resources +[0b4 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.NewSystemChannel -> DEBU Creating system channel msg processor for channel testchainid +[0b5 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[0b6 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[0b7 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9154], Going to peek [8] bytes +[0b8 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[0b9 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[0ba 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] main.Main.Start.initializeMultichannelRegistrar.NewRegistrar -> INFO Starting system channel 'testchainid' with genesis block hash 6bf96feb506874d32dcc8cac0ed999af5f3ee552e12dad7e1b4b7bbe91a73932 and orderer type solo +[0bb 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Starting orderer: Version: 1.2.0 Go version: go1.10.2 OS/Arch: linux/amd64 Experimental features: true -[0bc 05-31 05:21:30.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests -[0bd 05-31 05:21:34.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[0be 05-31 05:21:34.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41270 -[0bf 05-31 05:21:34.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41270 -[0c0 05-31 05:21:34.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[0c1 05-31 05:21:34.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41272 -[0c2 05-31 05:21:34.15 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:41272 -[0c3 05-31 05:21:34.15 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel -[0c4 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid -[0c5 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[0c6 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[0c7 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[0c8 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[0c9 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[0ca 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[0cb 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[0cc 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[0cd 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[0ce 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[0cf 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[0d0 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[0d1 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[0d2 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[0d3 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[0d4 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[0d5 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[0d6 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[0d7 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[0d8 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[0bc 06-12 02:14:10.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] main.Main.Start -> INFO Beginning to serve requests +[0bd 06-12 02:14:15.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[0be 06-12 02:14:15.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35704 +[0bf 06-12 02:14:15.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35704 +[0c0 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[0c1 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35706 +[0c2 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:35706 +[0c3 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update tx with system channel message processor for channel ID businesschannel +[0c4 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing channel create tx for channel businesschannel on system channel testchainid +[0c5 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[0c6 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[0c7 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[0c8 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[0c9 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[0ca 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[0cb 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[0cc 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[0cd 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[0ce 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[0cf 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[0d0 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[0d1 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[0d2 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[0d3 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[0d4 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[0d5 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[0d6 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[0d7 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[0d8 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -416,7 +416,7 @@ AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -----END CERTIFICATE----- -[0d9 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[0d9 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -429,59 +429,20 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[0da 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[0db 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[0dc 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[0dd 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[0de 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[0df 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[0e0 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[0e1 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[0e2 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[0e3 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[0e4 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[0e5 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[0e6 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[0e7 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -CSJWn+U1 ------END CERTIFICATE----- -[0e8 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -5Y80QLeEvYkoMMMbcA== ------END CERTIFICATE----- -[0e9 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[0ea 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[0eb 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[0ec 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[0ed 05-31 05:21:34.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[0ee 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[0ef 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[0f0 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[0f1 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[0f2 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[0f3 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[0da 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[0db 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[0dc 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[0dd 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[0de 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[0df 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[0e0 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[0e1 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[0e2 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[0e3 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[0e4 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[0e5 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[0e6 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[0e7 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -496,7 +457,7 @@ grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp QKuzs3j8kg== -----END CERTIFICATE----- -[0f4 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[0e8 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -510,99 +471,134 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[0f5 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[0f6 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[0f7 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[0f8 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[0f9 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[0fa 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[0fb 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[0fc 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[0fd 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[0fe 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[0ff 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[100 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[101 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[102 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[103 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[104 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[105 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -[106 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -[107 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[108 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -[109 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[10a 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -[10b 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[10c 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[10d 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[10e 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[10f 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[110 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[111 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[112 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[113 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[114 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[115 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[116 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[117 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[118 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[119 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[11a 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[11b 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[11c 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[11d 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[11e 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[11f 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[120 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[121 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[122 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[123 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[124 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[125 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[126 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[127 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[128 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[129 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[12a 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[12b 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[12c 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[12d 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[12e 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[12f 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[130 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[131 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[132 05-31 05:21:34.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[133 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[134 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[135 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[136 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[137 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[138 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[139 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[13a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[13b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[13c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[13d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[13e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -[13f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -[140 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -[141 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -[142 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[143 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -[144 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[145 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[146 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[147 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[148 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[149 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[14a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[14b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[14c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[14d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -[14e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[14f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[150 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[151 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[0e9 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[0ea 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[0eb 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[0ec 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[0ed 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[0ee 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[0ef 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[0f0 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[0f1 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[0f2 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[0f3 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +CSJWn+U1 +-----END CERTIFICATE----- +[0f4 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +5Y80QLeEvYkoMMMbcA== +-----END CERTIFICATE----- +[0f5 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[0f6 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[0f7 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[0f8 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[0f9 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[0fa 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[0fb 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[0fc 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[0fd 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[0fe 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +[0ff 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[100 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[101 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[102 06-12 02:14:15.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[103 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[104 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[105 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[106 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +[107 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[108 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +[109 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[10a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers +[10b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[10c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[10d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[10e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[10f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[110 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[111 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[112 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[113 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[114 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[115 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[116 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[117 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[118 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[119 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[11a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[11b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[11c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[11d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[11e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[11f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[120 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[121 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[122 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[123 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[124 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[125 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[126 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[127 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[128 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[129 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[12a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[12b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[12c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[12d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[12e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[12f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[130 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[131 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[132 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[133 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[134 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[135 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[136 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[137 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[138 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[139 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[13a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[13b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[13c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[13d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[13e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[13f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +[140 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +[141 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[142 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[143 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[144 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[145 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[146 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[147 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[148 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[149 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +[14a 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[14b 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[14c 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[14d 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -616,67 +612,62 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[152 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eaf0 gate 1527744094183799900 evaluation starts -[153 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eaf0 signed by 0 principal evaluation starts (used [false]) -[154 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eaf0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[155 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eaf0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[156 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eaf0 principal evaluation fails -[157 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eaf0 gate 1527744094183799900 evaluation fails -[158 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -[159 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[15a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[15b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eb00 gate 1527744094184904900 evaluation starts -[15c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eb00 signed by 0 principal evaluation starts (used [false]) -[15d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eb00 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[15e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[15f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eb00 principal matched by identity 0 -[160 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 49 ce 47 74 98 57 38 6e 13 d1 ac 5a 7f 7a 79 b9 |I.Gt.W8n...Z.zy.| -00000010 20 88 08 98 c4 cf 03 5e 06 a2 89 96 e5 9c f7 bf | ......^........| -[161 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5e 8d 73 b5 45 2a 8a 4c 77 6f 5d 11 |0D. ^.s.E*.Lwo].| -00000010 12 44 0a f2 a7 64 42 f2 c7 b0 0c 58 96 f5 6a 77 |.D...dB....X..jw| -00000020 80 c9 fc 14 02 20 7c bd c9 3a 8e 04 24 8c f5 e2 |..... |..:..$...| -00000030 10 e7 3b 7e 15 d4 8c 8b ac 4c 92 55 4d 8e 75 0f |..;~.....L.UM.u.| -00000040 3f 21 46 df 1b 51 |?!F..Q| -[162 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eb00 principal evaluation succeeds for identity 0 -[163 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eb00 gate 1527744094184904900 evaluation succeeds -[164 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[165 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[166 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -[167 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -[168 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[169 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[16a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[16b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[16c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[16d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[16e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[16f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[170 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[171 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[172 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[173 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[174 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[175 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[176 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[177 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[178 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[179 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[17a 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[17b 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[17c 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[17d 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608DE8CBED80522...345479FE885EA0EDE00FB47E6B148E02 -[17e 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 818BC7CC75AC138820D7BA5E48D1E8E29AD587D3BCF1C2077AA23469338BC260 -[17f 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[180 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[181 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608DE8CBED80522...DABA190D5D8AA6987727253B8229DA84 -[182 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: CE9C954BCBACE73012C415779E27D563E5EABC0C927A523C9110A25BDD228D30 -[183 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[184 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[185 05-31 05:21:34.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[186 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[187 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[188 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[189 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[14e 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150ca8 gate 1528769655419053400 evaluation starts +[14f 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ca8 signed by 0 principal evaluation starts (used [false]) +[150 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ca8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[151 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[152 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ca8 principal matched by identity 0 +[153 06-12 02:14:15.41 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bf 00 74 70 c2 fd 54 51 db af 93 ff e3 4e fe 3f |..tp..TQ.....N.?| +00000010 7a a3 f9 cd dc 58 3c 56 43 04 b8 af fb 47 b8 ca |z....X DEBU Verify: sig = 00000000 30 45 02 21 00 f6 fd be ec 9d 50 e1 e4 17 a8 0b |0E.!......P.....| +00000010 c0 3b ea a8 5a 74 61 96 9b d6 89 2f 44 8f d4 39 |.;..Zta..../D..9| +00000020 61 cf ad 9d 70 02 20 0a 73 71 06 87 71 f1 ef d6 |a...p. .sq..q...| +00000030 84 1d a2 de 09 5d 60 3f ad 89 80 d5 b4 b8 b9 28 |.....]`?.......(| +00000040 58 7b 5f c4 50 80 45 |X{_.P.E| +[155 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ca8 principal evaluation succeeds for identity 0 +[156 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150ca8 gate 1528769655419053400 evaluation succeeds +[157 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[158 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[159 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy +[15a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +[15b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +[15c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities +[15d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins +[15e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +[15f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[160 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[161 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[162 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[163 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[164 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[165 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[166 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[167 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[168 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[169 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[16a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[16b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[16c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[16d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[16e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[16f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[170 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[171 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[172 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[173 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[174 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608F7D8FCD80522...B8672FD20535A6286A7AFD427C321642 +[175 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: C6BCF7FC116A929A2D0EFA9214D9D6E9B21ADE8ACFDEC8A8352AEFCDBD16CAAF +[176 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[177 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[178 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0AC9060A1708041A0608F7D8FCD80522...C192F82CB85D27F2A7E0DBFB3A7704B4 +[179 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: AF91A8125C29B97C47B5E091BDD3A2ECC5E4C4C6DA8964E49E75398B53FDAC24 +[17a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[17b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[17c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[17d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[17e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[17f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[180 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -689,47 +680,47 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -----END CERTIFICATE----- -[18a 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000ec08 gate 1527744094190614500 evaluation starts -[18b 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ec08 signed by 0 principal evaluation starts (used [false]) -[18c 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ec08 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[18d 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[18e 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[18f 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ec08 principal matched by identity 0 -[190 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ce 9c 95 4b cb ac e7 30 12 c4 15 77 9e 27 d5 63 |...K...0...w.'.c| -00000010 e5 ea bc 0c 92 7a 52 3c 91 10 a2 5b dd 22 8d 30 |.....zR<...[.".0| -[191 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 50 2f be 36 92 b5 85 de 08 bf c2 04 |0D. P/.6........| -00000010 3b a8 99 72 e2 5e 91 39 19 bb 10 f4 7b 65 83 c1 |;..r.^.9....{e..| -00000020 4d c4 ef 81 02 20 4c 16 5a 84 f1 ce e9 0f 68 55 |M.... L.Z.....hU| -00000030 8c a1 2c 31 2c 7c 00 ce 12 19 7f ad 5a 83 2b 2e |..,1,|......Z.+.| -00000040 e2 ed 5c f5 f3 08 |..\...| -[192 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000ec08 principal evaluation succeeds for identity 0 -[193 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000ec08 gate 1527744094190614500 evaluation succeeds -[194 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[195 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[196 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[197 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[198 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[199 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[19a 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[19b 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[19c 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[19d 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[19e 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[19f 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[1a0 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[1a1 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[1a2 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[1a3 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[1a4 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[1a5 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[1a6 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[1a7 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[1a8 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1a9 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[1aa 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1ab 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[1ac 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[1ad 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[181 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503c8 gate 1528769655426299600 evaluation starts +[182 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 signed by 0 principal evaluation starts (used [false]) +[183 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[184 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[185 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +[186 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 principal matched by identity 0 +[187 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 af 91 a8 12 5c 29 b9 7c 47 b5 e0 91 bd d3 a2 ec |....\).|G.......| +00000010 c5 e4 c4 c6 da 89 64 e4 9e 75 39 8b 53 fd ac 24 |......d..u9.S..$| +[188 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 2d 97 02 d3 3b 8c 63 f9 27 b3 3d 13 |0D. -...;.c.'.=.| +00000010 a5 7f 73 df 5c d8 af a8 9b 07 3b 46 43 be de 30 |..s.\.....;FC..0| +00000020 31 db fa f7 02 20 4d 2a 99 b3 df dc 9a 8f 7e 03 |1.... M*......~.| +00000030 74 07 fd 37 50 89 86 a1 1a 09 43 7b e3 a9 14 d5 |t..7P.....C{....| +00000040 c5 aa 5e 88 4a ba |..^.J.| +[189 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 principal evaluation succeeds for identity 0 +[18a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503c8 gate 1528769655426299600 evaluation succeeds +[18b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +[18c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[18d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +[18e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[18f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[190 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[191 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[192 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[193 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[194 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[195 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[196 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[197 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[198 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[199 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[19a 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[19b 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[19c 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[19d 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[19e 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[19f 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1a0 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[1a1 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[1a2 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[1a3 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[1a4 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -743,7 +734,7 @@ AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -----END CERTIFICATE----- -[1ae 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[1a5 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -756,59 +747,20 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[1af 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[1b0 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[1b1 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[1b2 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[1b3 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[1b4 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[1b5 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[1b6 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1b7 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[1b8 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[1b9 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1ba 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[1bb 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[1bc 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -QKuzs3j8kg== ------END CERTIFICATE----- -[1bd 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -3BDFnYuSFYhOCexVkA== ------END CERTIFICATE----- -[1be 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[1bf 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[1c0 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[1c1 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[1c2 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[1c3 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[1c4 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[1c5 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[1c6 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[1c7 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[1c8 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[1a6 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[1a7 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[1a8 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[1a9 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[1aa 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[1ab 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1ac 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1ad 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1ae 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[1af 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[1b0 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[1b1 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[1b2 06-12 02:14:15.42 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[1b3 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -823,7 +775,7 @@ FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN CSJWn+U1 -----END CERTIFICATE----- -[1c9 05-31 05:21:34.19 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[1b4 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -837,218 +789,17 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[1ca 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[1cb 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[1cc 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[1cd 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[1ce 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[1cf 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[1d0 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[1d1 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[1d2 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[1d3 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[1d4 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[1d5 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[1d6 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[1d7 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[1d8 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[1d9 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[1da 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application -[1db 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins -[1dc 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[1dd 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers -[1de 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[1df 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers -[1e0 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[1e1 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[1e2 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[1e3 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[1e4 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[1e5 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[1e6 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[1e7 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[1e8 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[1e9 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[1ea 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[1eb 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[1ec 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[1ed 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[1ee 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[1ef 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[1f0 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[1f1 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[1f2 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[1f3 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[1f4 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[1f5 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[1f6 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[1f7 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[1f8 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[1f9 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[1fa 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[1fb 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[1fc 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy -[1fd 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[1fe 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[1ff 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[200 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[201 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[202 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[203 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[204 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[205 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[206 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[207 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[208 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[209 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[20a 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[20b 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[20c 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[20d 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[20e 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[20f 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[210 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[211 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[212 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[213 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities -[214 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins -[215 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers -[216 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers -[217 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[218 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy -[219 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[21a 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[21b 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[21c 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[21d 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[21e 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[21f 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[220 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[221 05-31 05:21:34.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[222 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == -[223 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[224 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[225 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[226 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -3BDFnYuSFYhOCexVkA== ------END CERTIFICATE----- -[227 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8b8 gate 1527744094211728700 evaluation starts -[228 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 signed by 0 principal evaluation starts (used [false]) -[229 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[22a 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[22b 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8b8 principal evaluation fails -[22c 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8b8 gate 1527744094211728700 evaluation fails -[22d 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Admins -[22e 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[22f 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[230 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8c8 gate 1527744094213283900 evaluation starts -[231 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c8 signed by 0 principal evaluation starts (used [false]) -[232 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[233 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[234 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c8 principal matched by identity 0 -[235 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 49 ce 47 74 98 57 38 6e 13 d1 ac 5a 7f 7a 79 b9 |I.Gt.W8n...Z.zy.| -00000010 20 88 08 98 c4 cf 03 5e 06 a2 89 96 e5 9c f7 bf | ......^........| -[236 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5e 8d 73 b5 45 2a 8a 4c 77 6f 5d 11 |0D. ^.s.E*.Lwo].| -00000010 12 44 0a f2 a7 64 42 f2 c7 b0 0c 58 96 f5 6a 77 |.D...dB....X..jw| -00000020 80 c9 fc 14 02 20 7c bd c9 3a 8e 04 24 8c f5 e2 |..... |..:..$...| -00000030 10 e7 3b 7e 15 d4 8c 8b ac 4c 92 55 4d 8e 75 0f |..;~.....L.UM.u.| -00000040 3f 21 46 df 1b 51 |?!F..Q| -[237 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8c8 principal evaluation succeeds for identity 0 -[238 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8c8 gate 1527744094213283900 evaluation succeeds -[239 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[23a 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[23b 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy -[23c 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy -[23d 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[23e 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[23f 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[240 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[241 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[242 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[243 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[244 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[245 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[246 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[247 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[248 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[249 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[24a 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[24b 05-31 05:21:34.21 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[24c 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[24d 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[24e 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[24f 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[250 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[251 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[252 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[253 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[254 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[255 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[256 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[257 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[258 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[259 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[25a 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[25b 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[25c 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[25d 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[25e 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[25f 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[260 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[261 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[262 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[263 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ ------END CERTIFICATE----- -[264 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P ------END CERTIFICATE----- -[265 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[266 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[267 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[268 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[269 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[26a 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[26b 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[26c 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[26d 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[26e 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[26f 05-31 05:21:34.22 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[270 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[271 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[272 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[1b5 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[1b6 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[1b7 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1b8 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1b9 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1ba 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[1bb 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[1bc 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[1bd 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[1be 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[1bf 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1063,7 +814,7 @@ grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp QKuzs3j8kg== -----END CERTIFICATE----- -[273 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[1c0 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1077,17 +828,168 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[274 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[275 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[276 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[277 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[278 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[279 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[27a 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[27b 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[27c 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[27d 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[27e 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[1c1 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[1c2 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[1c3 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[1c4 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[1c5 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[1c6 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[1c7 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[1c8 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[1c9 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[1ca 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[1cb 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[1cc 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[1cd 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[1ce 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[1cf 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[1d0 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[1d1 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy ChannelCreationPolicy for Channel/Application +[1d2 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Writers could not be found in Channel/Application/Writers +[1d3 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[1d4 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Admins could not be found in Channel/Application/Admins +[1d5 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[1d6 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl.newImplicitMetaPolicy.GetPolicy -> DEBU Returning dummy reject all policy because Readers could not be found in Channel/Application/Readers +[1d7 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[1d8 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[1d9 06-12 02:14:15.43 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[1da 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[1db 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[1dc 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[1dd 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[1de 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[1df 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[1e0 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[1e1 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[1e2 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[1e3 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[1e4 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[1e5 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[1e6 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[1e7 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[1e8 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[1e9 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[1ea 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[1eb 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[1ec 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[1ed 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[1ee 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[1ef 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[1f0 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[1f1 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[1f2 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[1f3 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/ChannelCreationPolicy +[1f4 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[1f5 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[1f6 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[1f7 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[1f8 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[1f9 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[1fa 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[1fb 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.NewChannelConfig.NewChannelConfig.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[1fc 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[1fd 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[1fe 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[1ff 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[200 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[201 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[202 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[203 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[204 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[205 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[206 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[207 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[208 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[209 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[20a 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Admins +[20b 06-12 02:14:15.44 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Writers +[20c 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[20d 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy ChannelCreationPolicy +[20e 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +[20f 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[210 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[211 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[212 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[213 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[214 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[215 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[216 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[217 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy == +[218 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[219 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[21a 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[21b 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +3BDFnYuSFYhOCexVkA== +-----END CERTIFICATE----- +[21c 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420151298 gate 1528769655452667700 evaluation starts +[21d 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151298 signed by 0 principal evaluation starts (used [false]) +[21e 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151298 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[21f 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[220 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151298 principal matched by identity 0 +[221 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bf 00 74 70 c2 fd 54 51 db af 93 ff e3 4e fe 3f |..tp..TQ.....N.?| +00000010 7a a3 f9 cd dc 58 3c 56 43 04 b8 af fb 47 b8 ca |z....X DEBU Verify: sig = 00000000 30 45 02 21 00 f6 fd be ec 9d 50 e1 e4 17 a8 0b |0E.!......P.....| +00000010 c0 3b ea a8 5a 74 61 96 9b d6 89 2f 44 8f d4 39 |.;..Zta..../D..9| +00000020 61 cf ad 9d 70 02 20 0a 73 71 06 87 71 f1 ef d6 |a...p. .sq..q...| +00000030 84 1d a2 de 09 5d 60 3f ad 89 80 d5 b4 b8 b9 28 |.....]`?.......(| +00000040 58 7b 5f c4 50 80 45 |X{_.P.E| +[223 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151298 principal evaluation succeeds for identity 0 +[224 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420151298 gate 1528769655452667700 evaluation succeeds +[225 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[226 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[227 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/ChannelCreationPolicy +[228 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/ChannelCreationPolicy +[229 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Capabilities +[22a 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Readers +[22b 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[22c 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[22d 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[22e 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[22f 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[230 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[231 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[232 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[233 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[234 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[235 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[236 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[237 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[238 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[239 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[23a 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[23b 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[23c 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[23d 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[23e 06-12 02:14:15.45 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[23f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[240 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[241 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[242 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[243 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[244 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[245 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[246 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[247 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[248 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[249 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[24a 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[24b 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[24c 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[24d 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[24e 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[24f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[250 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1102,7 +1004,7 @@ FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN CSJWn+U1 -----END CERTIFICATE----- -[27f 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[251 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1116,130 +1018,17 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[280 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[281 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[282 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[283 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[284 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[285 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[286 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[287 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[288 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[289 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[28a 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[28b 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[28c 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[28d 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[28e 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[28f 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[290 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[291 05-31 05:21:34.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[292 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[293 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[294 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[295 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[296 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[297 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[298 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[299 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[29a 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[29b 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[29c 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[29d 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[29e 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[29f 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[2a0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[2a1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[2a2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[2a3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[2a4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[2a5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[2a6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[2a7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[2a8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[2a9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[2aa 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[2ab 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[2ac 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[2ad 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[2ae 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[2af 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[2b0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[2b1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[2b2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[2b3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[2b4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[2b5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[2b6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[2b7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[2b8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[2b9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[2ba 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[2bb 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[2bc 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[2bd 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[2be 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[2bf 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:41272 -[2c0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[2c1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[2c2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[2c3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[2c4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[2c5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2c6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[2c7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[2c8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[2c9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[2ca 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[2cb 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[2cc 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2cd 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2ce 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2cf 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[2d0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2d1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2d2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[2d3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ ------END CERTIFICATE----- -[2d4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P ------END CERTIFICATE----- -[2d5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[2d6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[2d7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[2d8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[2d9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[2da 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[2db 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2dc 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2dd 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[2de 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[2df 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2e0 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2e1 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[2e2 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[252 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[253 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[254 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[255 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[256 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[257 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[258 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[259 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[25a 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[25b 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[25c 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1254,7 +1043,7 @@ grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp QKuzs3j8kg== -----END CERTIFICATE----- -[2e3 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[25d 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1268,17 +1057,220 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[2e4 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[2e5 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[2e6 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[2e7 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[2e8 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[2e9 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[2ea 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[2eb 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[2ec 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[2ed 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[2ee 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[25e 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[25f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[260 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[261 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[262 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[263 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[264 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[265 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[266 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[267 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[268 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[269 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[26a 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[26b 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[26c 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +-----END CERTIFICATE----- +[26d 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +-----END CERTIFICATE----- +[26e 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[26f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[270 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[271 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[272 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[273 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[274 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[275 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[276 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[277 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[278 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[279 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[27a 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[27b 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[27c 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[27d 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[27e 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[27f 06-12 02:14:15.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[280 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[281 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[282 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[283 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[284 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[285 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[286 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[287 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[288 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[289 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[28a 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[28b 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[28c 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[28d 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[28e 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[28f 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[290 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[291 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[292 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[293 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[294 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[295 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[296 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[297 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[298 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[299 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[29a 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[29b 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[29c 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[29d 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[29e 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[29f 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[2a0 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[2a1 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[2a2 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[2a3 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[2a4 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[2a5 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[2a6 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[2a7 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[2a8 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[2a9 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[2aa 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[2ab 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[2ac 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.authorizeAndInspect.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[2ad 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:35706 +[2ae 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[2b0 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:35704 because channel businesschannel not found +[2b1 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35704 +[2b2 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35704 +[2b3 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.7:35706, hangup +[2b4 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[2b5 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.7:35704, hangup +[2b6 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[2af 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[2b7 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[2b8 06-12 02:14:15.47 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[2b9 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[2ba 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2bb 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[2bc 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[2bd 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[2be 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[2bf 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[2c0 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[2c1 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2c2 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2c3 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2c4 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[2c5 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[2c6 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[2c7 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[2c8 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +-----END CERTIFICATE----- +[2c9 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +-----END CERTIFICATE----- +[2ca 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[2cb 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[2cc 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[2cd 06-12 02:14:15.48 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2ce 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[2cf 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[2d0 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2d1 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[2d3 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35708 +[2d4 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35708 +[2d2 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2d5 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[2d6 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[2d7 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[2d8 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[2d9 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[2da 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +QKuzs3j8kg== +-----END CERTIFICATE----- +[2db 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +3BDFnYuSFYhOCexVkA== +-----END CERTIFICATE----- +[2dc 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[2dd 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[2de 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[2df 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2e0 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2e1 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[2e2 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[2e3 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[2e4 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[2e5 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[2e6 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1293,7 +1285,7 @@ FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN CSJWn+U1 -----END CERTIFICATE----- -[2ef 05-31 05:21:34.24 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[2e7 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -1307,141 +1299,131 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[2f0 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[2f1 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[2f2 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[2f3 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[2f4 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[2f5 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU Rejecting deliver for 172.18.0.7:41270 because channel businesschannel not found -[2f6 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[2f8 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[2f9 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[2fb 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Received EOF from 172.18.0.7:41272, hangup -[2fc 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[2fa 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[2fd 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[2fe 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[2ff 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[300 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[301 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[302 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[303 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[304 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[305 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[306 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[307 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[2f7 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41270 -[308 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[30a 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[30b 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[30c 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[30d 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[30e 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[30f 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[309 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41270 -[310 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[312 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[311 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.7:41270, hangup -[314 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[313 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[315 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[316 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[317 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[318 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[319 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[31a 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[31b 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[31c 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[31d 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[31e 05-31 05:21:34.25 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[31f 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[320 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[321 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[322 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[323 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[324 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[325 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[326 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[327 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[328 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[329 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[32a 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[32b 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[32c 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[32d 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[32e 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[32f 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[330 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[331 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[332 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[333 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[334 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[335 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[336 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[337 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[338 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[339 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[33a 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[33b 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[33c 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[33d 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[33e 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[33f 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[340 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[341 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[342 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[343 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[344 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[345 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[346 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[347 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[348 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] -[349 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist -[34a 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists -[34b 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[34c 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[34d 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[34e 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[34f 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[350 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[351 05-31 05:21:34.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc4200cd600)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[352 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[354 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41274 -[355 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41274 -[353 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] -[356 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xc2, 0x1e, 0x64, 0xf2, 0xd9, 0x85, 0xf0, 0xf7, 0x6d, 0x68, 0x53, 0xa1, 0x96, 0x61, 0x4a, 0xbd, 0xd0, 0xa2, 0x78, 0x7b, 0x4d, 0xb0, 0x42, 0x49, 0x2a, 0xcc, 0x56, 0x48, 0xa7, 0x2, 0x5, 0x73} txOffsets= -txId= locPointer=offset=38, bytesLength=12077 +[2e8 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[2e9 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[2ea 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[2eb 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[2ec 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[2ed 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[2ee 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[2ef 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[2f0 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[2f1 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[2f2 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[2f3 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[2f4 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[2f5 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[2f6 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[2f7 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[2f8 06-12 02:14:15.49 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[2f9 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[2fa 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[2fb 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[2fc 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[2fd 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[2fe 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[2ff 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[300 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[301 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[302 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[303 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[304 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[305 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[306 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[307 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[308 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[309 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[30a 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[30b 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[30c 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[30d 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[30e 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[30f 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[310 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[311 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[312 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[313 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[314 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[315 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[316 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[317 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[318 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[319 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[31a 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[31b 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[31c 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[31d 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[31e 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[31f 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[320 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[321 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[322 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[323 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[324 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.newChain.newLedgerResources.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[325 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[326 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[327 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[328 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[329 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[32a 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[32b 06-12 02:14:15.50 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[32c 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[32d 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[32e 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[32f 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[330 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[331 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[332 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[333 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[334 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[335 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[336 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[337 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.newChain.newLedgerResources.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[338 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[339 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/orderer/chains/businesschannel/] +[33a 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] does not exist +[33b 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/orderer/chains/businesschannel/] exists +[33c 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[33d 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[33e 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[33f 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[340 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[341 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[342 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc420c16940)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[343 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newLedgerResources.GetOrCreate.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockNum]] +[344 06-12 02:14:15.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x81, 0xc5, 0xbd, 0x2f, 0xfe, 0x1f, 0xf2, 0xa7, 0x99, 0x11, 0xeb, 0x89, 0x2a, 0xfe, 0x78, 0x3e, 0xbf, 0xeb, 0x8f, 0x89, 0xbe, 0x14, 0xc1, 0x3d, 0xfa, 0x19, 0xe2, 0x63, 0x95, 0x7d, 0xd8, 0xa6} txOffsets= +txId= locPointer=offset=38, bytesLength=12078 ] -[357 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12120], isChainEmpty=[false], lastBlockNumber=[0] -[358 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[359 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[35a 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12120], Going to peek [8] bytes -[35b 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12118], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[35c 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -[35d 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) -[35e 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources -[35f 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel -[360 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[361 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[362 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...451727845D479F95EFE94B3FCB14D4B0 -[363 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: FA3A9968A18D8F7DC2B50C9A3B50BDAF52CD4EB023A38BE0AA4BD2236F005150 -[364 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[365 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 -[366 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[367 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...451727845D479F95EFE94B3FCB14D4B0 -[368 05-31 05:21:34.27 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C512BBF6255CC56F61E34113706FB2675913CAE808D4B29AB9190C88F61657DD -[369 05-31 05:21:34.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xe3, 0x1b, 0x73, 0x64, 0x77, 0x2, 0x7e, 0x4e, 0x23, 0x22, 0x4d, 0x4f, 0x1a, 0xf8, 0xe7, 0xd9, 0x44, 0x48, 0x98, 0x3c, 0xb2, 0x1a, 0x7b, 0x9b, 0xc0, 0x7d, 0x81, 0xbb, 0xb8, 0x55, 0xf9, 0xc1} txOffsets= -txId= locPointer=offset=70, bytesLength=12999 +[345 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] +[346 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[347 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[348 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12121], Going to peek [8] bytes +[349 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[34a 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] WriteConfigBlock.newChain.newChainSupport.GetBlock.Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +[34b 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport.newBlockWriter -> DEBU [channel: businesschannel] Creating block writer for tip of chain (blockNumber=0, lastConfigBlockNum=0, lastConfigSeq=1) +[34c 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain.newChainSupport -> DEBU [channel: businesschannel] Done creating channel support resources +[34d 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] WriteConfigBlock.newChain -> INFO Created and starting new chain businesschannel +[34e 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[34f 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[350 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...C41AD0F97C63411D4063E78ED819955B +[351 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: B2D71EAB5778BEB43141DE3EFF574CD0ECD49D911CB4AB80FEDE7B9066ADABE1 +[352 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[353 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: testchainid] About to write block, setting its LAST_CONFIG to 0 +[354 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[355 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...C41AD0F97C63411D4063E78ED819955B +[356 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 380545BFF6336C0B001E35594560386B22876E29E4357AB849FAA5E6198C5EA7 +[357 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x7d, 0x53, 0xa7, 0x6, 0xee, 0x57, 0xd3, 0x5a, 0xf3, 0xea, 0x28, 0x42, 0xef, 0x79, 0x1e, 0x48, 0x16, 0x69, 0x46, 0xdd, 0x5c, 0x35, 0xf5, 0x1e, 0x78, 0xd7, 0x4f, 0xda, 0x68, 0x25, 0x81, 0xad} txOffsets= +txId= locPointer=offset=70, bytesLength=13000 ] -[36a 05-31 05:21:34.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24012], isChainEmpty=[false], lastBlockNumber=[1] -[36b 05-31 05:21:34.28 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 -[36c 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[36d 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[36e 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[36f 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[370 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[371 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[372 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[358 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[24013], isChainEmpty=[false], lastBlockNumber=[1] +[359 06-12 02:14:15.52 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: testchainid] Wrote block 1 +[35a 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[35b 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[35c 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[35d 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[35e 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[35f 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[360 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1455,220 +1437,223 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[373 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8530 gate 1527744094475361000 evaluation starts -[374 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8530 signed by 0 principal evaluation starts (used [false]) -[375 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8530 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[376 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8530 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[377 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8530 principal evaluation fails -[378 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8530 gate 1527744094475361000 evaluation fails -[379 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[37a 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[37b 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[37c 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[37d 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[37e 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[37f 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[380 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[381 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8540 gate 1527744094477400400 evaluation starts -[382 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8540 signed by 0 principal evaluation starts (used [false]) -[383 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8540 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[384 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[385 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[386 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8540 principal matched by identity 0 -[387 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 eb 77 d7 c8 78 d4 65 39 a9 0c bd 25 b8 08 13 bf |.w..x.e9...%....| -00000010 af 80 e8 fc 7a 9e 68 26 b0 79 fd a0 bc 63 81 a9 |....z.h&.y...c..| -[388 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 74 6d 8b f4 15 e3 9e b6 d9 63 9f 0a |0D. tm.......c..| -00000010 b7 2c 41 1c 6b 0c 97 e7 27 29 bd c5 a7 5a f7 ac |.,A.k...')...Z..| -00000020 da 78 e8 9a 02 20 2e 96 a5 b4 19 03 62 04 de d2 |.x... ......b...| -00000030 fb e7 fa 60 29 7a 8f db 38 4d fa 16 d8 41 e3 35 |...`)z..8M...A.5| -00000040 e3 71 ee 59 de a9 |.q.Y..| -[389 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8540 principal evaluation succeeds for identity 0 -[38a 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8540 gate 1527744094477400400 evaluation succeeds -[38b 05-31 05:21:34.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[38c 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[38d 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[38e 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[38f 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[390 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[391 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42056a420) start: > stop: > from 172.18.0.7:41274 -[392 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 -[393 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[394 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12120], Going to peek [8] bytes -[395 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12118], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[396 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -[397 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056a420) for 172.18.0.7:41274 -[398 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41274 for (0xc42056a420) -[399 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41274 -[39a 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41274 -[39b 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41274: rpc error: code = Canceled desc = context canceled -[39c 05-31 05:21:34.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[39d 05-31 05:21:36.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[39e 05-31 05:21:36.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41284 -[39f 05-31 05:21:36.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41284 -[3a0 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[3a1 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41286 -[3a2 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:41286 -[3a3 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -[3a4 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[3a5 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[3a6 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[3a7 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[3a8 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[3a9 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c0 gate 1527744096142860100 evaluation starts -[3aa 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 signed by 0 principal evaluation starts (used [false]) -[3ab 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3ac 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[3ad 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 principal evaluation fails -[3ae 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c0 gate 1527744096142860100 evaluation fails -[3af 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[3b0 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[3b1 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[3b2 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[3b3 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[3b4 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[3b5 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[3b6 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[3b7 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c8 gate 1527744096144467000 evaluation starts -[3b8 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 signed by 0 principal evaluation starts (used [false]) -[3b9 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3ba 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 principal matched by identity 0 -[3bb 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 01 1e 8f 0d fa fe 82 96 38 62 b2 4b 8c 08 01 65 |........8b.K...e| -00000010 0c 16 ab 1b 04 e5 fe cd 53 e5 ac b8 f7 b7 53 c3 |........S.....S.| -[3bc 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b8 04 e0 a3 3f 0e cd cd a7 8a 84 |0E.!.....?......| -00000010 1b 4f 16 10 b2 c7 11 52 23 fa d0 98 27 45 32 fb |.O.....R#...'E2.| -00000020 3b 8c c1 ba 42 02 20 6c fb 28 55 87 d3 4f 83 6e |;...B. l.(U..O.n| -00000030 fb 0b 34 b6 fa 92 59 22 67 57 60 1b 92 b0 ed 7c |..4...Y"gW`....|| -00000040 ec 64 98 4d 3d 8f 6b |.d.M=.k| -[3bd 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 principal evaluation succeeds for identity 0 -[3be 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c8 gate 1527744096144467000 evaluation succeeds -[3bf 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[3c0 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[3c1 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[3c2 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[3c3 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[3c4 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[3c5 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[3c6 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[3c7 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[3c8 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[3c9 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[3ca 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3cb 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3cc 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[3cd 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[3ce 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[3cf 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[3d0 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[3d1 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[3d2 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[3d3 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[3d4 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[3d5 05-31 05:21:36.14 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[3d6 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[3d7 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[3d8 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[3d9 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[3da 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[3db 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[3dc 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[3dd 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -[3de 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[3df 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[3e0 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -[3e1 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[3e2 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1527744096153696100 evaluation starts -[3e3 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 signed by 0 principal evaluation starts (used [false]) -[3e4 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[3e5 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[3e6 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal matched by identity 0 -[3e7 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 4a 24 81 2d 63 ca 0a 97 7f d9 99 19 2e 65 39 9a |J$.-c........e9.| -00000010 d5 dd 12 69 2c 06 87 c6 4b d6 e6 68 3e 75 61 e3 |...i,...K..h>ua.| -[3e8 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f3 f6 5c 67 87 4e 9a 12 11 e2 86 |0E.!...\g.N.....| -00000010 dd 1d 9e 51 f5 88 5e 31 e1 1c 0b 07 77 7e 78 89 |...Q..^1....w~x.| -00000020 dc 23 a2 67 24 02 20 41 e7 7a 86 a9 f1 1a 60 da |.#.g$. A.z....`.| -00000030 2e fe 84 bb 69 12 01 98 6c 6c 83 69 92 a3 d4 4d |....i...ll.i...M| -00000040 72 2b ed 87 eb 02 4b |r+....K| -[3e9 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e008 principal evaluation succeeds for identity 0 -[3ea 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e008 gate 1527744096153696100 evaluation succeeds -[3eb 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[3ec 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[3ed 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3ee 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3ef 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3f0 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3f1 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[3f2 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3f3 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3f4 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[3f5 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[3f6 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[3f7 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3f8 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3f9 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3fa 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[3fb 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3fc 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3fd 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[3fe 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[3ff 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[400 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[401 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[402 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[403 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[404 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[405 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[406 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[407 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[408 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[409 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[40a 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[40b 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[40c 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[40d 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[40e 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[40f 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[410 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[411 05-31 05:21:36.15 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[412 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -CSJWn+U1 ------END CERTIFICATE----- -[413 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +[361 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150258 gate 1528769655694736700 evaluation starts +[362 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150258 signed by 0 principal evaluation starts (used [false]) +[363 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150258 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[364 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150258 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[365 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150258 principal evaluation fails +[366 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150258 gate 1528769655694736700 evaluation fails +[367 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[368 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[369 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[36a 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[36b 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[36c 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[36d 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[36e 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[36f 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769655696078300 evaluation starts +[370 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 signed by 0 principal evaluation starts (used [false]) +[371 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[372 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[373 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org1MSP validating identity +[374 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 principal matched by identity 0 +[375 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 3e 7b e0 37 9c 3f 09 f5 81 15 9a cc 15 56 5e 1a |>{.7.?.......V^.| +00000010 46 86 fb 85 3a 5c 68 4d 59 4a 48 23 16 71 23 78 |F...:\hMYJH#.q#x| +[376 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6b 4a ed 07 3f 64 4e 82 8c d0 08 8c |0D. kJ..?dN.....| +00000010 13 44 e0 5f a9 f1 3b 47 8e f4 8e 17 0f 70 d9 4c |.D._..;G.....p.L| +00000020 58 03 f7 78 02 20 69 b6 ee 17 31 c3 3a 52 41 cf |X..x. i...1.:RA.| +00000030 e3 74 86 06 3b b6 e4 ca 34 cf 15 25 65 10 f7 a3 |.t..;...4..%e...| +00000040 d3 d5 25 cb 3b 36 |..%.;6| +[377 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 principal evaluation succeeds for identity 0 +[378 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769655696078300 evaluation succeeds +[379 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +[37a 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[37b 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[37c 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[37d 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[37e 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[37f 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420519400) start: > stop: > from 172.18.0.7:35708 +[380 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=0 +[381 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[382 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[12121], Going to peek [8] bytes +[383 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[384 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +[385 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420519400) for 172.18.0.7:35708 +[386 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35708 for (0xc420519400) +[387 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35708 +[388 06-12 02:14:15.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35708 +[389 06-12 02:14:15.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Received EOF from 172.18.0.7:35708, hangup +[38a 06-12 02:14:15.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[38b 06-12 02:14:15.70 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35708: read: connection reset by peer +[38c 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[38d 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35734 +[38e 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35734 +[38f 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[390 06-12 02:14:18.53 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35736 +[391 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:35736 +[392 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +[393 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[394 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[395 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[396 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[397 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[398 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150398 gate 1528769658542031800 evaluation starts +[399 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150398 signed by 0 principal evaluation starts (used [false]) +[39a 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150398 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[39b 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150398 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[39c 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150398 principal evaluation fails +[39d 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150398 gate 1528769658542031800 evaluation fails +[39e 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[39f 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[3a0 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +[3a1 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[3a2 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[3a3 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[3a4 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[3a5 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[3a6 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503a0 gate 1528769658545914300 evaluation starts +[3a7 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503a0 signed by 0 principal evaluation starts (used [false]) +[3a8 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503a0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[3a9 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503a0 principal matched by identity 0 +[3aa 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ee 2d 8f 70 76 96 cc 02 35 88 3a 75 70 00 bd 62 |.-.pv...5.:up..b| +00000010 d4 10 50 38 d3 e0 03 c9 c0 92 dd cf 1e 48 aa 41 |..P8.........H.A| +[3ab 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 15 57 d8 d1 6e ce 41 b5 cb 42 be ae |0D. .W..n.A..B..| +00000010 e2 7c 57 60 d5 0f e7 e0 cb bb 8b a4 7b 31 0d 9e |.|W`........{1..| +00000020 55 51 99 6b 02 20 0b ce 03 7f 3c 91 d6 ec f8 0c |UQ.k. ....<.....| +00000030 d8 84 3d 45 3c a4 e8 d0 a8 57 7c c5 a7 df 8d 7d |..=E<....W|....}| +00000040 cf 21 f1 99 cc 1b |.!....| +[3ac 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503a0 principal evaluation succeeds for identity 0 +[3ad 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503a0 gate 1528769658545914300 evaluation succeeds +[3ae 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +[3af 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[3b0 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[3b1 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[3b2 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[3b3 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[3b4 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3b5 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3b6 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[3b7 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[3b8 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[3b9 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[3ba 06-12 02:14:18.54 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[3bb 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3bc 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3bd 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[3be 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[3bf 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[3c0 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[3c1 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[3c2 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[3c3 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +[3c4 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +[3c5 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[3c6 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[3c7 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[3c8 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[3c9 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[3ca 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[3cb 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +[3cc 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[3cd 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[3ce 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +[3cf 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[3d0 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420150628 gate 1528769658553052600 evaluation starts +[3d1 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150628 signed by 0 principal evaluation starts (used [false]) +[3d2 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150628 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[3d3 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[3d4 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150628 principal matched by identity 0 +[3d5 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 be 34 c2 33 46 64 a0 de 11 5b 45 b1 e6 9c bb 65 |.4.3Fd...[E....e| +00000010 b3 75 73 fa 14 94 7c 73 d4 7d 46 c4 3e 48 ea c2 |.us...|s.}F.>H..| +[3d6 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 ed 96 b0 ac 8b ad c8 67 d3 4a |0E.!.........g.J| +00000010 e7 fe 6c 0d 70 0e eb 0d 09 6e ca a4 01 86 2d 58 |..l.p....n....-X| +00000020 39 5c 13 20 df 02 20 7e 6e e6 30 f4 5c 8f 6f ae |9\. .. ~n.0.\.o.| +00000030 f4 7b 2d 60 fc 7b f7 3f 50 91 37 9f 99 c5 6c 55 |.{-`.{.?P.7...lU| +00000040 ff 2e 3f b2 8f d5 f6 |..?....| +[3d7 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150628 principal evaluation succeeds for identity 0 +[3d8 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420150628 gate 1528769658553052600 evaluation succeeds +[3d9 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[3da 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[3db 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +[3dc 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3dd 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3de 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3df 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e0 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[3e1 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e2 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3e3 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[3e4 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[3e5 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[3e6 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3e7 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3e8 06-12 02:14:18.55 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3e9 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3ea 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3eb 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3ec 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3ed 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3ee 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3ef 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[3f0 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3f1 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3f2 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3f3 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3f4 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3f5 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[3f6 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3f7 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3f8 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3f9 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3fa 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3fb 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3fc 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3fd 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3fe 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[3ff 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[400 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[401 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[402 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -5Y80QLeEvYkoMMMbcA== +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -----END CERTIFICATE----- -[414 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[415 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[416 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[417 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[418 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[419 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[41a 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[41b 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[41c 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[41d 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[41e 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[403 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +-----END CERTIFICATE----- +[404 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[405 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[406 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[407 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[408 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[409 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[40a 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[40b 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[40c 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[40d 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[40e 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[40f 06-12 02:14:18.56 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[410 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[411 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1683,7 +1668,7 @@ grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp QKuzs3j8kg== -----END CERTIFICATE----- -[41f 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[412 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -1697,139 +1682,137 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[420 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[421 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[422 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[423 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[424 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[425 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[426 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[427 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[428 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[429 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[42a 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[42b 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[42c 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[42d 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[42e 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ ------END CERTIFICATE----- -[42f 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +[413 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[414 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[415 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[416 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[417 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[418 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[419 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[41a 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[41b 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[41c 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[41d 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +CSJWn+U1 -----END CERTIFICATE----- -[430 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[431 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[432 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[433 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[434 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[435 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[436 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[437 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[438 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[439 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[43a 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[43b 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[43c 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[43d 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[43e 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[43f 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[440 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[441 05-31 05:21:36.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[442 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[443 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[444 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[445 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[446 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[447 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[448 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[449 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[44a 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[44b 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[44c 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[44d 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[44e 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[44f 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[450 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[451 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[452 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[453 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[454 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[455 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[456 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[457 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[458 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[459 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[45a 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[45b 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[45c 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[45d 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[45e 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[45f 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[460 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[461 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[462 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[463 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[464 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[465 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[466 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[467 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[468 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[469 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[46a 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[46b 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[46c 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[46d 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[46e 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[46f 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[470 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[471 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[472 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[473 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[474 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[475 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[476 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[477 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[478 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[479 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[47a 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[47b 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[47c 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[47d 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[47e 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[47f 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[480 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[481 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[482 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[483 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608E08CBED80522...226757601B92B0ED7CEC64984D3D8F6B -[484 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 112E0AE12518905B30FDBE4DDAA837E7C509916293FE2D5C1A763AC6FCD544F9 -[485 05-31 05:21:36.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[486 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[487 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[488 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[489 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[48a 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[48b 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[41e 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +5Y80QLeEvYkoMMMbcA== +-----END CERTIFICATE----- +[41f 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[420 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[421 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[422 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[423 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[424 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[425 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[426 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[427 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[428 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[429 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[42a 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[42b 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[42c 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[42d 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[42e 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[42f 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[430 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[431 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[432 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[433 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[434 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[435 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[436 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[437 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[438 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[439 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[43a 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[43b 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[43c 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[43d 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[43e 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[43f 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[440 06-12 02:14:18.57 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[441 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[442 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[443 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[444 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[445 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[446 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[447 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[448 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[449 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[44a 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[44b 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[44c 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[44d 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[44e 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[44f 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[450 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[451 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[452 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[453 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[454 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[455 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[456 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[457 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[458 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[459 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[45a 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[45b 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[45c 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[45d 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[45e 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[45f 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[460 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[461 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[462 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[463 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[464 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[465 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[466 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[467 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[468 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[469 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[46a 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[46b 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[46c 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[46d 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[46e 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[46f 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[470 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[471 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[472 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FAD8FCD80522...E8D0A8577CC5A7DF8D7DCF21F199CC1B +[473 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 4218DCDEB8249982FA3A15A1AC2334D2AC2B2B66B5F45010B799A625BC2F682B +[474 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[475 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[476 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[477 06-12 02:14:18.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[478 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[479 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[47a 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -1842,153 +1825,114 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -----END CERTIFICATE----- -[48c 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8d8 gate 1527744096181049000 evaluation starts -[48d 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8d8 signed by 0 principal evaluation starts (used [false]) -[48e 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8d8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[48f 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[490 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[491 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8d8 principal matched by identity 0 -[492 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 11 2e 0a e1 25 18 90 5b 30 fd be 4d da a8 37 e7 |....%..[0..M..7.| -00000010 c5 09 91 62 93 fe 2d 5c 1a 76 3a c6 fc d5 44 f9 |...b..-\.v:...D.| -[493 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 38 d1 59 e6 1a 79 c9 83 5e 65 d2 d9 |0D. 8.Y..y..^e..| -00000010 b3 af b8 db 8a 08 d3 07 f2 5f 7b 66 d3 83 8b e1 |........._{f....| -00000020 34 1a b9 61 02 20 22 b3 46 68 3a f1 a7 bd 94 db |4..a. ".Fh:.....| -00000030 d9 da 47 30 80 97 6a fe 50 3d 87 e2 c8 57 6d dd |..G0..j.P=...Wm.| -00000040 77 65 cf bc c4 bc |we....| -[494 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e8d8 principal evaluation succeeds for identity 0 -[495 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e8d8 gate 1527744096181049000 evaluation succeeds -[496 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[497 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[498 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[499 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[49a 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[49b 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[49c 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:41286 -[49d 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[49e 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[49f 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[4a0 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[4a1 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[4a2 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[4a3 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[4a4 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[4a5 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[4a6 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[4a7 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[4a8 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[4a9 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[4aa 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[4ab 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[4ac 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[4ad 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[4ae 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[4af 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[4b0 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[4b1 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[4b2 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[4b3 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[4b4 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] -[4b5 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[4b6 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[4b7 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] -[4b8 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[4b9 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8908 gate 1527744096187254000 evaluation starts -[4ba 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8908 signed by 0 principal evaluation starts (used [false]) -[4bb 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8908 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[4bc 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8908 principal matched by identity 0 -[4bd 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 4a 24 81 2d 63 ca 0a 97 7f d9 99 19 2e 65 39 9a |J$.-c........e9.| -00000010 d5 dd 12 69 2c 06 87 c6 4b d6 e6 68 3e 75 61 e3 |...i,...K..h>ua.| -[4be 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f3 f6 5c 67 87 4e 9a 12 11 e2 86 |0E.!...\g.N.....| -00000010 dd 1d 9e 51 f5 88 5e 31 e1 1c 0b 07 77 7e 78 89 |...Q..^1....w~x.| -00000020 dc 23 a2 67 24 02 20 41 e7 7a 86 a9 f1 1a 60 da |.#.g$. A.z....`.| -00000030 2e fe 84 bb 69 12 01 98 6c 6c 83 69 92 a3 d4 4d |....i...ll.i...M| -00000040 72 2b ed 87 eb 02 4b |r+....K| -[4bf 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8908 principal evaluation succeeds for identity 0 -[4c0 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8908 gate 1527744096187254000 evaluation succeeds -[4c1 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[4c2 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[4c3 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[4c4 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4c5 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4c6 05-31 05:21:36.18 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4c7 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4c8 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[4c9 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4ca 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4cb 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[4cc 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[4cd 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[4ce 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4cf 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4d0 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4d1 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4d2 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4d3 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4d4 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[4d5 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[4d6 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[4d7 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[4d8 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[4db 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[4dc 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[4d9 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41284: rpc error: code = Canceled desc = context canceled -[4de 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[4dd 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[4df 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4e0 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[4e1 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[4da 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41286: rpc error: code = Canceled desc = context canceled -[4e3 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[4e2 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[4e4 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4e5 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4e6 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4e7 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4e8 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[4e9 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[4ea 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4eb 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[4ec 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[4ed 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -CSJWn+U1 ------END CERTIFICATE----- -[4ee 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -5Y80QLeEvYkoMMMbcA== ------END CERTIFICATE----- -[4ef 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[4f0 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[4f1 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[4f2 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[4f3 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[4f4 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[4f5 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[4f6 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[4f7 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[4f8 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[4f9 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[47b 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1528769658590578200 evaluation starts +[47c 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) +[47d 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[47e 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[47f 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +[480 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 +[481 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 42 18 dc de b8 24 99 82 fa 3a 15 a1 ac 23 34 d2 |B....$...:...#4.| +00000010 ac 2b 2b 66 b5 f4 50 10 b7 99 a6 25 bc 2f 68 2b |.++f..P....%./h+| +[482 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f9 6c 3d ce 3b 83 62 a2 39 1d d4 |0E.!..l=.;.b.9..| +00000010 16 cd d9 fa 6f 9f fd 2a 71 75 15 69 02 c5 56 89 |....o..*qu.i..V.| +00000020 ca 95 be 2d 31 02 20 09 18 42 e4 60 4b dc 6f 83 |...-1. ..B.`K.o.| +00000030 54 7a b8 9f 1d 15 a6 d4 25 0f 81 87 f0 5d 58 fd |Tz......%....]X.| +00000040 4e ae 3d a1 25 f3 75 |N.=.%.u| +[483 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 +[484 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1528769658590578200 evaluation succeeds +[485 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +[486 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[487 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +[488 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[489 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[48a 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[48b 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:35736 +[48c 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[48d 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[48e 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[48f 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[490 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[491 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[493 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35736: rpc error: code = Canceled desc = context canceled +[492 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[494 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[495 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[496 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[497 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[498 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[499 06-12 02:14:18.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[49a 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[49c 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[49d 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[49b 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35734: rpc error: code = Canceled desc = context canceled +[49f 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[49e 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +[4a0 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +[4a1 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[4a2 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[4a3 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[4a4 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[4a5 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[4a6 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[4a7 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org1MSP] +[4a8 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[4a9 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[4aa 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org1MSP looking up path [] +[4ab 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[4ac 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e7c8 gate 1528769658603078000 evaluation starts +[4ad 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e7c8 signed by 0 principal evaluation starts (used [false]) +[4ae 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e7c8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[4af 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e7c8 principal matched by identity 0 +[4b0 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 be 34 c2 33 46 64 a0 de 11 5b 45 b1 e6 9c bb 65 |.4.3Fd...[E....e| +00000010 b3 75 73 fa 14 94 7c 73 d4 7d 46 c4 3e 48 ea c2 |.us...|s.}F.>H..| +[4b1 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 ed 96 b0 ac 8b ad c8 67 d3 4a |0E.!.........g.J| +00000010 e7 fe 6c 0d 70 0e eb 0d 09 6e ca a4 01 86 2d 58 |..l.p....n....-X| +00000020 39 5c 13 20 df 02 20 7e 6e e6 30 f4 5c 8f 6f ae |9\. .. ~n.0.\.o.| +00000030 f4 7b 2d 60 fc 7b f7 3f 50 91 37 9f 99 c5 6c 55 |.{-`.{.?P.7...lU| +00000040 ff 2e 3f b2 8f d5 f6 |..?....| +[4b2 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e7c8 principal evaluation succeeds for identity 0 +[4b3 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e7c8 gate 1528769658603078000 evaluation succeeds +[4b4 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[4b5 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[4b6 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +[4b7 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4b8 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4b9 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4ba 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4bb 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[4bc 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4bd 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4be 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[4bf 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[4c0 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[4c1 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4c2 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4c3 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4c4 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4c5 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4c6 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4c7 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[4c8 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[4c9 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[4ca 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[4cb 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[4cc 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[4cd 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[4ce 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[4cf 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4d0 06-12 02:14:18.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[4d1 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[4d2 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4d3 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[4d4 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[4d5 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4d6 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4d7 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[4d8 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[4d9 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[4da 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[4db 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[4dc 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2003,7 +1947,7 @@ grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp QKuzs3j8kg== -----END CERTIFICATE----- -[4fa 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[4dd 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2017,21 +1961,60 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[4fb 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[4fc 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[4fd 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[4fe 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[4ff 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[500 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[501 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[502 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[503 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[504 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[505 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[506 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[507 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[508 05-31 05:21:36.19 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[509 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[4de 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[4df 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[4e0 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[4e1 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4e2 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4e3 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[4e4 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[4e5 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[4e6 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[4e7 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[4e8 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +CSJWn+U1 +-----END CERTIFICATE----- +[4e9 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +5Y80QLeEvYkoMMMbcA== +-----END CERTIFICATE----- +[4ea 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[4eb 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[4ec 06-12 02:14:18.61 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[4ed 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[4ee 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[4ef 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[4f0 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[4f1 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[4f2 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[4f3 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[4f4 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[4f5 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[4f6 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[4f7 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[4f8 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt @@ -2045,7 +2028,7 @@ AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -----END CERTIFICATE----- -[50a 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[4f9 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2058,116 +2041,116 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[50b 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[50c 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[50d 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[50e 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[50f 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[510 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[511 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[512 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[513 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[514 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[515 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[516 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[517 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[518 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[519 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[51a 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[51b 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[51c 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[51d 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[51e 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[51f 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[520 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[521 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[522 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[523 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[524 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[525 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[526 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[527 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[528 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[529 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[52a 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[52b 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[52c 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[52d 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[52e 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[52f 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[530 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[531 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[532 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[533 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[534 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[535 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[536 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[537 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[538 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[539 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[53a 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[53b 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[53c 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[53d 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[53e 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[53f 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[540 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[541 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[542 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[543 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[544 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[545 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[546 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[547 05-31 05:21:36.20 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[548 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[549 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[54a 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[54b 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[54c 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[54d 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[54e 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[54f 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[550 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[551 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[552 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[553 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[554 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[555 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[556 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[557 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[558 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[559 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[55a 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[55b 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[55c 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[55d 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[55e 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A117434747A51C4AC0A46C27902C4525 -[55f 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 128F73D3DE1F816CEAD5BCB493C5E82C6DF70F7F119CA3533B8CEEB216E349DB -[560 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 -[561 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[562 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 -[563 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[564 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...A117434747A51C4AC0A46C27902C4525 -[565 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 3D99C824FA9B7AF09BC30478A5F68E0EA9AEF36D0AF59C490AA8A245AD14C333 -[566 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xb, 0x15, 0x74, 0xf2, 0x5c, 0x99, 0x28, 0x95, 0x1, 0xd7, 0x8a, 0x82, 0x2e, 0x8c, 0x80, 0x51, 0xbe, 0xff, 0x92, 0xb1, 0xb5, 0x58, 0x12, 0xa5, 0x7c, 0x17, 0x9a, 0x2a, 0xb5, 0x56, 0x83, 0x2f} txOffsets= +[4fa 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[4fb 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[4fc 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[4fd 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[4fe 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[4ff 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[500 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[501 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[502 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[503 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[504 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[505 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[506 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[507 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[508 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[509 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[50a 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[50b 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[50c 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[50d 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[50e 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[50f 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[510 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[511 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[512 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[513 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[514 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[515 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[516 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[517 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[518 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[519 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[51a 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[51b 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[51c 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[51d 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[51e 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[51f 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[520 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[521 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[522 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[523 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[524 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[525 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[526 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[527 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[528 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[529 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[52a 06-12 02:14:18.62 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[52b 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[52c 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[52d 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[52e 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[52f 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[530 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[531 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[532 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[533 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[534 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[535 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[536 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[537 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[538 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[539 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[53a 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[53b 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[53c 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[53d 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[53e 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[53f 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[540 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[541 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[542 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[543 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[544 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[545 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[546 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[547 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[548 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[549 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[54a 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[54b 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[54c 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[54d 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...9E3C5D4763016D4E6D810E6474177C81 +[54e 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: EFA94A647213AAD628BA0A4FAF622EDED1187778DB26766A9D432356572A4C75 +[54f 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 1 to 2, setting lastConfigBlockNum from 0 to 1 +[550 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[551 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 1 +[552 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[553 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08010A90060A0A4F7264657265724D53...9E3C5D4763016D4E6D810E6474177C81 +[554 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 32BB3F967BBF3382CCF8C711EFC8E314982125A22EFD493A0773F02663D97ECB +[555 06-12 02:14:18.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x71, 0x5a, 0x51, 0xe9, 0xa2, 0xaf, 0xec, 0xef, 0x2d, 0x90, 0x9d, 0xf1, 0x4a, 0x14, 0x48, 0x4f, 0xc, 0x23, 0xa9, 0xe9, 0xf2, 0xac, 0x62, 0xe, 0xce, 0x9a, 0x5e, 0x31, 0xff, 0x8c, 0x6, 0xcb} txOffsets= txId= locPointer=offset=70, bytesLength=12094 ] -[567 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] -[568 05-31 05:21:36.21 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 -[569 05-31 05:21:38.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[56a 05-31 05:21:38.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41288 -[56b 05-31 05:21:38.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41288 -[56c 05-31 05:21:38.31 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[56d 05-31 05:21:38.31 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41290 -[56e 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:41290 -[56f 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -[570 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[571 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[572 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[573 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[574 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[575 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[576 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[556 06-12 02:14:18.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26079], isChainEmpty=[false], lastBlockNumber=[1] +[557 06-12 02:14:18.64 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 1 +[558 06-12 02:14:20.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[559 06-12 02:14:20.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35738 +[55a 06-12 02:14:20.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35738 +[55b 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[55c 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35740 +[55d 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:35740 +[55e 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +[55f 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[560 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[561 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[562 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[563 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[564 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[565 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2181,110 +2164,174 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[577 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e368 gate 1527744098328082300 evaluation starts -[578 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e368 signed by 0 principal evaluation starts (used [false]) -[579 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e368 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[57a 05-31 05:21:38.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[57b 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[57c 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e368 principal matched by identity 0 -[57d 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 41 db 8c 13 ab 33 f1 87 cb da 37 04 a1 c1 eb 99 |A....3....7.....| -00000010 5d 0d 2d 23 00 27 3d 47 d3 d8 9c 93 11 9c 02 bd |].-#.'=G........| -[57e 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6b 53 1a 4d 4f f6 75 ee 90 2e 4f 7b |0D. kS.MO.u...O{| -00000010 94 83 cd b4 c7 dc 71 37 fb d4 91 35 0e 0d a0 24 |......q7...5...$| -00000020 45 9c 3f d4 02 20 42 18 6b 5a 80 cc 8b 58 15 17 |E.?.. B.kZ...X..| -00000030 e4 84 a6 cb ab 91 15 6f 59 ae ec 0c cd c8 38 7d |.......oY.....8}| -00000040 ce 7f c5 09 70 58 |....pX| -[57f 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e368 principal evaluation succeeds for identity 0 -[580 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e368 gate 1527744098328082300 evaluation succeeds -[581 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -[582 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[583 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[584 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[585 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[586 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[587 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[588 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[589 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[58a 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[58b 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[58c 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[58d 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[58e 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[58f 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[590 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[591 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[592 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[593 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[594 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[595 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[596 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[597 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[598 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[599 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[59a 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[59b 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[59c 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[59d 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[59e 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -[59f 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[5a0 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[5a1 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -[5a2 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[5a3 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e678 gate 1527744098339221300 evaluation starts -[5a4 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e678 signed by 0 principal evaluation starts (used [false]) -[5a5 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e678 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[5a6 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[5a7 05-31 05:21:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e678 principal matched by identity 0 -[5a8 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c 28 02 1b 57 05 88 2f cb 54 d5 4b d3 41 5c 2f |.(..W../.T.K.A\/| -00000010 4a 85 ec b5 54 95 b5 7b 35 67 ee 40 ed 83 53 8b |J...T..{5g.@..S.| -[5a9 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c2 db ca ed 0b ba c5 52 5e ef 11 |0E.!........R^..| -00000010 39 6f 5a b4 95 d7 5a 9d 6b 18 4a ac c7 6c 18 f7 |9oZ...Z.k.J..l..| -00000020 1e 88 7f e8 1d 02 20 5d 59 b9 b3 2d c9 1f 15 a4 |...... ]Y..-....| -00000030 ca 9b 04 d5 9c a7 c5 99 3a 29 6c 62 d3 f3 05 61 |........:)lb...a| -00000040 6d e8 63 79 57 ba 81 |m.cyW..| -[5aa 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e678 principal evaluation succeeds for identity 0 -[5ab 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc42000e678 gate 1527744098339221300 evaluation succeeds -[5ac 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[5ad 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[5ae 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[5af 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[5b0 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[5b1 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[5b2 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5b3 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5b4 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5b5 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5b6 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5b7 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5b8 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5b9 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5ba 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5bb 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5bc 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5bd 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[5be 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5bf 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[5c0 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[5c1 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[5c2 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[5c3 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[5c4 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[5c5 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[5c6 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[5c7 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[5c8 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[5c9 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[5ca 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[5cb 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[5cc 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[5cd 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[5ce 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5cf 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[5d0 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[5d1 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5d2 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[5d3 05-31 05:21:38.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[5d4 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[566 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150360 gate 1528769660734984300 evaluation starts +[567 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150360 signed by 0 principal evaluation starts (used [false]) +[568 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150360 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[569 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150360 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[56a 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150360 principal evaluation fails +[56b 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150360 gate 1528769660734984300 evaluation fails +[56c 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[56d 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[56e 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +[56f 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[570 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[571 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[572 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[573 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[574 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150378 gate 1528769660737038200 evaluation starts +[575 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150378 signed by 0 principal evaluation starts (used [false]) +[576 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150378 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[577 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150378 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[578 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150378 principal evaluation fails +[579 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150378 gate 1528769660737038200 evaluation fails +[57a 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers +[57b 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[57c 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[57d 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150388 gate 1528769660738567300 evaluation starts +[57e 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150388 signed by 0 principal evaluation starts (used [false]) +[57f 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150388 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[580 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[581 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org2MSP validating identity +[582 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150388 principal matched by identity 0 +[583 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 b9 22 98 cd a9 8b 5a f3 80 70 1b 65 a1 8f 01 ac |."....Z..p.e....| +00000010 42 01 5d 05 87 dc 3e 3b 16 8c 75 e0 37 66 17 a0 |B.]...>;..u.7f..| +[584 06-12 02:14:20.73 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 68 91 61 b1 16 e9 18 1f 8a a3 d9 c5 |0D. h.a.........| +00000010 82 f0 09 c9 8d 28 dc 50 c2 70 04 d4 e7 9e e3 ed |.....(.P.p......| +00000020 d6 42 0b 39 02 20 0b e3 58 80 0a ce 4d f1 08 ba |.B.9. ..X...M...| +00000030 b0 70 6c 37 60 9c 81 b7 dc 83 99 12 49 bb 85 8f |.pl7`.......I...| +00000040 99 20 24 21 d1 6f |. $!.o| +[585 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150388 principal evaluation succeeds for identity 0 +[586 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150388 gate 1528769660738567300 evaluation succeeds +[587 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +[588 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[589 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[58a 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[58b 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[58c 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[58d 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[58e 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[58f 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[590 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[591 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[592 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[593 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[594 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[595 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[596 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[597 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[598 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[599 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[59a 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[59b 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[59c 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +[59d 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +[59e 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[59f 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[5a0 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[5a1 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[5a2 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[5a3 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[5a4 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +[5a5 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[5a6 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[5a7 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +[5a8 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[5a9 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4201505f8 gate 1528769660745054800 evaluation starts +[5aa 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505f8 signed by 0 principal evaluation starts (used [false]) +[5ab 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505f8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[5ac 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[5ad 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505f8 principal matched by identity 0 +[5ae 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 59 eb 02 6e 43 cc 4b ef 49 6c 9b 49 9c 09 95 21 |Y..nC.K.Il.I...!| +00000010 31 92 9a b4 2f 58 bc 47 a2 27 2b 8e ad 87 b6 24 |1.../X.G.'+....$| +[5af 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7b 4a 4b 38 d3 92 84 6a ab d3 a7 20 |0D. {JK8...j... | +00000010 b0 fa cb d7 39 0e 56 0b 15 34 11 3e e9 e1 86 36 |....9.V..4.>...6| +00000020 0e 1a 6f b7 02 20 4b ac 5f 73 3a 03 16 81 2d 01 |..o.. K._s:...-.| +00000030 a1 a7 a6 7d 94 a5 54 89 d1 bf b0 74 e2 98 aa 3d |...}..T....t...=| +00000040 49 8b 9d 37 2d 08 |I..7-.| +[5b0 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505f8 principal evaluation succeeds for identity 0 +[5b1 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4201505f8 gate 1528769660745054800 evaluation succeeds +[5b2 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +[5b3 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +[5b4 06-12 02:14:20.74 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +[5b5 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5b6 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5b7 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5b8 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5b9 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5ba 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5bb 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[5bc 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5bd 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5be 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5bf 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[5c0 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[5c1 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[5c2 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5c3 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5c4 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5c5 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[5c6 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[5c7 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[5c8 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[5c9 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[5ca 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[5cb 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[5cc 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[5cd 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[5ce 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[5cf 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[5d0 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[5d1 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[5d2 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[5d3 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[5d4 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[5d5 06-12 02:14:20.75 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[5d6 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5d7 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[5d8 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[5d9 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[5da 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[5db 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +-----END CERTIFICATE----- +[5dc 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +-----END CERTIFICATE----- +[5dd 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[5de 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[5df 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[5e0 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[5e1 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[5e2 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[5e3 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[5e4 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5e5 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[5e6 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[5e7 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[5e8 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[5e9 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[5ea 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2299,7 +2346,7 @@ grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp QKuzs3j8kg== -----END CERTIFICATE----- -[5d5 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[5eb 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2313,17 +2360,17 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[5d6 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[5d7 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[5d8 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[5d9 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[5da 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5db 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[5dc 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[5dd 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5de 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[5df 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[5e0 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[5ec 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[5ed 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[5ee 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[5ef 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[5f0 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[5f1 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[5f2 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[5f3 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[5f4 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[5f5 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[5f6 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2338,7 +2385,7 @@ FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN CSJWn+U1 -----END CERTIFICATE----- -[5e1 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[5f7 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -2352,140 +2399,99 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[5e2 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[5e3 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[5e4 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[5e5 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[5e6 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[5e7 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[5e8 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[5e9 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[5ea 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[5eb 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[5ec 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[5ed 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[5ee 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[5ef 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[5f0 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ ------END CERTIFICATE----- -[5f1 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P ------END CERTIFICATE----- -[5f2 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[5f3 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[5f4 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[5f5 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[5f6 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[5f7 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[5f8 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[5f9 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[5fa 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[5fb 05-31 05:21:38.35 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[5fc 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[5fd 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[5fe 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[5ff 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[600 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[601 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[602 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[603 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[604 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[605 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[606 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[607 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[608 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[609 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[60a 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[60b 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[60c 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[60d 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[60e 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[60f 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[610 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[611 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[612 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[613 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[614 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[615 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[616 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[617 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[618 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[619 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[61a 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[61b 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[61c 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[61d 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[61e 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[61f 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[620 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[621 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[622 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[623 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[624 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[625 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[626 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[627 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[628 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[629 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[62a 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[62b 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[62c 05-31 05:21:38.36 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[62d 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[62e 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[62f 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[630 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[631 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[632 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[633 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[634 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[635 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[636 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[637 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[638 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[639 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[63a 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[63b 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[63c 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[63d 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[63e 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[63f 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[640 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[641 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[642 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[643 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[644 05-31 05:21:38.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[645 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[646 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608E28CBED80522...156F59AEEC0CCDC8387DCE7FC5097058 -[647 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: 54BFB52A64BB4CE44830331B70CE2AA41804E34FD25F4806A473A57F2F7B2691 -[648 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[649 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[64a 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[64b 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[64c 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[64d 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[64e 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[5f8 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[5f9 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[5fa 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[5fb 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[5fc 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[5fd 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[5fe 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[5ff 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[600 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[601 06-12 02:14:20.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[602 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[603 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[604 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[605 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[606 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[607 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[608 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[609 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[60a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[60b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[60c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[60d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[60e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[60f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[610 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[611 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[612 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[613 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[614 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[615 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[616 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[617 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[618 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[619 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[61a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[61b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[61c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[61d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[61e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[61f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[620 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[621 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[622 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[623 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[624 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[625 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[626 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[627 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[628 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[629 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[62a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[62b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[62c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[62d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[62e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[62f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[630 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[631 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[632 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[633 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[634 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[635 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[636 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[637 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[638 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[639 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[63a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[63b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[63c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[63d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[63e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[63f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[640 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[641 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[642 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[643 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[644 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[645 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[646 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[647 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[648 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[649 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[64a 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[64b 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[64c 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608FCD8FCD80522...81B7DC83991249BB858F99202421D16F +[64d 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: FE1DD8D1EB6A7E0A685B371BCCDF7D578B73862B9E6A90C9AF5D5DE45105F7AA +[64e 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[64f 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[650 06-12 02:14:20.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[651 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[652 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[653 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[654 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -2498,176 +2504,151 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -----END CERTIFICATE----- -[64f 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1527744098382884700 evaluation starts -[650 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 signed by 0 principal evaluation starts (used [false]) -[651 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[652 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[653 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal evaluation fails -[654 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1527744098382884700 evaluation fails -[655 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[656 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[657 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[658 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1527744098384251700 evaluation starts -[659 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) -[65a 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[65b 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[65c 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal evaluation fails -[65d 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1527744098384251700 evaluation fails -[65e 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Writers -[65f 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[660 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Writers Org1MSP.Writers ] -[661 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Writers -[662 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[663 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[664 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[665 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[666 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2b0 gate 1527744098385951500 evaluation starts -[667 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b0 signed by 0 principal evaluation starts (used [false]) -[668 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[669 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[66a 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[66b 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b0 principal matched by identity 0 -[66c 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 54 bf b5 2a 64 bb 4c e4 48 30 33 1b 70 ce 2a a4 |T..*d.L.H03.p.*.| -00000010 18 04 e3 4f d2 5f 48 06 a4 73 a5 7f 2f 7b 26 91 |...O._H..s../{&.| -[66d 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c4 e0 41 7f 2d 93 3c 01 19 94 01 |0E.!...A.-.<....| -00000010 6c ec 66 1c 5a 5a 4b d0 26 25 ba 94 53 56 d6 46 |l.f.ZZK.&%..SV.F| -00000020 93 fe dd 5f a2 02 20 1e cd e4 c8 ae 98 02 57 10 |..._.. .......W.| -00000030 f7 aa d3 76 e4 f5 8e 19 4d 51 e0 30 4a b7 32 ac |...v....MQ.0J.2.| -00000040 43 d6 f2 ca 07 a5 a0 |C......| -[66e 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2b0 principal evaluation succeeds for identity 0 -[66f 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2b0 gate 1527744098385951500 evaluation succeeds -[670 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[671 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[672 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[673 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[674 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[675 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[676 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:41290 -[677 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[678 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[679 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[67a 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[67b 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[67c 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[67d 05-31 05:21:38.38 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[67e 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[67f 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[680 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[681 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[682 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[683 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[684 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[685 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[686 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[687 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[688 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[689 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[68a 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[68b 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[68c 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[68d 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[68e 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] -[68f 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[690 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[691 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] -[692 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[693 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200b87b8 gate 1527744098394646700 evaluation starts -[694 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b87b8 signed by 0 principal evaluation starts (used [false]) -[695 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b87b8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[696 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b87b8 principal matched by identity 0 -[697 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c 28 02 1b 57 05 88 2f cb 54 d5 4b d3 41 5c 2f |.(..W../.T.K.A\/| -00000010 4a 85 ec b5 54 95 b5 7b 35 67 ee 40 ed 83 53 8b |J...T..{5g.@..S.| -[698 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 c2 db ca ed 0b ba c5 52 5e ef 11 |0E.!........R^..| -00000010 39 6f 5a b4 95 d7 5a 9d 6b 18 4a ac c7 6c 18 f7 |9oZ...Z.k.J..l..| -00000020 1e 88 7f e8 1d 02 20 5d 59 b9 b3 2d c9 1f 15 a4 |...... ]Y..-....| -00000030 ca 9b 04 d5 9c a7 c5 99 3a 29 6c 62 d3 f3 05 61 |........:)lb...a| -00000040 6d e8 63 79 57 ba 81 |m.cyW..| -[699 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b87b8 principal evaluation succeeds for identity 0 -[69a 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc4200b87b8 gate 1527744098394646700 evaluation succeeds -[69b 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[69c 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[69d 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[69e 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[69f 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6a0 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a1 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6a2 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a3 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6a4 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[6a5 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[6a6 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[6a7 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[6a8 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6a9 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6ab 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41290: rpc error: code = Canceled desc = context canceled -[6aa 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6ad 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6ac 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[6af 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41288: rpc error: code = Canceled desc = context canceled -[6b0 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[6ae 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6b1 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6b2 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[6b3 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[6b4 05-31 05:21:38.39 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[6b5 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[6b6 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[6b7 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[6b8 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[6b9 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[6ba 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6bb 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[6bc 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[6bd 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6be 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[6bf 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6c0 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6c1 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6c2 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[6c3 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[6c4 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6c5 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6c6 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[6c7 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY -hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz -FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL -kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN -CSJWn+U1 ------END CERTIFICATE----- -[6c8 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +[655 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e700 gate 1528769660780785000 evaluation starts +[656 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e700 signed by 0 principal evaluation starts (used [false]) +[657 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e700 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[658 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[659 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +[65a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e700 principal matched by identity 0 +[65b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 fe 1d d8 d1 eb 6a 7e 0a 68 5b 37 1b cc df 7d 57 |.....j~.h[7...}W| +00000010 8b 73 86 2b 9e 6a 90 c9 af 5d 5d e4 51 05 f7 aa |.s.+.j...]].Q...| +[65c 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 eb b8 b3 f8 7a c7 7a 86 0a 36 0a |0E.!.....z.z..6.| +00000010 2d 54 e5 b5 d6 eb 44 6e c8 69 5b 47 f1 bd 17 46 |-T....Dn.i[G...F| +00000020 2f b3 1b 15 73 02 20 2a 0c cb 52 e8 52 7d 32 a8 |/...s. *..R.R}2.| +00000030 da 16 f8 75 a3 db 0d d9 9d b2 10 6e fd cf 56 9e |...u.......n..V.| +00000040 49 74 a4 68 ca 7c f4 |It.h.|.| +[65d 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e700 principal evaluation succeeds for identity 0 +[65e 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e700 gate 1528769660780785000 evaluation succeeds +[65f 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +[660 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[661 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +[662 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[663 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[664 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[666 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[667 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[668 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[669 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[66a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[66b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[66c 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[66d 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[66e 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[66f 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[670 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[671 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[672 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[673 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[674 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[675 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +[676 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +[677 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +[678 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[679 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[67a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[67b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[67c 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[67d 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[67e 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application looking up path [Org2MSP] +[67f 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[680 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[681 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application/Org2MSP looking up path [] +[682 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[683 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420150ab8 gate 1528769660786261400 evaluation starts +[684 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ab8 signed by 0 principal evaluation starts (used [false]) +[685 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ab8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[686 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ab8 principal matched by identity 0 +[687 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 59 eb 02 6e 43 cc 4b ef 49 6c 9b 49 9c 09 95 21 |Y..nC.K.Il.I...!| +00000010 31 92 9a b4 2f 58 bc 47 a2 27 2b 8e ad 87 b6 24 |1.../X.G.'+....$| +[688 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7b 4a 4b 38 d3 92 84 6a ab d3 a7 20 |0D. {JK8...j... | +00000010 b0 fa cb d7 39 0e 56 0b 15 34 11 3e e9 e1 86 36 |....9.V..4.>...6| +00000020 0e 1a 6f b7 02 20 4b ac 5f 73 3a 03 16 81 2d 01 |..o.. K._s:...-.| +00000030 a1 a7 a6 7d 94 a5 54 89 d1 bf b0 74 e2 98 aa 3d |...}..T....t...=| +00000040 49 8b 9d 37 2d 08 |I..7-.| +[689 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150ab8 principal evaluation succeeds for identity 0 +[68a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.func1 -> DEBU 0xc420150ab8 gate 1528769660786261400 evaluation succeeds +[68b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +[68c 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +[68d 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[68e 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[68f 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[690 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[691 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[692 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[693 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[694 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[695 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[696 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[697 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[698 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[699 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[69a 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[69b 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[69c 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[69d 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[69e 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[69f 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[6a0 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[6a1 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[6a2 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[6a3 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[6a4 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[6a5 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6a6 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[6a7 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[6a8 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[6a9 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[6aa 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[6ab 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[6ac 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6ad 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6ae 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6af 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[6b0 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6b1 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6b2 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[665 06-12 02:14:20.78 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:35740 +[6b3 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq -Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL -nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw -j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB -5Y80QLeEvYkoMMMbcA== +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -----END CERTIFICATE----- -[6c9 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[6ca 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[6cb 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[6cc 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6cd 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6ce 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[6cf 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[6d0 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6d1 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6d2 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[6d3 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[6b4 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +-----END CERTIFICATE----- +[6b5 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[6b6 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[6b7 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[6b8 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[6b9 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[6ba 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[6bb 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6bc 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6bd 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[6be 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[6bf 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6c0 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6c1 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[6c2 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2682,7 +2663,7 @@ grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp QKuzs3j8kg== -----END CERTIFICATE----- -[6d4 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[6c3 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2696,154 +2677,157 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[6d5 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[6d6 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[6d7 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[6d8 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[6d9 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[6da 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[6db 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[6dc 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[6dd 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[6de 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[6df 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[6e0 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[6e1 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[6e2 05-31 05:21:38.40 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[6e3 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ ------END CERTIFICATE----- -[6e4 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +[6c4 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[6c5 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[6c6 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[6c7 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[6c8 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[6c9 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[6ca 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[6cb 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[6cc 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[6cd 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[6ce 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35740: read: connection reset by peer +[6cf 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcyLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcyLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +Vfs+hFCqVzFNSI1T9OizorgtPxUblzOUz/+BLSV+9WGJr+C4Hm+PMJ0tsLJ4vJSY +hI5HrNX3IWEHsQO3O0YCf6NfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgrvoIcQ8pfAue9bnrHECz +FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL +kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN +CSJWn+U1 -----END CERTIFICATE----- -[6e5 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[6e6 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) -[6e7 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps -[6e8 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[6e9 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[6ea 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[6eb 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[6ec 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[6ed 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[6ee 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[6ef 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[6f0 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[6f1 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[6f2 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[6f3 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[6f4 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[6f5 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[6f6 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[6f7 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[6f8 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[6f9 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[6fa 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[6fb 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[6fc 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[6fd 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[6fe 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[6ff 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[700 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[701 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[702 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[703 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[704 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[705 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[706 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[707 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[708 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[709 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[70a 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[70b 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[70c 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[70d 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[70e 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[70f 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[710 05-31 05:21:38.41 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[711 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[712 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[713 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[714 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[715 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[716 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[717 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[718 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[719 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[71a 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[71b 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[71c 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[71d 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[71e 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[71f 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[720 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[721 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[722 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[723 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[724 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[725 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[726 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[727 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[728 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[729 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[72a 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[72b 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[72c 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[72d 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[72e 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[72f 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[730 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[731 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[732 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[733 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[734 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[735 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[736 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[737 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[738 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[739 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...68AEDB903A2A4095FC616A668A7C43DD -[73a 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: BB1BC2B885CF90E6A19679C2A75B5003195991EB03C36012B155EFF509244666 -[73b 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfigBlockNum from 1 to 2 -[73c 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[73d 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[73e 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[73f 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...68AEDB903A2A4095FC616A668A7C43DD -[740 05-31 05:21:38.42 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 12B31011B49FDCC036F514E03F4ADC4E4C017F7D971B61989B80C2DE3220BE86 -[741 05-31 05:21:38.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x1c, 0x89, 0x5b, 0x8a, 0xa8, 0xc6, 0x73, 0x3c, 0xac, 0x1f, 0xe1, 0x55, 0x12, 0x70, 0xf, 0x84, 0xef, 0xfb, 0xa4, 0xcc, 0xbe, 0x67, 0x8, 0xce, 0x57, 0xdf, 0x28, 0x5b, 0xd, 0x99, 0x90, 0xd4} txOffsets= -txId= locPointer=offset=70, bytesLength=12152 +[6d0 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35740: rpc error: code = Canceled desc = context canceled +[6d1 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[6d2 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh +Lm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3 +WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN +U2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq +Eh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G +A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL +nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw +j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB +5Y80QLeEvYkoMMMbcA== +-----END CERTIFICATE----- +[6d3 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35738: rpc error: code = Canceled desc = context canceled +[6d4 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[6d5 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[6d6 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (3 msps) +[6d7 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 3 msps +[6d8 06-12 02:14:20.79 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[6d9 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[6da 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[6db 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[6dc 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[6dd 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[6de 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[6df 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[6e0 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[6e1 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[6e2 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[6e3 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[6e4 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[6e5 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[6e6 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[6e7 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[6e8 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[6e9 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[6ea 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[6eb 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[6ec 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[6ed 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[6ee 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[6ef 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[6f0 06-12 02:14:20.80 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[6f1 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[6f2 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[6f3 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[6f4 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[6f5 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[6f6 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[6f7 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[6f8 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[6f9 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[6fa 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[6fb 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[6fc 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[6fd 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[6fe 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[6ff 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[700 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[701 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[702 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[703 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[704 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[705 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[706 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[707 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[708 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[709 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[70a 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[70b 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[70c 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[70d 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[70e 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[70f 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[710 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[711 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[712 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[713 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[714 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[715 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[716 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[717 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[718 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[719 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[71a 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[71b 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[71c 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[71d 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[71e 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[71f 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[720 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[721 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[722 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[723 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[724 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[725 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[726 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[727 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[728 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[729 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...E8EC096FD6CFEC77FAE1A4B3009400BD +[72a 06-12 02:14:20.81 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 38CB78A3EE06B86CAEB5AC51742C15475B25BF8C464E9ED1D3968C7888825874 +[72b 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 2 to 3, setting lastConfigBlockNum from 1 to 2 +[72c 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[72d 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[72e 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[72f 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...E8EC096FD6CFEC77FAE1A4B3009400BD +[730 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 90154B0D845860E911D4BDA39F34A50BF9898A39CFCFCD9E1A52CD81F8A2E030 +[731 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x11, 0x61, 0x9f, 0x74, 0x2a, 0x75, 0xba, 0x72, 0x46, 0x54, 0x9e, 0xb0, 0xdc, 0xb3, 0x98, 0xed, 0xeb, 0xfa, 0xa0, 0xae, 0xea, 0x73, 0x9a, 0x0, 0x40, 0x67, 0xea, 0x20, 0x7a, 0xc0, 0xec, 0x73} txOffsets= +txId= locPointer=offset=70, bytesLength=12151 ] -[742 05-31 05:21:38.43 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40094], isChainEmpty=[false], lastBlockNumber=[2] -[743 05-31 05:21:38.43 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 -[744 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[745 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.6:39290 -[746 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.6:39290 -[747 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[748 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[749 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[74a 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[74b 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[74c 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[74d 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[732 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40095], isChainEmpty=[false], lastBlockNumber=[2] +[733 06-12 02:14:20.82 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 2 +[734 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[735 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:45286 +[736 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.4:45286 +[737 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[738 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[739 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[73a 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[73b 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[73c 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[73d 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -2857,151 +2841,63 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX fv5YS9/ysd8jy4a+pg== -----END CERTIFICATE----- -[74e 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8f88 gate 1527744100936001600 evaluation starts -[74f 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f88 signed by 0 principal evaluation starts (used [false]) -[750 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f88 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[751 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f88 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[752 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f88 principal evaluation fails -[753 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8f88 gate 1527744100936001600 evaluation fails -[754 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[755 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[756 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[757 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[758 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[759 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[75a 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[75b 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[75c 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8f98 gate 1527744100937511700 evaluation starts -[75d 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f98 signed by 0 principal evaluation starts (used [false]) -[75e 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f98 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[75f 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f98 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[760 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8f98 principal evaluation fails -[761 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8f98 gate 1527744100937511700 evaluation fails -[762 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[763 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[764 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[765 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8fa0 gate 1527744100938251500 evaluation starts -[766 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8fa0 signed by 0 principal evaluation starts (used [false]) -[767 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8fa0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[768 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[769 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[76a 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8fa0 principal matched by identity 0 -[76b 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 33 52 93 35 d1 60 10 99 3a a4 26 df f9 e3 55 e7 |3R.5.`..:.&...U.| -00000010 76 c6 8e af 27 fd cc 24 ef 34 63 75 6a b3 18 bd |v...'..$.4cuj...| -[76c 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ed 17 d8 31 9e 78 ab 71 d4 f4 76 |0E.!....1.x.q..v| -00000010 2b 1d c9 bf 4e 1e 6f 92 cd 96 32 e8 77 74 bc 5e |+...N.o...2.wt.^| -00000020 91 ce 9a 4e b7 02 20 0f 2f 69 9c d5 73 c3 52 19 |...N.. ./i..s.R.| -00000030 f5 44 fa bc ff 68 7c 6c 7b 43 6d d0 cd db 07 68 |.D...h|l{Cm....h| -00000040 2a 5d 5d 29 3b 8a 2a |*]]);.*| -[76d 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8fa0 principal evaluation succeeds for identity 0 -[76e 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8fa0 gate 1527744100938251500 evaluation succeeds -[76f 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[770 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[771 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[772 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[773 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[774 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[775 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420351f00) start: > stop: > from 172.18.0.6:39290 -[776 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[777 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -[778 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes -[779 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[77a 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -[77b 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420351f00) for 172.18.0.6:39290 -[77c 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[77d 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -[77e 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[77f 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420351f00) for 172.18.0.6:39290 -[780 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[781 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[782 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.4:39646 -[783 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.4:39646 -[784 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[785 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[786 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[787 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[788 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[789 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[78a 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc -2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r -94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL -pKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x -Fi/K4VUkcrt2/JHLe2M= ------END CERTIFICATE----- -[78b 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e320 gate 1527744101132169200 evaluation starts -[78c 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 signed by 0 principal evaluation starts (used [false]) -[78d 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[78e 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[78f 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 principal evaluation fails -[790 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e320 gate 1527744101132169200 evaluation fails -[791 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[792 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[793 05-31 05:21:41.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[794 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[795 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[796 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[797 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[798 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[799 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8090 gate 1527744101140629100 evaluation starts -[79a 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 signed by 0 principal evaluation starts (used [false]) -[79b 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[79c 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[79d 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 principal evaluation fails -[79e 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8090 gate 1527744101140629100 evaluation fails -[79f 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[7a0 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[7a1 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[7a2 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8098 gate 1527744101141343700 evaluation starts -[7a3 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8098 signed by 0 principal evaluation starts (used [false]) -[7a4 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8098 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7a5 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[7a6 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[7a7 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8098 principal matched by identity 0 -[7a8 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ab c4 68 d1 2e b2 17 62 a4 47 e2 03 d9 1c 12 e2 |..h....b.G......| -00000010 e9 82 52 e9 46 a0 14 4a d5 3e 39 8b 1c b6 5c ac |..R.F..J.>9...\.| -[7a9 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 02 50 7b 56 4b 5a 3f 22 97 b5 d9 89 |0D. .P{VKZ?"....| -00000010 8d 69 e4 1e 5f 93 21 2e d5 a7 6f 8b c6 c6 93 cf |.i.._.!...o.....| -00000020 75 5c 47 f1 02 20 3c 82 2f 8c 84 5e 6f 73 be a0 |u\G.. <./..^os..| -00000030 ec 01 bf 77 14 b3 98 ba 53 95 d0 99 e5 60 fb 39 |...w....S....`.9| -00000040 2b c6 e3 12 1d d1 |+.....| -[7aa 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8098 principal evaluation succeeds for identity 0 -[7ab 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8098 gate 1527744101141343700 evaluation succeeds -[7ac 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[7ad 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[7ae 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[7af 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[7b0 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[7b1 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[7b2 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420314aa0) start: > stop: > from 172.18.0.4:39646 -[7b3 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[7b4 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -[7b5 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes -[7b6 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[7b7 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -[7b8 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -[7b9 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[7ba 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -[7bb 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[7bc 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -[7bd 05-31 05:21:41.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[7be 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[7bf 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:38448 -[7c0 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:38448 -[7c1 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[7c2 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[7c3 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[7c4 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[7c5 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[7c6 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[7c7 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[73e 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1528769662205018800 evaluation starts +[73f 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) +[740 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[741 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[742 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation fails +[743 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1528769662205018800 evaluation fails +[744 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[745 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[746 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[747 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[748 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[749 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[74a 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[74b 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[74c 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e200 gate 1528769662208167600 evaluation starts +[74d 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e200 signed by 0 principal evaluation starts (used [false]) +[74e 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e200 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[74f 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[750 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org1MSP validating identity +[751 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e200 principal matched by identity 0 +[752 06-12 02:14:22.20 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 80 57 26 08 17 03 a9 f5 21 75 e8 43 d6 a1 22 73 |.W&.....!u.C.."s| +00000010 28 9a fd 30 3d c1 a2 a3 88 c2 94 62 7e fb 7f a4 |(..0=......b~...| +[753 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f2 08 58 5b 35 1c d2 cd 6f af af |0E.!...X[5...o..| +00000010 5a fc 3b fa a1 7b 86 db 71 45 7c 46 a1 05 c1 51 |Z.;..{..qE|F...Q| +00000020 8b f3 4c e7 46 02 20 0f 9e 5a 69 0f 1f cb 7f 36 |..L.F. ..Zi....6| +00000030 2f fa d2 b2 52 1f e0 af d4 45 93 1f 08 6c e8 c3 |/...R....E...l..| +00000040 ba be d2 f5 4d 4e 23 |....MN#| +[754 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e200 principal evaluation succeeds for identity 0 +[755 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e200 gate 1528769662208167600 evaluation succeeds +[756 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +[757 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[758 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[759 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[75a 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[75b 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[75c 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c0be80) start: > stop: > from 172.18.0.4:45286 +[75d 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +[75e 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12121] +[75f 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes +[760 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13956], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +[761 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13956] read from file [0] +[762 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +[763 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14016], Going to peek [8] bytes +[764 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +[765 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +[766 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +[767 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +[768 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[769 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.5:51658 +[76a 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.5:51658 +[76b 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[76c 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[76d 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[76e 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[76f 06-12 02:14:22.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[770 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[771 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3015,63 +2911,72 @@ VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S Qh80aTnAegSTSqmA1w== -----END CERTIFICATE----- -[7c8 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1527744101387499800 evaluation starts -[7c9 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 signed by 0 principal evaluation starts (used [false]) -[7ca 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7cb 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[7cc 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 principal evaluation fails -[7cd 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1527744101387499800 evaluation fails -[7ce 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers -[7cf 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[7d0 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] -[7d1 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers -[7d2 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[7d3 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[7d4 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[7d5 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[7d6 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1527744101388532800 evaluation starts -[7d7 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 signed by 0 principal evaluation starts (used [false]) -[7d8 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7d9 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[7da 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[7db 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 principal matched by identity 0 -[7dc 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c 3e fa ef 20 39 e9 85 27 d2 fb f0 d1 e7 42 46 |.>.. 9..'.....BF| -00000010 3a d2 8a 90 44 cc 2a dc ae 47 77 2d d4 cd b9 f7 |:...D.*..Gw-....| -[7dd 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 05 a9 c0 86 01 8c c5 76 56 83 db 58 |0D. .......vV..X| -00000010 cf df 31 94 e9 8e 94 e2 4e c2 fc da cd 09 c0 dd |..1.....N.......| -00000020 c0 45 d4 0c 02 20 65 15 45 86 2a b1 08 34 57 75 |.E... e.E.*..4Wu| -00000030 20 d9 9f 1b ee 6d 3f c2 21 68 40 6e a5 3b 4e ef | ....m?.!h@n.;N.| -00000040 f4 45 f5 ae fb cd |.E....| -[7de 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 principal evaluation succeeds for identity 0 -[7df 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1527744101388532800 evaluation succeeds -[7e0 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -[7e1 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[7e2 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[7e3 05-31 05:21:41.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[7e4 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[7e5 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[7e6 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42056bae0) start: > stop: > from 172.18.0.5:38448 -[7e7 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 -[7e8 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -[7e9 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes -[7ea 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[7eb 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -[7ec 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -[7ed 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14015], Going to peek [8] bytes -[7ee 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -[7ef 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[7f0 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -[7f1 05-31 05:21:41.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] -[7f2 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[7f3 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41350 -[7f4 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:41350 with txid '82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031' of type ENDORSER_TRANSACTION -[7f5 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[7f6 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[7f7 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[7f8 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[7f9 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[7fa 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[7fb 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[772 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201500d8 gate 1528769662591078200 evaluation starts +[773 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201500d8 signed by 0 principal evaluation starts (used [false]) +[774 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201500d8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[775 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201500d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[776 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201500d8 principal evaluation fails +[777 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201500d8 gate 1528769662591078200 evaluation fails +[778 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Readers +[779 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[77a 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Readers ] +[77b 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Readers +[77c 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[77d 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[77e 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[77f 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[780 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150108 gate 1528769662593461600 evaluation starts +[781 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150108 signed by 0 principal evaluation starts (used [false]) +[782 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150108 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[783 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150108 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[784 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150108 principal evaluation fails +[785 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150108 gate 1528769662593461600 evaluation fails +[786 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[787 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[788 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[789 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150158 gate 1528769662595045400 evaluation starts +[78a 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 signed by 0 principal evaluation starts (used [false]) +[78b 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[78c 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[78d 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org2MSP validating identity +[78e 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 principal matched by identity 0 +[78f 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 b2 ff e0 92 a3 56 1b 7e fe 19 1c 4a 85 be 73 20 |.....V.~...J..s | +00000010 3e 07 d0 a5 9f e4 8d ed 6c 76 35 82 a4 59 62 53 |>.......lv5..YbS| +[790 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b ef 70 d9 ec a2 ef 4f df 9b 81 35 |0D. ..p....O...5| +00000010 3f fe 61 d6 b1 ab 78 63 df 05 e5 3e 3a 62 76 31 |?.a...xc...>:bv1| +00000020 36 d4 62 ef 02 20 5d 21 a0 73 43 00 3a cc 87 e8 |6.b.. ]!.sC.:...| +00000030 1d 4c fb 52 53 ad 62 43 f1 24 2d 32 5c 3c b9 be |.L.RS.bC.$-2\<..| +00000040 d0 60 fa 35 3a 8e |.`.5:.| +[791 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 principal evaluation succeeds for identity 0 +[792 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150158 gate 1528769662595045400 evaluation succeeds +[793 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +[794 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[795 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[796 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[797 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[798 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[799 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420156260) start: > stop: > from 172.18.0.5:51658 +[79a 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=2 +[79b 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12121] +[79c 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[27974], Going to peek [8] bytes +[79d 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13956], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +[79e 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13956] read from file [0] +[79f 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +[7a0 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14016], Going to peek [8] bytes +[7a1 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +[7a2 06-12 02:14:22.59 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +[7a3 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +[7a4 06-12 02:14:22.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[2], waitForBlockNum=[3] +[7a5 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[7a6 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35792 +[7a7 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:35792 with txid 'bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac' of type ENDORSER_TRANSACTION +[7a8 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[7a9 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7aa 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[7ab 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7ac 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[7ad 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[7ae 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -3085,100 +2990,92 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[7fc 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1527744129874773700 evaluation starts -[7fd 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 signed by 0 principal evaluation starts (used [false]) -[7fe 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[7ff 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[800 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e220 principal evaluation fails -[801 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e220 gate 1527744129874773700 evaluation fails -[802 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[803 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[804 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[805 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[806 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[807 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[808 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[809 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[80a 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e230 gate 1527744129876475600 evaluation starts -[80b 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e230 signed by 0 principal evaluation starts (used [false]) -[80c 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e230 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[80d 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e230 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[80e 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e230 principal evaluation fails -[80f 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e230 gate 1527744129876475600 evaluation fails -[810 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[811 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[812 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[813 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1527744129880254700 evaluation starts -[814 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 signed by 0 principal evaluation starts (used [false]) -[815 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[816 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[817 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[818 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal matched by identity 0 -[819 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 25 1a c4 8e 89 b6 1b 83 8e 11 c0 69 b4 51 b2 2b |%..........i.Q.+| -00000010 3b 54 75 e5 56 48 9f 11 15 4c 9d 24 93 74 c6 94 |;Tu.VH...L.$.t..| -[81a 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b 00 65 50 4a b4 59 c9 4f 7f 43 5e |0D. ..ePJ.Y.O.C^| -00000010 b8 90 97 05 cb 2f 65 05 58 0b 0b c9 b1 63 08 ac |...../e.X....c..| -00000020 7b 11 1a 8f 02 20 16 81 ad 6f 29 36 9d 23 61 09 |{.... ...o)6.#a.| -00000030 b9 e7 41 1d 8a 13 ca 78 ab 20 f3 c7 3c 9e cc aa |..A....x. ..<...| -00000040 f8 db d4 57 1d 42 |...W.B| -[81b 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e238 principal evaluation succeeds for identity 0 -[81c 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e238 gate 1527744129880254700 evaluation succeeds -[81d 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[81e 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[81f 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[820 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[821 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[822 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[824 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[823 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:41350 -[825 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41350: rpc error: code = Canceled desc = context canceled -[826 05-31 05:22:09.88 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[827 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[828 05-31 05:22:10.00 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41358 -[829 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[82a 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[82b 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[82c 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...ED1C153DBF63E6146399CEEA1B65BE0C -[82d 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 48B01E2CA4D7FC1FE38BB8BB15AED0DA9315BBFB73F357E603AC5C3F61D087CF -[82e 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[82f 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[830 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[831 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...ED1C153DBF63E6146399CEEA1B65BE0C -[832 05-31 05:22:11.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 68554572255354488694283E1DA44B34C3DB0BBDFA9864DB18BD15093D1DBCB6 -[833 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xf3, 0xc7, 0x4f, 0xbb, 0x87, 0x22, 0x1c, 0x17, 0x22, 0xe5, 0x99, 0xfa, 0x51, 0x89, 0x6e, 0x4f, 0xee, 0x11, 0xe1, 0x74, 0x74, 0x8f, 0xd0, 0xe3, 0xb8, 0xb3, 0x7d, 0x74, 0x4f, 0x3e, 0x8f, 0x87} txOffsets= -txId=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 locPointer=offset=70, bytesLength=3459 +[7af 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e280 gate 1528769688636389200 evaluation starts +[7b0 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 signed by 0 principal evaluation starts (used [false]) +[7b1 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7b2 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[7b3 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e280 principal evaluation fails +[7b4 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e280 gate 1528769688636389200 evaluation fails +[7b5 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[7b6 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[7b7 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +[7b8 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[7b9 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[7ba 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[7bb 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7bc 06-12 02:14:48.63 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[7bd 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1528769688640122300 evaluation starts +[7be 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 signed by 0 principal evaluation starts (used [false]) +[7bf 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7c0 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[7c1 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal evaluation fails +[7c2 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1528769688640122300 evaluation fails +[7c3 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +[7c4 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[7c5 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[7c6 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1528769688642475700 evaluation starts +[7c7 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) +[7c8 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[7c9 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[7ca 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org1MSP validating identity +[7cb 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal matched by identity 0 +[7cc 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 2e 77 e9 dc 18 45 c0 27 7b 8d 79 2d f6 d3 8c bc |.w...E.'{.y-....| +00000010 73 c9 41 aa 24 70 df 8a dc f0 75 61 29 b8 5b aa |s.A.$p....ua).[.| +[7cd 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 03 ce eb 20 f4 20 84 b3 6a d2 54 a6 |0D. ... . ..j.T.| +00000010 8e 8f 9c d3 bf 50 be 0d d3 95 9c b7 a7 dc c9 3c |.....P.........<| +00000020 ea c3 a0 01 02 20 41 1e a1 0c a9 81 73 e5 c3 ce |..... A.....s...| +00000030 42 cc 17 ad 45 b8 f3 bf 89 2d 28 2d 97 eb 43 80 |B...E....-(-..C.| +00000040 ce 7a 4b 39 89 75 |.zK9.u| +[7ce 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal evaluation succeeds for identity 0 +[7cf 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1528769688642475700 evaluation succeeds +[7d0 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +[7d1 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[7d2 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[7d3 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[7d4 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[7d5 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[7d6 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:35792 +[7d7 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[7d8 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35792: read: connection reset by peer +[7d9 06-12 02:14:48.64 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35792: rpc error: code = Canceled desc = context canceled +[7da 06-12 02:14:48.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[7db 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[7dc 06-12 02:14:48.78 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35798 +[7dd 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[7de 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[7df 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[7e0 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...B3D2347BD738FF38336070EE4E9BB4D6 +[7e1 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 9AFD3D50D7ECB113EF9933240156CAD6237C952D519D76D2CBF450795051DB97 +[7e2 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[7e3 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[7e4 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[7e5 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...B3D2347BD738FF38336070EE4E9BB4D6 +[7e6 06-12 02:14:50.64 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 76EBFA627B463D62906C17D178F59B463D62B0DC4F7E536C3D8603825AA9A7F0 +[7e7 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x85, 0xcf, 0x9e, 0x4c, 0xc1, 0xd7, 0xb8, 0xde, 0x8c, 0xf1, 0x23, 0x5e, 0x4b, 0x7f, 0x6f, 0x1d, 0xcc, 0x70, 0x69, 0xaa, 0x7e, 0x1a, 0x8e, 0x7b, 0x90, 0x1f, 0x84, 0xc8, 0xe2, 0xfb, 0xcd, 0x8} txOffsets= +txId=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac locPointer=offset=70, bytesLength=3459 ] -[834 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45416], isChainEmpty=[false], lastBlockNumber=[3] -[835 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 -[836 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[837 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -[838 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -[839 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[83a 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -[83b 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[83c 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[83d 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -[83e 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -[83f 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[840 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420351f00) for 172.18.0.6:39290 -[841 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> WARN [channel: businesschannel] Error sending to 172.18.0.6:39290: rpc error: code = Unavailable desc = transport is closing -[842 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[843 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[844 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -[845 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -[846 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[847 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -[848 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[849 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] -[84a 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] -[84b 05-31 05:22:34.07 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:41358 with txid '0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c' of type ENDORSER_TRANSACTION -[84c 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[84d 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[84e 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[84f 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[850 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[851 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[852 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[7e8 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45419], isChainEmpty=[false], lastBlockNumber=[3] +[7e9 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 3 +[7ea 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[7eb 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5324], Going to peek [8] bytes +[7ec 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[40095], bytesOffset=[40097]} +[7ed 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] +[7ee 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +[7ef 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +[7f0 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[3] +[7f1 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5324], Going to peek [8] bytes +[7f2 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[40095], bytesOffset=[40097]} +[7f3 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] +[7f4 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +[7f5 06-12 02:14:50.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[3], waitForBlockNum=[4] +[7f6 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:35798 with txid '1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046' of type ENDORSER_TRANSACTION +[7f7 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[7f8 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7f9 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[7fa 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[7fb 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[7fc 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[7fd 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -3192,237 +3089,236 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[853 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d0 gate 1527744154081520100 evaluation starts -[854 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 signed by 0 principal evaluation starts (used [false]) -[855 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[856 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[857 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 principal evaluation fails -[858 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d0 gate 1527744154081520100 evaluation fails -[859 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[85a 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[85b 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[85c 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[85d 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[85e 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[85f 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[860 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[861 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2e0 gate 1527744154083199700 evaluation starts -[862 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e0 signed by 0 principal evaluation starts (used [false]) -[863 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[864 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[865 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[866 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e0 principal matched by identity 0 -[867 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 d8 51 6c 65 a5 0c 39 e3 a7 59 20 ef 8a 82 1c a4 |.Qle..9..Y .....| -00000010 12 a9 0a 9e 82 1a e0 ba a1 53 3e 3f b5 13 4a b7 |.........S>?..J.| -[868 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a9 f6 e4 56 20 f8 54 f6 e4 93 3d |0E.!....V .T...=| -00000010 7d e8 cd dd c4 dc 75 ef 22 92 cf 0c 36 78 2c c9 |}.....u."...6x,.| -00000020 32 3d 9d f3 18 02 20 11 1f 3a b2 5f 00 85 14 59 |2=.... ..:._...Y| -00000030 f8 5a 0b 4d b4 b8 7e cb 29 de 97 f2 42 5f e2 13 |.Z.M..~.)...B_..| -00000040 00 46 0f 17 53 32 12 |.F..S2.| -[869 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e0 principal evaluation succeeds for identity 0 -[86a 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2e0 gate 1527744154083199700 evaluation succeeds -[86b 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -[86c 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[86d 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[86e 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[86f 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[870 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[871 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:41358 -[872 05-31 05:22:34.08 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[873 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41358: read: connection reset by peer -[874 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41358: rpc error: code = Canceled desc = context canceled -[875 05-31 05:22:34.09 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[876 05-31 05:22:36.08 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[877 05-31 05:22:36.08 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[878 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[879 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...55C584945C433A399912D1F7D035A323 -[87a 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 54DE0D5B1E6DDBAE57F3E80A4E47364CF99074219187AB155A7001BB651537BE -[87b 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[87c 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[87d 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[87e 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...55C584945C433A399912D1F7D035A323 -[87f 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 93DED0BE9C0AA0704F8288E657070386D3FB9CBF54A992CABCFBF5BA9E719309 -[880 05-31 05:22:36.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x9a, 0x51, 0x32, 0x74, 0x5b, 0x5e, 0xdc, 0xf4, 0xd1, 0x99, 0x68, 0x77, 0x79, 0x27, 0x0, 0xa0, 0x37, 0xef, 0x47, 0xcb, 0x4b, 0xc5, 0x8c, 0x46, 0x68, 0xc7, 0x45, 0x86, 0x87, 0xb6, 0xda, 0x34} txOffsets= -txId=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c locPointer=offset=70, bytesLength=3458 +[7fe 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503c8 gate 1528769710321856500 evaluation starts +[7ff 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 signed by 0 principal evaluation starts (used [false]) +[800 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[801 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[802 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503c8 principal evaluation fails +[803 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503c8 gate 1528769710321856500 evaluation fails +[804 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[805 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[806 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +[807 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[808 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[809 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[80a 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[80b 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[80c 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503e8 gate 1528769710322507800 evaluation starts +[80d 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 signed by 0 principal evaluation starts (used [false]) +[80e 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[80f 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[810 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org2MSP validating identity +[811 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 principal matched by identity 0 +[812 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c ae 75 ec 61 85 d1 41 ea 58 99 f2 e3 74 dc 4b |..u.a..A.X...t.K| +00000010 89 18 64 ec 96 e3 2a 5f 20 e4 d7 d2 8e 88 05 39 |..d...*_ ......9| +[813 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7e 69 3d 37 b3 9e 1b 40 6f c7 b4 60 |0D. ~i=7...@o..`| +00000010 77 92 1e ba 76 e8 62 48 2b aa ff db 7a 99 8f 5e |w...v.bH+...z..^| +00000020 cd 88 31 6c 02 20 48 8c 94 93 5c 1b 6d 91 c8 37 |..1l. H...\.m..7| +00000030 c8 5f fe 71 7c 74 63 61 b3 a4 82 7f bd c9 2c 5d |._.q|tca......,]| +00000040 de db 3b 38 70 8e |..;8p.| +[814 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 principal evaluation succeeds for identity 0 +[815 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503e8 gate 1528769710322507800 evaluation succeeds +[816 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +[817 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[818 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[819 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[81a 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[81b 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[81c 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:35798 +[81d 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[81e 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35798: rpc error: code = Canceled desc = context canceled +[81f 06-12 02:15:10.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[820 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[821 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[822 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[823 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...4C2A4C99E19C521E20E0733FB8BF616A +[824 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: DD13392EE918ECD49C21193B495FEC41D5489405FDF9CE83084539A262E45801 +[825 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[826 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[827 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[828 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...4C2A4C99E19C521E20E0733FB8BF616A +[829 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 9B749AE771D9A0015428B507263B00C6909C4284DB1E253083A958F71F5CF158 +[82a 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xb2, 0x2, 0x73, 0xc0, 0x68, 0xb4, 0x1b, 0x5, 0x97, 0xfa, 0x28, 0x78, 0xb9, 0x53, 0x7d, 0x1c, 0xa4, 0x85, 0x7c, 0xde, 0xf6, 0x7e, 0x5d, 0x4d, 0x44, 0xc8, 0x94, 0x3b, 0x89, 0xd3, 0x6c, 0x25} txOffsets= +txId=1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 locPointer=offset=70, bytesLength=3460 ] -[881 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50738], isChainEmpty=[false], lastBlockNumber=[4] -[882 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 -[883 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -[885 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] -[886 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -[887 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[45416], bytesOffset=[45418]} -[888 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[889 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -[884 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5322], Going to peek [8] bytes -[88b 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[45416], bytesOffset=[45418]} -[88c 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[88d 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -[88a 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] -[88e 05-31 05:22:36.10 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] -[88f 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[890 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41368 -[891 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:41368 with txid '8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4' of type ENDORSER_TRANSACTION -[892 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[893 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[894 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[895 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[896 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[897 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8270 gate 1527744176497447800 evaluation starts -[898 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 signed by 0 principal evaluation starts (used [false]) -[899 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[89a 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[89b 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 principal evaluation fails -[89c 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8270 gate 1527744176497447800 evaluation fails -[89d 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[89e 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[89f 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[8a0 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[8a1 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[8a2 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[8a3 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8a4 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[8a5 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8280 gate 1527744176500295700 evaluation starts -[8a6 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 signed by 0 principal evaluation starts (used [false]) -[8a7 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8a8 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[8a9 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 principal evaluation fails -[8aa 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8280 gate 1527744176500295700 evaluation fails -[8ab 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[8ac 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[8ad 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[8ae 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8288 gate 1527744176501489400 evaluation starts -[8af 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8288 signed by 0 principal evaluation starts (used [false]) -[8b0 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8288 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8b1 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8288 principal matched by identity 0 -[8b2 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 21 18 a9 5e 9e 60 f0 ef 68 ae 82 e9 9b ee 08 10 |!..^.`..h.......| -00000010 44 33 5c 4a e6 e6 c1 ac c9 8e 4d c0 88 89 ea e1 |D3\J......M.....| -[8b3 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 be 6c e7 d4 20 70 e3 1a a9 1d b6 |0E.!..l.. p.....| -00000010 15 f4 79 c1 67 e0 0c fc 63 f8 10 6c e6 a5 c6 82 |..y.g...c..l....| -00000020 32 54 e7 24 59 02 20 24 e1 7c 47 83 b8 e1 ca 35 |2T.$Y. $.|G....5| -00000030 d1 29 6c d2 1c 2f 4e 9f 68 ae 4f 4a 51 67 bb 78 |.)l../N.h.OJQg.x| -00000040 12 47 e1 fc 81 5f ab |.G..._.| -[8b4 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8288 principal evaluation succeeds for identity 0 -[8b5 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8288 gate 1527744176501489400 evaluation succeeds -[8b6 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[8b7 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[8b8 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[8b9 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[8ba 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[8bb 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[8bc 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:41368 -[8bd 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[8be 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41368: read: connection reset by peer -[8bf 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41368: rpc error: code = Canceled desc = context canceled -[8c0 05-31 05:22:56.50 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[8c1 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[8c2 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8c3 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8c4 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...A739E85E17D95B2644344DB917CD6010 -[8c5 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: CFB139C5AFEBE1B14202A91110110D1FF2DA3426B5F52716C339D084AB841692 -[8c6 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8c7 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[8c8 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[8c9 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...A739E85E17D95B2644344DB917CD6010 -[8ca 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 221490E1E0A16893767325A2A5AC5BDE0E975E0802C55F97B306A7DB1EA00A38 -[8cb 05-31 05:22:58.50 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x45, 0x52, 0x18, 0xd7, 0x37, 0x89, 0x65, 0x1a, 0xb0, 0x67, 0x41, 0xba, 0xca, 0x59, 0x80, 0x29, 0xb2, 0xe6, 0xf9, 0xbe, 0xb4, 0x2b, 0x95, 0xd6, 0x5d, 0xd7, 0x85, 0x87, 0x85, 0xf9, 0xd7, 0xcc} txOffsets= -txId=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 locPointer=offset=70, bytesLength=2922 +[82b 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50742], isChainEmpty=[false], lastBlockNumber=[4] +[82c 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 4 +[82d 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +[82e 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5323], Going to peek [8] bytes +[82f 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5321], placementInfo={fileNum=[0], startOffset=[45419], bytesOffset=[45421]} +[830 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5321] read from file [0] +[831 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +[832 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[4] +[833 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[5323], Going to peek [8] bytes +[834 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5321], placementInfo={fileNum=[0], startOffset=[45419], bytesOffset=[45421]} +[835 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5321] read from file [0] +[837 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +[836 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +[838 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[4], waitForBlockNum=[5] +[839 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[83a 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35808 +[83b 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:35808 with txid '40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad' of type ENDORSER_TRANSACTION +[83c 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[83d 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[83e 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[83f 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[840 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[841 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e370 gate 1528769734878003300 evaluation starts +[842 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e370 signed by 0 principal evaluation starts (used [false]) +[843 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e370 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[844 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e370 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[845 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e370 principal evaluation fails +[846 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e370 gate 1528769734878003300 evaluation fails +[847 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[848 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[849 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +[84a 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[84b 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[84c 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[84d 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[84e 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[84f 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e378 gate 1528769734881189100 evaluation starts +[850 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e378 signed by 0 principal evaluation starts (used [false]) +[851 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e378 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[852 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e378 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[853 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e378 principal evaluation fails +[854 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e378 gate 1528769734881189100 evaluation fails +[855 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +[856 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[857 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[858 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e380 gate 1528769734883420600 evaluation starts +[859 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e380 signed by 0 principal evaluation starts (used [false]) +[85a 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e380 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[85b 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e380 principal matched by identity 0 +[85c 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 c2 fd 3d d7 77 b1 dc 89 ce 1d b5 c0 7e 2d c4 d0 |..=.w.......~-..| +00000010 7f 6c da e1 26 f8 50 ba 22 f0 f6 35 ca 78 9f 44 |.l..&.P."..5.x.D| +[85d 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 63 92 ad d9 97 80 25 06 b3 45 98 9e |0D. c.....%..E..| +00000010 63 52 ba bc 23 6c 35 04 cf f2 47 08 5f fd 96 c5 |cR..#l5...G._...| +00000020 bc 5a d6 bd 02 20 45 70 d8 1c fd dc 3d e0 80 14 |.Z... Ep....=...| +00000030 d8 87 88 f9 a2 01 ce 4d c5 47 88 21 17 94 ae bb |.......M.G.!....| +00000040 32 ef 8a a7 ea bd |2.....| +[85e 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e380 principal evaluation succeeds for identity 0 +[85f 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e380 gate 1528769734883420600 evaluation succeeds +[860 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +[861 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[862 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[863 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[864 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[865 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[867 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[866 06-12 02:15:34.88 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:35808 +[868 06-12 02:15:34.90 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35808: read: connection reset by peer +[869 06-12 02:15:34.90 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35808: rpc error: code = Canceled desc = context canceled +[86a 06-12 02:15:34.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[86b 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[86c 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[86d 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[86e 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...DEAB5C3F2B3EBD93AD2D4AAAD2545770 +[86f 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E6A9D006A1C7B6643DC3CE45C7171D38302D22F0A618ED76B3D06DB22331D5CB +[870 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[871 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[872 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[873 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...DEAB5C3F2B3EBD93AD2D4AAAD2545770 +[874 06-12 02:15:36.88 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 8FBF82BAC3EFE1E8F837524BEADA97CD093D996685CB40F4722610F6AEB09510 +[875 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xda, 0xe3, 0x9f, 0x6f, 0xc0, 0x2e, 0x93, 0x8e, 0x90, 0xdd, 0xb5, 0x7a, 0xe0, 0x7e, 0xe4, 0x67, 0xd8, 0x63, 0xcf, 0x55, 0x28, 0x99, 0x61, 0x9, 0xe7, 0xbc, 0x78, 0x2a, 0x92, 0xa3, 0xa1, 0x77} txOffsets= +txId=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad locPointer=offset=70, bytesLength=2921 ] -[8cc 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55524], isChainEmpty=[false], lastBlockNumber=[5] -[8cd 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 -[8ce 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -[8cf 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4786], Going to peek [8] bytes -[8d0 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4784], placementInfo={fileNum=[0], startOffset=[50738], bytesOffset=[50740]} -[8d1 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4784] read from file [0] -[8d2 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -[8d3 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] -[8d4 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4786], Going to peek [8] bytes -[8d5 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4784], placementInfo={fileNum=[0], startOffset=[50738], bytesOffset=[50740]} -[8d6 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4784] read from file [0] -[8d7 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -[8d8 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -[8d9 05-31 05:22:58.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] -[8da 05-31 05:23:19.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[8db 05-31 05:23:19.53 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41380 -[8dc 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:41380 with txid '55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5' of type ENDORSER_TRANSACTION -[8dd 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[8de 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8df 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[8e0 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8e1 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[8e2 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82f0 gate 1527744199566858600 evaluation starts -[8e3 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f0 signed by 0 principal evaluation starts (used [false]) -[8e4 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8e5 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) -[8e6 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f0 principal evaluation fails -[8e7 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82f0 gate 1527744199566858600 evaluation fails -[8e8 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[8e9 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[8ea 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[8eb 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[8ec 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[8ed 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[8ee 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[8ef 05-31 05:23:19.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[8f0 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82f8 gate 1527744199570195900 evaluation starts -[8f1 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f8 signed by 0 principal evaluation starts (used [false]) -[8f2 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[8f3 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f8 principal matched by identity 0 -[8f4 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 65 ae 45 fe 4e c5 16 ff 18 6a 1c 14 57 67 46 e7 |e.E.N....j..WgF.| -00000010 1c 89 2c f5 be 3a ad 7f 73 d5 13 1d 78 e2 8f 89 |..,..:..s...x...| -[8f5 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 de 05 ca 12 7d 46 74 b0 72 07 a9 |0E.!.....}Ft.r..| -00000010 c1 27 1c ce 65 26 77 b5 c6 ba a4 9d 32 cf 7d c3 |.'..e&w.....2.}.| -00000020 55 60 27 4c f0 02 20 49 0e 55 43 e7 ec 4b 2d e9 |U`'L.. I.UC..K-.| -00000030 cb 82 c5 44 4a 3a c2 78 ab 42 05 89 ed 86 a2 9d |...DJ:.x.B......| -00000040 09 fd 55 75 86 5b da |..Uu.[.| -[8f6 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82f8 principal evaluation succeeds for identity 0 -[8f7 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82f8 gate 1527744199570195900 evaluation succeeds -[8f8 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers -[8f9 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[8fa 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[8fb 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[8fc 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[8fd 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[8fe 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:41380 -[8ff 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch -[900 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41380: rpc error: code = Canceled desc = context canceled -[901 05-31 05:23:19.57 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[902 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block -[903 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[904 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[905 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...6D99F32DB086B2EF1BB96EA2A959FDA1 -[906 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 217013CB2C843A0AD0733A82A99249478F3AFCA1F2F1659647D6668844B161EA -[907 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[908 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 -[909 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[90a 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...6D99F32DB086B2EF1BB96EA2A959FDA1 -[90b 05-31 05:23:21.57 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: AB70707ED9AD95C466F4E2702548877437DD748446CAE9164E5CB06987B7553D -[90c 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x85, 0xb2, 0xc2, 0xca, 0xb9, 0x19, 0xa4, 0x86, 0x81, 0xab, 0xe7, 0xe5, 0x91, 0x9e, 0xc6, 0x6d, 0x34, 0xc3, 0x50, 0xbe, 0xd5, 0x41, 0x10, 0xaf, 0xb5, 0xb4, 0x21, 0x8f, 0x8b, 0xf9, 0x7f, 0xc8} txOffsets= -txId=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 locPointer=offset=70, bytesLength=2917 +[876 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55527], isChainEmpty=[false], lastBlockNumber=[5] +[877 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 5 +[878 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +[879 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes +[87a 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +[87b 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] +[87c 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +[87d 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +[87e 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[5] +[87f 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4785], Going to peek [8] bytes +[880 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +[881 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] +[882 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +[883 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[5], waitForBlockNum=[6] +[884 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[885 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35820 +[886 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing normal message from 172.18.0.7:35820 with txid 'a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710' of type ENDORSER_TRANSACTION +[887 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[888 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[889 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[88a 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[88b 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[88c 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e0 gate 1528769757285934200 evaluation starts +[88d 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 signed by 0 principal evaluation starts (used [false]) +[88e 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[88f 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org2MSP) +[890 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e0 principal evaluation fails +[891 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e0 gate 1528769757285934200 evaluation fails +[892 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[893 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[894 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +[895 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[896 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[897 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[898 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[899 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[89a 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e8 gate 1528769757287322900 evaluation starts +[89b 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 signed by 0 principal evaluation starts (used [false]) +[89c 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[89d 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3e8 principal matched by identity 0 +[89e 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 e2 7d f8 d7 37 12 3f 39 1f 8b 6c c9 1a 7a e4 dc |.}..7.?9..l..z..| +00000010 4b 1d d2 da 61 3e a1 b2 8e 35 06 55 d9 9e db a3 |K...a>...5.U....| +[89f 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 60 26 63 21 a2 60 13 66 13 48 68 78 |0D. `&c!.`.f.Hhx| +00000010 00 fb 8d 00 77 cf 0d a4 8f 13 74 6d 3b 8b 44 8c |....w.....tm;.D.| +00000020 17 b9 13 d6 02 20 51 87 f6 8d 33 c7 c6 b6 f0 7f |..... Q...3.....| +00000030 b1 52 80 14 8b 48 6c e8 a5 38 ef 3e c9 0c 79 dc |.R...Hl..8.>..y.| +00000040 2a ba 3c 48 74 78 |*. DEBU 0xc42000e3e8 principal evaluation succeeds for identity 0 +[8a1 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3e8 gate 1528769757287322900 evaluation succeeds +[8a2 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Writers +[8a3 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[8a4 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[8a5 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[8a6 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[8a7 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessNormalMsg.ProcessNormalMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[8a8 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type ENDORSER_TRANSACTION from 172.18.0.7:35820 +[8a9 06-12 02:15:57.28 UTC] [github.com/hyperledger/fabric/orderer/common/blockcutter] Ordered -> DEBU Enqueuing message into batch +[8aa 06-12 02:15:57.29 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35820: rpc error: code = Canceled desc = context canceled +[8ab 06-12 02:15:57.29 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[8ac 06-12 02:15:59.28 UTC] [github.com/hyperledger/fabric/orderer/consensus/solo] -> DEBU Batch timer expired, creating block +[8ad 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8ae 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8af 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...BB3F7435FEABF64B1D4558C84C4BA32A +[8b0 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 88D4838FCAE55CC2F8E6C89C098DB66C146EB803C57B2DA67272E9355F3E9679 +[8b1 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8b2 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 2 +[8b3 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[8b4 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08020A90060A0A4F7264657265724D53...BB3F7435FEABF64B1D4558C84C4BA32A +[8b5 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 0A0736F6E0D187C6A823CE3C7429C377FC1AF974225A245EDDB517A465AAD3C5 +[8b6 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x12, 0x94, 0xe5, 0x39, 0xf6, 0xe8, 0xbe, 0xfb, 0xa0, 0xcc, 0x5d, 0x8, 0x16, 0x74, 0xa, 0xdc, 0xf, 0x11, 0x32, 0x37, 0x9b, 0x1e, 0x59, 0x66, 0x4, 0xb5, 0xd8, 0x4c, 0xce, 0xe8, 0xdd, 0x43} txOffsets= +txId=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 locPointer=offset=70, bytesLength=2915 ] -[90d 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60306], isChainEmpty=[false], lastBlockNumber=[6] -[90e 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 -[90f 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[911 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[912 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -[913 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -[914 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -[910 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -[916 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -[917 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -[918 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -[915 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -[919 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[91a 05-31 05:23:21.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[91b 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[91c 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41402 -[91d 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41402 -[91e 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[91f 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[920 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[921 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[922 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[923 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[924 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[8b7 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60306], isChainEmpty=[false], lastBlockNumber=[6] +[8b8 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 6 +[8b9 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[8ba 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +[8bb 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +[8bd 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[8be 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +[8bc 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[8bf 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +[8c0 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +[8c1 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[8c2 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +[8c3 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[8c4 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[8c5 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[8c6 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35842 +[8c7 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35842 +[8c8 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[8c9 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[8ca 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[8cb 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[8cc 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[8cd 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[8ce 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3435,436 +3331,436 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[925 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8350 gate 1527744204374371100 evaluation starts -[926 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 signed by 0 principal evaluation starts (used [false]) -[927 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[928 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[929 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[92a 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 principal matched by identity 0 -[92b 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 c1 37 c9 c1 29 84 1c eb 03 50 ac ff 26 56 68 c7 |.7..)....P..&Vh.| -00000010 a2 80 4b dc 45 93 af 1e f6 e8 d0 34 3f 5d ab b8 |..K.E......4?]..| -[92c 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 3b 85 c8 d7 4f 21 98 ad dd db ef fd |0D. ;...O!......| -00000010 a2 65 0a b9 57 18 ae 0f 63 77 06 ee 1c bd e9 51 |.e..W...cw.....Q| -00000020 e4 34 82 65 02 20 53 74 2d b2 99 c3 62 8d 9b 25 |.4.e. St-...b..%| -00000030 1a a8 0a 6f 85 6c e3 b8 c2 d2 a7 56 88 40 9e 64 |...o.l.....V.@.d| -00000040 04 f4 47 38 d7 7e |..G8.~| -[92d 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 principal evaluation succeeds for identity 0 -[92e 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8350 gate 1527744204374371100 evaluation succeeds -[92f 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[930 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[931 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[932 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[933 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[934 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[935 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b89da0) start: > stop: > from 172.18.0.7:41402 -[936 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[937 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55524] -[938 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -[939 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -[93a 05-31 05:23:24.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -[93b 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b89da0) for 172.18.0.7:41402 -[93c 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41402 for (0xc420b89da0) -[93e 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[93f 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[940 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[93d 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41402 -[941 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[942 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41402 -[943 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41402: read: connection reset by peer -[944 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41402: rpc error: code = Canceled desc = context canceled -[945 05-31 05:23:24.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[946 05-31 05:23:24.60 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[947 05-31 05:23:24.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41404 -[948 05-31 05:23:24.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41404 -[949 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[94a 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[94b 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[94c 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[94d 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[94e 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b8 gate 1527744204611771800 evaluation starts -[94f 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 signed by 0 principal evaluation starts (used [false]) -[950 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[951 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 principal matched by identity 0 -[952 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 47 98 bb 34 d8 ee 3e 3a 6e ea af 1a 01 b7 a3 c0 |G..4..>:n.......| -00000010 c9 be 51 90 b2 2e c1 19 0d ba 06 69 67 45 0f 99 |..Q........igE..| -[953 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a4 70 1b f6 a5 97 0a 02 90 2e 54 |0E.!..p........T| -00000010 3e 1f 90 b5 12 71 ad 38 cf d9 05 d8 90 d7 8c 8c |>....q.8........| -00000020 93 f4 9a 97 32 02 20 23 d4 a8 aa e7 f8 c7 4a 2e |....2. #......J.| -00000030 7a a1 eb 99 1e 61 6d 3d f6 2b 6f b8 97 eb ab 05 |z....am=.+o.....| -00000040 24 52 f6 53 df 6b 27 |$R.S.k'| -[954 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3b8 principal evaluation succeeds for identity 0 -[955 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3b8 gate 1527744204611771800 evaluation succeeds -[956 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[957 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[958 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[959 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[95a 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[95b 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[95c 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b521e0) start: > stop: > from 172.18.0.7:41404 -[95d 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[95e 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55524] -[95f 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -[960 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -[961 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -[962 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b521e0) for 172.18.0.7:41404 -[963 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41404 for (0xc420b521e0) -[964 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41404 -[965 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41404 -[966 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[967 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[968 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[969 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[96a 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[96b 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[96c 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[96d 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[96e 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[96f 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83c0 gate 1527744204617934000 evaluation starts -[970 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83c0 signed by 0 principal evaluation starts (used [false]) -[971 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[972 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83c0 principal matched by identity 0 -[973 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 5a 05 36 49 a7 7a 0d b0 2b 0a e9 6e 02 34 cc 7e |Z.6I.z..+..n.4.~| -00000010 33 bc ba 7e 86 78 ef 2d a0 c8 91 42 a2 f3 7c d3 |3..~.x.-...B..|.| -[974 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 98 07 1b 1a ab bd 71 f8 25 56 ca |0E.!.......q.%V.| -00000010 b8 0e c1 e2 32 c5 10 35 8a 1c b4 42 9e aa b1 2b |....2..5...B...+| -00000020 fc ae fd 64 e4 02 20 20 88 ef 60 58 75 94 65 b5 |...d.. ..`Xu.e.| -00000030 0a cb ed b0 80 3b 56 5f f7 13 4e 08 47 6a 63 ef |.....;V_..N.Gjc.| -00000040 bc d6 7e f0 db 19 7a |..~...z| -[975 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83c0 principal evaluation succeeds for identity 0 -[976 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83c0 gate 1527744204617934000 evaluation succeeds -[977 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[978 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[979 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[97a 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[97b 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[97c 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[97d 05-31 05:23:24.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420350f20) start: > stop: > from 172.18.0.7:41404 -[97e 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[97f 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] -[980 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34227], Going to peek [8] bytes -[981 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -[982 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[983 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420350f20) for 172.18.0.7:41404 -[984 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41404 for (0xc420350f20) -[985 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41404 -[986 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41404 -[987 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[988 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[989 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[98a 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[98b 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41404: rpc error: code = Canceled desc = context canceled -[98c 05-31 05:23:24.62 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[98d 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[98e 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41406 -[98f 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41406 -[990 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[991 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[992 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[993 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[994 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[995 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8410 gate 1527744204757163700 evaluation starts -[996 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8410 signed by 0 principal evaluation starts (used [false]) -[997 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8410 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[998 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8410 principal matched by identity 0 -[999 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bb 6c 7c 3a 04 60 93 5f 12 1a 3f 47 68 90 af d5 |.l|:.`._..?Gh...| -00000010 0b ca 38 86 99 17 62 54 54 a6 17 52 e2 72 b7 5d |..8...bTT..R.r.]| -[99a 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5d 29 ea ab f6 a3 40 ba ad 1d a5 6c |0D. ])....@....l| -00000010 44 1d 85 4b 6a 70 6f d1 1d ec b8 67 29 41 60 0a |D..Kjpo....g)A`.| -00000020 e7 02 ec d7 02 20 06 a2 e7 12 3b 6a a5 36 69 91 |..... ....;j.6i.| -00000030 97 52 1e 52 ce 11 69 4b e9 57 16 99 25 2a 14 0a |.R.R..iK.W..%*..| -00000040 83 11 2f a8 50 4b |../.PK| -[99b 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8410 principal evaluation succeeds for identity 0 -[99c 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8410 gate 1527744204757163700 evaluation succeeds -[99d 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[99e 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[99f 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[9a0 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[9a1 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[9a2 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[9a3 05-31 05:23:24.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a20140) start: > stop: > from 172.18.0.7:41406 -[9a4 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[9a5 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[9a6 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60306], Going to peek [8] bytes -[9a7 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12118], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[9a8 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -[9a9 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a20140) for 172.18.0.7:41406 -[9aa 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41406 for (0xc420a20140) -[9ab 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41406 -[9ac 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41406 -[9ad 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9ae 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9af 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9b0 05-31 05:23:24.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9b1 05-31 05:23:24.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41406: rpc error: code = Canceled desc = context canceled -[9b2 05-31 05:23:24.77 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[9b3 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[9b4 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41408 -[9b5 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41408 -[9b6 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[9b7 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9b8 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[9b9 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9ba 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[9bb 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8130 gate 1527744204952431100 evaluation starts -[9bc 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8130 signed by 0 principal evaluation starts (used [false]) -[9bd 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8130 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9be 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8130 principal matched by identity 0 -[9bf 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 3b 8d ed 94 14 57 db 46 79 81 37 99 85 67 47 c4 |;....W.Fy.7..gG.| -00000010 f7 3b 59 96 bb f9 5e 6c 1e 9f 31 56 63 57 d5 b3 |.;Y...^l..1VcW..| -[9c0 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a2 9f 19 81 90 90 0c dd 14 6c 49 |0E.!..........lI| -00000010 77 eb 25 61 80 16 49 10 28 39 f6 eb 74 55 a9 8c |w.%a..I.(9..tU..| -00000020 45 a5 79 61 77 02 20 3e 2b 6b cb 6b c1 37 8b 1f |E.yaw. >+k.k.7..| -00000030 fa de 5a b1 2d cc a9 f2 ab 0f 8c 18 24 e9 ad 0e |..Z.-.......$...| -00000040 58 ff 8c c5 99 3d c4 |X....=.| -[9c1 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8130 principal evaluation succeeds for identity 0 -[9c2 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8130 gate 1527744204952431100 evaluation succeeds -[9c3 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[9c4 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[9c5 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[9c6 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[9c7 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[9c8 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[9c9 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a21620) start: > stop: > from 172.18.0.7:41408 -[9ca 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[9cb 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -[9cc 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48186], Going to peek [8] bytes -[9cd 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[9ce 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -[9cf 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a21620) for 172.18.0.7:41408 -[9d0 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41408 for (0xc420a21620) -[9d1 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41408 -[9d2 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41408 -[9d3 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9d4 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9d5 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9d6 05-31 05:23:24.95 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9d7 05-31 05:23:24.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41408: rpc error: code = Canceled desc = context canceled -[9d8 05-31 05:23:24.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[9d9 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[9da 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41410 -[9db 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41410 -[9dc 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[9dd 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9de 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[9df 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[9e0 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[9e1 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744205138651500 evaluation starts -[9e2 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 signed by 0 principal evaluation starts (used [false]) -[9e3 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[9e4 05-31 05:23:25.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal matched by identity 0 -[9e5 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 84 7c 38 a4 12 fc 48 aa 1a 39 e3 4b 0e 78 15 73 |.|8...H..9.K.x.s| -00000010 a5 43 a7 d1 2c 7a 54 56 04 c2 4c 7c b6 63 4e 1b |.C..,zTV..L|.cN.| -[9e6 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4c d1 f1 1a 6c c5 35 c3 d3 75 92 ea |0D. L...l.5..u..| -00000010 6d 6d 07 5a 48 06 d7 a7 71 8a 47 c1 07 4c d1 14 |mm.ZH...q.G..L..| -00000020 6c 80 69 64 02 20 65 fe 34 8e a6 0b da 16 c3 44 |l.id. e.4......D| -00000030 60 bc 1b b9 65 3a 45 2a c2 b2 f1 15 e3 ad f2 bd |`...e:E*........| -00000040 7a be c1 a8 66 42 |z...fB| -[9e7 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal evaluation succeeds for identity 0 -[9e8 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744205138651500 evaluation succeeds -[9e9 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[9ea 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[9eb 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[9ec 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[9ed 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[9ee 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[9ef 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420350f80) start: > stop: > from 172.18.0.7:41410 -[9f0 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[9f1 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] -[9f2 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34227], Going to peek [8] bytes -[9f3 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -[9f4 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[9f5 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420350f80) for 172.18.0.7:41410 -[9f6 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41410 for (0xc420350f80) -[9f7 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41410 -[9f8 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41410 -[9f9 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9fa 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9fb 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[9fc 05-31 05:23:25.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[9fd 05-31 05:23:25.15 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41410: rpc error: code = Canceled desc = context canceled -[9fe 05-31 05:23:25.15 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[9ff 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a00 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41412 -[a01 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41412 -[a02 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a03 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a04 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a05 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a06 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a07 05-31 05:23:25.30 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1527744205309949600 evaluation starts -[a08 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 signed by 0 principal evaluation starts (used [false]) -[a09 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a0a 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal matched by identity 0 -[a0b 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 78 97 14 55 c5 89 74 4a 7f 72 e9 18 26 15 50 b4 |x..U..tJ.r..&.P.| -00000010 4e c0 c9 dc 91 ff be 67 2c 14 5f c5 0a f0 d4 fc |N......g,._.....| -[a0c 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 82 fa 9e f2 40 c8 3a b4 1d 12 20 |0E.!.....@.:... | -00000010 b9 50 82 57 c1 c5 b9 48 69 8b 8e 3a 0a 79 60 b4 |.P.W...Hi..:.y`.| -00000020 08 03 d5 39 be 02 20 36 a2 e8 93 56 3a 9d f7 74 |...9.. 6...V:..t| -00000030 73 9b bb 47 c7 35 14 ef b4 68 58 58 25 a3 e0 41 |s..G.5...hXX%..A| -00000040 25 9e c6 7d 31 38 e4 |%..}18.| -[a0d 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal evaluation succeeds for identity 0 -[a0e 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1527744205309949600 evaluation succeeds -[a0f 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[a10 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a11 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[a12 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a13 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a14 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a15 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b88aa0) start: > stop: > from 172.18.0.7:41412 -[a16 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a17 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40094] -[a18 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20212], Going to peek [8] bytes -[a19 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -[a1a 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[a1b 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b88aa0) for 172.18.0.7:41412 -[a1c 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41412 for (0xc420b88aa0) -[a1d 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41412 -[a1f 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41412 -[a1e 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a20 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a21 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a22 05-31 05:23:25.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a23 05-31 05:23:25.32 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41412: rpc error: code = Canceled desc = context canceled -[a24 05-31 05:23:25.32 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a25 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a26 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41414 -[a27 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41414 -[a28 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a29 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a2a 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a2b 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a2c 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a2d 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1527744205513592100 evaluation starts -[a2e 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) -[a2f 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a30 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal matched by identity 0 -[a31 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 52 33 57 d8 0a 21 50 a9 bc f0 89 51 23 52 93 d4 |R3W..!P....Q#R..| -00000010 7a 72 a4 c8 d7 83 7e 68 40 7c b2 90 3e 87 08 53 |zr....~h@|..>..S| -[a32 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 71 ec 0f 80 f0 d2 f6 0e e0 79 e0 a8 |0D. q........y..| -00000010 26 bf 20 cf e9 4e f7 5e 2c 07 fd 18 bc 5e 34 2a |&. ..N.^,....^4*| -00000020 c8 1a 0c 72 02 20 6e dd 32 f6 e8 4e 32 90 55 4c |...r. n.2..N2.UL| -00000030 70 29 84 bd 89 59 9c ee f2 28 03 30 94 50 07 cd |p)...Y...(.0.P..| -00000040 ec 5b 10 c4 ef 58 |.[...X| -[a33 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal evaluation succeeds for identity 0 -[a34 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1527744205513592100 evaluation succeeds -[a35 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[a36 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a37 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[a38 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a39 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a3a 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a3b 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b89be0) start: > stop: > from 172.18.0.7:41414 -[a3c 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a3d 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45416] -[a3e 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14890], Going to peek [8] bytes -[a3f 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[45416], bytesOffset=[45418]} -[a40 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[a41 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b89be0) for 172.18.0.7:41414 -[a42 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41414 for (0xc420b89be0) -[a43 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41414 -[a44 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41414 -[a45 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a46 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a47 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a48 05-31 05:23:25.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a49 05-31 05:23:25.52 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41414: rpc error: code = Canceled desc = context canceled -[a4a 05-31 05:23:25.52 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a4b 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a4c 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41416 -[a4d 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41416 -[a4e 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a4f 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a50 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a51 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a52 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a53 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2e8 gate 1527744205704833000 evaluation starts -[a54 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e8 signed by 0 principal evaluation starts (used [false]) -[a55 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a56 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e8 principal matched by identity 0 -[a57 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 53 d8 1b e0 9a 7f 46 d6 2c b1 f8 81 6c 11 9d ba |S.....F.,...l...| -00000010 65 43 1d 23 fe 1d c7 a2 81 f3 a0 2f 34 95 35 a6 |eC.#......./4.5.| -[a58 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8a 9a aa 4a ab 51 31 79 d5 af c0 |0E.!....J.Q1y...| -00000010 53 56 6c b5 5a 85 8a 33 34 69 c9 7b 9c da ba 03 |SVl.Z..34i.{....| -00000020 ec 87 88 2c 71 02 20 1e e7 2a 22 5d da 15 f0 78 |...,q. ..*"]...x| -00000030 2c 77 61 f3 19 4b 1d 06 a1 c8 3e 09 96 64 1f 6b |,wa..K....>..d.k| -00000040 58 15 74 c9 08 c3 e8 |X.t....| -[a59 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2e8 principal evaluation succeeds for identity 0 -[a5a 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2e8 gate 1527744205704833000 evaluation succeeds -[a5b 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[a5c 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a5d 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[a5e 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a5f 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a60 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a61 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b3aaa0) start: > stop: > from 172.18.0.7:41416 -[a62 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a63 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50738] -[a64 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9568], Going to peek [8] bytes -[a65 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4784], placementInfo={fileNum=[0], startOffset=[50738], bytesOffset=[50740]} -[a66 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4784] read from file [0] -[a67 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b3aaa0) for 172.18.0.7:41416 -[a68 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41416 for (0xc420b3aaa0) -[a69 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41416 -[a6a 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41416 -[a6b 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a6c 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a6d 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a6e 05-31 05:23:25.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a6f 05-31 05:23:25.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41416: rpc error: code = Canceled desc = context canceled -[a70 05-31 05:23:25.71 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a71 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a72 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41418 -[a73 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41418 -[a74 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a75 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a76 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a77 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a78 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a79 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e348 gate 1527744205903404500 evaluation starts -[a7a 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e348 signed by 0 principal evaluation starts (used [false]) -[a7b 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e348 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[a7c 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e348 principal matched by identity 0 -[a7d 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 24 f3 aa b5 2e 31 1a 7d 01 f6 21 00 ea 6e dc bd |$....1.}..!..n..| -00000010 65 5b 00 95 73 45 96 2e 10 6f 5c 32 a3 27 71 7a |e[..sE...o\2.'qz| -[a7e 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 80 8a 61 61 5a 54 a6 d6 5b 52 30 |0E.!...aaZT..[R0| -00000010 76 d5 ae 50 30 78 95 a9 e4 28 c2 90 88 5c 59 1a |v..P0x...(...\Y.| -00000020 80 02 c7 80 67 02 20 2e 35 04 89 cb ec 60 ff 79 |....g. .5....`.y| -00000030 ef 12 1b 17 e8 aa 15 28 2a 62 de 18 c4 dd a1 aa |.......(*b......| -00000040 1b 9f 82 f7 2d 55 e9 |....-U.| -[a7f 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e348 principal evaluation succeeds for identity 0 -[a80 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e348 gate 1527744205903404500 evaluation succeeds -[a81 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[a82 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[a83 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[a84 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[a85 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[a86 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[a87 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b3bbe0) start: > stop: > from 172.18.0.7:41418 -[a88 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 -[a89 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55524] -[a8a 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4782], Going to peek [8] bytes -[a8b 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -[a8c 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -[a8d 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b3bbe0) for 172.18.0.7:41418 -[a8e 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41418 for (0xc420b3bbe0) -[a8f 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41418 -[a91 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41418 -[a90 05-31 05:23:25.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a92 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a93 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] -[a94 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] -[a95 05-31 05:23:25.94 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41418: rpc error: code = Canceled desc = context canceled -[a96 05-31 05:23:25.94 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[a97 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[a98 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41420 -[a99 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41420 -[a9a 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[a9b 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a9c 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[a9d 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[a9e 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[a9f 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[aa0 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[8cf 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150498 gate 1528769761856638900 evaluation starts +[8d0 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 signed by 0 principal evaluation starts (used [false]) +[8d1 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8d2 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[8d3 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +[8d4 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 principal matched by identity 0 +[8d5 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f8 d9 15 94 9a 21 6a 10 93 92 36 a5 13 e6 70 c5 |.....!j...6...p.| +00000010 fe 68 3a 63 a6 9b a5 16 ac da 7f 7d 5f ea ae 87 |.h:c.......}_...| +[8d6 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d5 09 64 28 6b 76 bb ab c7 57 d6 |0E.!...d(kv...W.| +00000010 aa 9b 46 e9 46 6f 99 df 7a be ae eb 73 a5 78 f9 |..F.Fo..z...s.x.| +00000020 43 ae c9 aa c8 02 20 04 f2 07 e5 ea 89 16 89 f8 |C..... .........| +00000030 a0 0f 67 38 fe 38 40 9e b1 e7 76 1a 53 3f 88 cb |..g8.8@...v.S?..| +00000040 14 dc a7 c9 8f 38 99 |.....8.| +[8d7 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 principal evaluation succeeds for identity 0 +[8d8 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150498 gate 1528769761856638900 evaluation succeeds +[8d9 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[8da 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[8db 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[8dc 06-12 02:16:01.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[8dd 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[8de 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[8df 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c7f760) start: > stop: > from 172.18.0.7:35842 +[8e0 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[8e1 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55527] +[8e2 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +[8e3 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +[8e4 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[8e5 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c7f760) for 172.18.0.7:35842 +[8e6 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35842 for (0xc420c7f760) +[8e7 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35842 +[8e8 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35842 +[8e9 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[8ea 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[8eb 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[8ec 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[8ed 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35842: read: connection reset by peer +[8ee 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35842: rpc error: code = Canceled desc = context canceled +[8ef 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[8f0 06-12 02:16:02.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[8f1 06-12 02:16:02.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35844 +[8f2 06-12 02:16:02.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35844 +[8f3 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[8f4 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[8f5 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[8f6 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[8f7 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[8f8 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150350 gate 1528769762070653800 evaluation starts +[8f9 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 signed by 0 principal evaluation starts (used [false]) +[8fa 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[8fb 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 principal matched by identity 0 +[8fc 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 57 c7 93 c5 fe 21 f5 34 4e ee 30 53 e0 5f fe 23 |W....!.4N.0S._.#| +00000010 79 ad 21 1a 30 68 18 11 47 46 8c ff b6 4f 37 0e |y.!.0h..GF...O7.| +[8fd 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 92 6b 74 4f ef 74 88 2d 3c 1c |0E.!...ktO.t.-<.| +00000010 1e 97 b2 06 9e a0 73 03 54 c5 41 ee f5 08 8f 0a |......s.T.A.....| +00000020 25 a9 c4 f8 52 02 20 1d e4 67 d6 d7 39 e0 40 0d |%...R. ..g..9.@.| +00000030 2e f9 2c 41 96 2b 3e f4 7d 85 f2 58 d0 c0 c8 42 |..,A.+>.}..X...B| +00000040 e5 4b ae 41 aa 30 03 |.K.A.0.| +[8fe 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 principal evaluation succeeds for identity 0 +[8ff 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150350 gate 1528769762070653800 evaluation succeeds +[900 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[901 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[902 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[903 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[904 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[905 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[906 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c7f840) start: > stop: > from 172.18.0.7:35844 +[907 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[908 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55527] +[909 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +[90a 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +[90b 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[90c 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c7f840) for 172.18.0.7:35844 +[90d 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35844 for (0xc420c7f840) +[90e 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35844 +[90f 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35844 +[910 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[911 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[912 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[913 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[914 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[915 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[916 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[917 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[918 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[919 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1528769762077649800 evaluation starts +[91a 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 signed by 0 principal evaluation starts (used [false]) +[91b 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[91c 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal matched by identity 0 +[91d 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 27 2a 94 64 11 1f c8 75 a8 08 67 a3 75 15 f3 f4 |'*.d...u..g.u...| +00000010 55 97 85 da 55 c3 4a c4 f1 60 16 1c e3 6a 75 38 |U...U.J..`...ju8| +[91e 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5d c9 44 04 32 8d 77 a2 d8 59 ac a2 |0D. ].D.2.w..Y..| +00000010 04 3b 2c 69 bb 0b 78 bf de 13 26 63 ac 96 34 be |.;,i..x...&c..4.| +00000020 1d 82 f0 d7 02 20 6d 53 f2 d9 68 e9 05 59 8a c6 |..... mS..h..Y..| +00000030 49 f0 dc 85 7a 6e ad 39 a9 cb 1d 6a 88 fa 5c 42 |I...zn.9...j..\B| +00000040 ce 3f 44 28 cd 1e |.?D(..| +[91f 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e038 principal evaluation succeeds for identity 0 +[920 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e038 gate 1528769762077649800 evaluation succeeds +[921 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[922 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[923 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[924 06-12 02:16:02.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[925 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[926 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[927 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201115a0) start: > stop: > from 172.18.0.7:35844 +[928 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[929 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] +[92a 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34227], Going to peek [8] bytes +[92b 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +[92c 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +[92d 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201115a0) for 172.18.0.7:35844 +[92e 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35844 for (0xc4201115a0) +[92f 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35844 +[930 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35844 +[931 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[932 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[933 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[934 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[935 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35844: rpc error: code = Canceled desc = context canceled +[936 06-12 02:16:02.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[937 06-12 02:16:02.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[938 06-12 02:16:02.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35846 +[939 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35846 +[93a 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[93b 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[93c 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[93d 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[93e 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[93f 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a8 gate 1528769762212211500 evaluation starts +[940 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 signed by 0 principal evaluation starts (used [false]) +[941 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[942 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 principal matched by identity 0 +[943 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 77 78 13 f3 6f 5c 27 01 28 57 20 18 4d 9a 5f 94 |wx..o\'.(W .M._.| +00000010 67 cf 0b 4c b5 5f 10 61 9f 7c 1c 1f fd 90 c5 67 |g..L._.a.|.....g| +[944 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 88 0b 05 24 80 37 48 a0 be b1 ad |0E.!....$.7H....| +00000010 44 6c 98 aa 3e 9c 78 18 fa e3 3d bd 35 b7 19 c9 |Dl..>.x...=.5...| +00000020 6f fd 51 05 d2 02 20 31 08 8b 49 5c ca 1c 25 ef |o.Q... 1..I\..%.| +00000030 0f a6 3a 6a d0 5d 9a 6f f4 0f 32 06 56 49 85 1e |..:j.].o..2.VI..| +00000040 a1 9b db d0 9a 23 3a |.....#:| +[945 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0a8 principal evaluation succeeds for identity 0 +[946 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0a8 gate 1528769762212211500 evaluation succeeds +[947 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[948 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[949 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[94a 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[94b 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[94c 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[94d 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202729e0) start: > stop: > from 172.18.0.7:35846 +[94e 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[94f 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[950 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[60306], Going to peek [8] bytes +[951 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[952 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +[953 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202729e0) for 172.18.0.7:35846 +[954 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35846 for (0xc4202729e0) +[955 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35846 +[956 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35846 +[957 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[958 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[959 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[95a 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[95b 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35846: rpc error: code = Canceled desc = context canceled +[95c 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[95d 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[95e 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35848 +[95f 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35848 +[960 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[961 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[962 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[963 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[964 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[965 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769762404677100 evaluation starts +[966 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 signed by 0 principal evaluation starts (used [false]) +[967 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[968 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal matched by identity 0 +[969 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 fd 14 22 b3 71 9e 2a 74 3d a0 da 28 5c e8 27 f3 |..".q.*t=..(\.'.| +00000010 3b 85 31 98 73 0e d0 32 f8 18 91 b0 be bf 0b fb |;.1.s..2........| +[96a 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d9 4d d5 d6 de 08 b7 c9 b5 8a e5 |0E.!..M.........| +00000010 3a 9c fa 2b 89 ed 22 f2 43 d1 e4 a2 31 75 33 90 |:..+..".C...1u3.| +00000020 d2 42 16 19 33 02 20 1a 07 22 a8 0b 6c d3 a1 6a |.B..3. .."..l..j| +00000030 03 5e 87 3e 57 3a 99 d4 4c 74 80 11 51 0f 0c f0 |.^.>W:..Lt..Q...| +00000040 54 ba 87 ad be 73 91 |T....s.| +[96b 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal evaluation succeeds for identity 0 +[96c 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769762404677100 evaluation succeeds +[96d 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[96e 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[96f 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[970 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[971 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[972 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[973 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420273aa0) start: > stop: > from 172.18.0.7:35848 +[974 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[975 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12121] +[976 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[48185], Going to peek [8] bytes +[977 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13956], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +[978 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13956] read from file [0] +[979 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420273aa0) for 172.18.0.7:35848 +[97a 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35848 for (0xc420273aa0) +[97b 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35848 +[97c 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35848 +[97d 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[97e 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[97f 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[980 06-12 02:16:02.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[981 06-12 02:16:02.41 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35848: rpc error: code = Canceled desc = context canceled +[982 06-12 02:16:02.41 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[983 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[984 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35850 +[985 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35850 +[986 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[987 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[988 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[989 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[98a 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[98b 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503f0 gate 1528769762578190000 evaluation starts +[98c 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 signed by 0 principal evaluation starts (used [false]) +[98d 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[98e 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 principal matched by identity 0 +[98f 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 1e 87 11 ab f1 60 83 41 42 dd 05 6c 20 2f a0 63 |.....`.AB..l /.c| +00000010 ed 81 eb c3 76 79 b1 c5 d6 20 31 fa ae 55 a4 4e |....vy... 1..U.N| +[990 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8f cd 93 44 0e dd dd be 29 0c be |0E.!....D....)..| +00000010 6b 3b 2a 13 3c 16 e7 f6 b9 5c 22 ea 39 f9 81 1a |k;*.<....\".9...| +00000020 61 1e 32 b1 94 02 20 54 60 34 13 7a 0f 93 49 68 |a.2... T`4.z..Ih| +00000030 e9 6b 49 6a 94 1f 9c d9 7c b9 70 a9 3f ca a6 a7 |.kIj....|.p.?...| +00000040 a1 e4 4e 4f 8a 41 27 |..NO.A'| +[991 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 principal evaluation succeeds for identity 0 +[992 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503f0 gate 1528769762578190000 evaluation succeeds +[993 06-12 02:16:02.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[994 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[995 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[996 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[997 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[998 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[999 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4206f4ce0) start: > stop: > from 172.18.0.7:35850 +[99a 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[99b 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] +[99c 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34227], Going to peek [8] bytes +[99d 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +[99e 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +[99f 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4206f4ce0) for 172.18.0.7:35850 +[9a0 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35850 for (0xc4206f4ce0) +[9a1 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35850 +[9a2 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35850 +[9a3 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9a4 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9a5 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9a6 06-12 02:16:02.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9a7 06-12 02:16:02.59 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35850: rpc error: code = Canceled desc = context canceled +[9a8 06-12 02:16:02.59 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[9a9 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[9aa 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35852 +[9ab 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35852 +[9ac 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[9ad 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9ae 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[9af 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9b0 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[9b1 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1528769762748404200 evaluation starts +[9b2 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 signed by 0 principal evaluation starts (used [false]) +[9b3 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9b4 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal matched by identity 0 +[9b5 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 56 da b8 d7 13 a9 63 c6 d8 1f 95 a1 19 02 7e a3 |V.....c.......~.| +00000010 e6 c8 e4 6f 88 1f 55 44 71 80 db 7a d3 fc 27 83 |...o..UDq..z..'.| +[9b6 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 17 b0 05 c7 02 46 e9 79 32 a2 87 7a |0D. .....F.y2..z| +00000010 67 4d 23 25 02 b9 14 05 f1 45 40 03 52 01 f8 2f |gM#%.....E@.R../| +00000020 0f fc 9d 61 02 20 4a 45 42 16 ad fb 45 0e 62 4d |...a. JEB...E.bM| +00000030 fa af e9 d1 16 bf ad 6e b5 36 12 ac f3 26 c0 ba |.......n.6...&..| +00000040 95 c6 ae 5c 9e 74 |...\.t| +[9b7 06-12 02:16:02.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal evaluation succeeds for identity 0 +[9b8 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1528769762748404200 evaluation succeeds +[9b9 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[9ba 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[9bb 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[9bc 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[9bd 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[9be 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[9bf 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42040cf00) start: > stop: > from 172.18.0.7:35852 +[9c0 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[9c1 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40095] +[9c2 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[20211], Going to peek [8] bytes +[9c3 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[40095], bytesOffset=[40097]} +[9c4 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] +[9c5 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42040cf00) for 172.18.0.7:35852 +[9c6 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35852 for (0xc42040cf00) +[9c7 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35852 +[9c9 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35852 +[9c8 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9ca 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9cb 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9cc 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9cd 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35852: rpc error: code = Canceled desc = context canceled +[9ce 06-12 02:16:02.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[9cf 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[9d0 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35854 +[9d1 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35854 +[9d2 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[9d3 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9d4 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[9d5 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9d6 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[9d7 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769762901954300 evaluation starts +[9d8 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 signed by 0 principal evaluation starts (used [false]) +[9d9 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[9da 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 principal matched by identity 0 +[9db 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bd ef 25 52 49 6b 4d 77 ce 66 83 4a 9d e6 7a d5 |..%RIkMw.f.J..z.| +00000010 bb 39 cd 42 14 f0 e4 4d ed fc 7f 2d d5 01 ee 7c |.9.B...M...-...|| +[9dc 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 66 17 64 fc a0 3c 66 c5 ff e8 55 15 |0D. f.d.. DEBU 0xc42000e1d8 principal evaluation succeeds for identity 0 +[9de 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769762901954300 evaluation succeeds +[9df 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[9e0 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[9e1 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[9e2 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[9e3 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[9e4 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[9e5 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203ec820) start: > stop: > from 172.18.0.7:35854 +[9e6 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[9e7 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45419] +[9e8 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14887], Going to peek [8] bytes +[9e9 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5321], placementInfo={fileNum=[0], startOffset=[45419], bytesOffset=[45421]} +[9ea 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5321] read from file [0] +[9eb 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203ec820) for 172.18.0.7:35854 +[9ec 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35854 for (0xc4203ec820) +[9ed 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35854 +[9ef 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35854 +[9ee 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9f0 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9f1 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[9f2 06-12 02:16:02.90 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[9f3 06-12 02:16:02.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35854: rpc error: code = Canceled desc = context canceled +[9f4 06-12 02:16:02.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[9f5 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[9f6 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35856 +[9f7 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35856 +[9f8 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[9f9 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9fa 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[9fb 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[9fc 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[9fd 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504e8 gate 1528769763064003300 evaluation starts +[9fe 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 signed by 0 principal evaluation starts (used [false]) +[9ff 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a00 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 principal matched by identity 0 +[a01 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9a 33 3d c2 f9 90 a3 08 2b 34 e7 a4 30 98 b1 1f |.3=.....+4..0...| +00000010 10 ae 76 91 56 ca 44 c8 ce df ca a2 b7 24 37 c3 |..v.V.D......$7.| +[a02 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 78 c7 a9 4c 14 58 44 c4 b4 59 8d ad |0D. x..L.XD..Y..| +00000010 df 4b 75 57 6e 57 2e aa c9 9d e2 f5 86 20 86 fc |.KuWnW....... ..| +00000020 bf 58 58 3c 02 20 1f 5d af 07 c3 a4 a6 be 3c 0c |.XX<. .]......<.| +00000030 41 43 40 9c 12 a6 a2 83 8a 97 9a 95 0b 7f b8 cd |AC@.............| +00000040 9e 40 37 a4 0b 16 |.@7...| +[a03 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 principal evaluation succeeds for identity 0 +[a04 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504e8 gate 1528769763064003300 evaluation succeeds +[a05 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a06 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a07 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a08 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a09 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a0a 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a0b 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201e10e0) start: > stop: > from 172.18.0.7:35856 +[a0c 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a0d 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50742] +[a0e 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[9564], Going to peek [8] bytes +[a0f 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +[a10 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] +[a11 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201e10e0) for 172.18.0.7:35856 +[a12 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35856 for (0xc4201e10e0) +[a13 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35856 +[a14 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35856 +[a15 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a16 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a17 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a18 06-12 02:16:03.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a19 06-12 02:16:03.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35856: rpc error: code = Canceled desc = context canceled +[a1a 06-12 02:16:03.07 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a1b 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a1c 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35858 +[a1d 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35858 +[a1e 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a1f 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a20 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a21 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a22 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a23 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150550 gate 1528769763211959200 evaluation starts +[a24 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150550 signed by 0 principal evaluation starts (used [false]) +[a25 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150550 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a26 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150550 principal matched by identity 0 +[a27 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 7d 31 82 ce 60 6a 48 1d cb 09 4a d8 0b f7 a1 0f |}1..`jH...J.....| +00000010 4e ab 68 6b 67 f4 ce fa ae dc c3 7c 1c cb 65 06 |N.hkg......|..e.| +[a28 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 be 0b 51 de 42 37 df 08 fc 47 1b |0E.!...Q.B7...G.| +00000010 4d a8 bf 5c 79 53 c4 57 eb 63 63 ab 46 d2 9f 38 |M..\yS.W.cc.F..8| +00000020 22 90 bf b3 6c 02 20 4b b0 a9 d8 f8 b5 c2 26 7e |"...l. K......&~| +00000030 77 eb 4f 83 f6 32 d7 0b e2 a1 52 30 2f d2 7c ae |w.O..2....R0/.|.| +00000040 6b 70 b3 fa 9f a3 d8 |kp.....| +[a29 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150550 principal evaluation succeeds for identity 0 +[a2a 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150550 gate 1528769763211959200 evaluation succeeds +[a2b 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a2c 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a2d 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a2e 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a2f 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a30 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a31 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202b2f40) start: > stop: > from 172.18.0.7:35858 +[a32 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=6 +[a33 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55527] +[a34 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[4779], Going to peek [8] bytes +[a35 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +[a36 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[a37 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202b2f40) for 172.18.0.7:35858 +[a38 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35858 for (0xc4202b2f40) +[a39 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35858 +[a3a 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35858 +[a3b 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a3c 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a3d 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[6] +[a3e 06-12 02:16:03.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[6], waitForBlockNum=[7] +[a3f 06-12 02:16:03.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35858: rpc error: code = Canceled desc = context canceled +[a40 06-12 02:16:03.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a41 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a42 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35860 +[a43 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35860 +[a44 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a45 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a46 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a47 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a48 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a49 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[a4a 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -3877,404 +3773,406 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[aa1 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e390 gate 1527744206136944600 evaluation starts -[aa2 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e390 signed by 0 principal evaluation starts (used [false]) -[aa3 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e390 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[aa4 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[aa5 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[aa6 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e390 principal matched by identity 0 -[aa7 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 bb 53 f9 47 85 77 f7 09 91 47 39 4d 1f d1 85 a4 |.S.G.w...G9M....| -00000010 8e 02 2b 78 36 34 c0 3c cb f5 c7 55 f8 6d 60 d5 |..+x64.<...U.m`.| -[aa8 05-31 05:23:26.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f2 ab 2b 40 cb 53 36 4f 0d 44 55 |0E.!...+@.S6O.DU| -00000010 8d 0d 71 07 d2 2d 11 42 6f fa 07 19 ef 24 45 ab |..q..-.Bo....$E.| -00000020 1c d3 2d d3 bd 02 20 39 50 5f 9e 96 4d e3 13 b7 |..-... 9P_..M...| -00000030 84 9c 09 14 1a 4c c3 bd 49 5c 88 76 e5 05 05 05 |.....L..I\.v....| -00000040 d7 37 43 6f fa 4a 26 |.7Co.J&| -[aa9 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e390 principal evaluation succeeds for identity 0 -[aaa 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e390 gate 1527744206136944600 evaluation succeeds -[aab 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[aac 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[aad 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[aae 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[aaf 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[ab0 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[ab1 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203ae6c0) start: > stop: > from 172.18.0.7:41420 -[ab2 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[ab3 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -[ab4 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -[ab5 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[ab6 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -[ab7 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203ae6c0) for 172.18.0.7:41420 -[ab8 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41420 for (0xc4203ae6c0) -[ab9 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41420 -[aba 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41420 -[abb 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41420: read: connection reset by peer -[abc 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41420: rpc error: code = Canceled desc = context canceled -[abd 05-31 05:23:26.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[abe 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[abf 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41422 -[ac0 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41422 -[ac1 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[ac2 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ac3 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[ac4 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ac5 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[ac6 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3f0 gate 1527744206333556000 evaluation starts -[ac7 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3f0 signed by 0 principal evaluation starts (used [false]) -[ac8 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ac9 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3f0 principal matched by identity 0 -[aca 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 01 96 a2 d8 52 f4 bc d6 fd 4b 75 a3 74 69 82 76 |....R....Ku.ti.v| -00000010 a1 ad a3 f1 f5 90 aa 85 25 29 9e e3 cd e6 b2 df |........%)......| -[acb 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 1b 1e a8 48 e5 f5 25 8b 42 bf b4 e2 |0D. ...H..%.B...| -00000010 a3 ec 35 4e 60 f2 9c 58 49 d2 c0 d9 a7 a5 ad ca |..5N`..XI.......| -00000020 da a3 c6 6c 02 20 6a 80 2c ab e7 78 cd a8 6f 2f |...l. j.,..x..o/| -00000030 3f 15 fe 2f 8b fa 72 69 ea 24 70 f8 05 e5 18 42 |?../..ri.$p....B| -00000040 b6 58 29 81 36 88 |.X).6.| -[acc 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e3f0 principal evaluation succeeds for identity 0 -[acd 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e3f0 gate 1527744206333556000 evaluation succeeds -[ace 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[acf 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[ad0 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[ad1 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[ad2 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[ad3 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[ad4 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203afaa0) start: > stop: > from 172.18.0.7:41422 -[ad5 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[ad6 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -[ad7 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -[ad8 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[ad9 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -[ada 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203afaa0) for 172.18.0.7:41422 -[adb 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41422 for (0xc4203afaa0) -[adc 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41422 -[add 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41422 -[ade 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[adf 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ae0 05-31 05:23:26.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[ae1 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ae2 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[ae3 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e438 gate 1527744206340683600 evaluation starts -[ae4 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e438 signed by 0 principal evaluation starts (used [false]) -[ae5 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e438 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ae6 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e438 principal matched by identity 0 -[ae7 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 13 2d c1 87 ea ec 03 11 ee e8 0e 06 4a 7c 9f 83 |.-..........J|..| -00000010 ba d6 65 8a c6 c8 e9 ac 63 4e ea 27 27 9c 87 c0 |..e.....cN.''...| -[ae8 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a4 6b a3 92 cf 9a 73 02 c1 3a 58 |0E.!..k....s..:X| -00000010 f0 e2 1d b2 f1 dc c3 b6 00 c0 5a b7 bb 28 a3 0a |..........Z..(..| -00000020 3b 22 15 cc 46 02 20 6f b4 a9 4d 16 70 fa 30 bd |;"..F. o..M.p.0.| -00000030 af 46 f9 be de 74 32 3f 7a 79 6a f3 ee 45 1f 19 |.F...t2?zyj..E..| -00000040 b2 cc 20 a0 70 f5 17 |.. .p..| -[ae9 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e438 principal evaluation succeeds for identity 0 -[aea 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e438 gate 1527744206340683600 evaluation succeeds -[aeb 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[aec 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[aed 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[aee 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[aef 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[af0 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[af1 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203a1220) start: > stop: > from 172.18.0.7:41422 -[af2 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[af3 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[af4 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24012], Going to peek [8] bytes -[af5 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[af6 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[af7 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203a1220) for 172.18.0.7:41422 -[af8 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41422 for (0xc4203a1220) -[af9 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41422 -[afa 05-31 05:23:26.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41422 -[afb 05-31 05:23:26.35 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41422: rpc error: code = Canceled desc = context canceled -[afc 05-31 05:23:26.35 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[afd 05-31 05:23:26.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[afe 05-31 05:23:26.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41424 -[aff 05-31 05:23:26.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41424 -[b00 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[b01 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b02 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[b03 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b04 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[b05 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4a0 gate 1527744206480846800 evaluation starts -[b06 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 signed by 0 principal evaluation starts (used [false]) -[b07 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b08 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e4a0 principal matched by identity 0 -[b09 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 6d 1b 97 7c b3 9e 66 b7 65 5e dc f4 c0 97 e5 07 |m..|..f.e^......| -00000010 48 5f 7b a2 40 31 42 ca 26 ee e7 f0 9f da b0 96 |H_{.@1B.&.......| -[b0a 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 06 f0 d0 9b 13 88 46 16 f9 7c 99 d0 |0D. ......F..|..| -00000010 6e 42 22 72 74 e0 65 fe 10 72 d2 ab 1e 42 97 55 |nB"rt.e..r...B.U| -00000020 76 ee aa 4a 02 20 6c 43 a6 ab 96 2d 88 55 e2 a1 |v..J. lC...-.U..| -00000030 ea ec 68 de 21 3c 4e 70 35 0a 79 19 ab 4a 7a 02 |..h.! DEBU 0xc42000e4a0 principal evaluation succeeds for identity 0 -[b0c 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e4a0 gate 1527744206480846800 evaluation succeeds -[b0d 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[b0e 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[b0f 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[b10 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[b11 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[b12 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[b13 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc42000ccc0) start: > stop: > from 172.18.0.7:41424 -[b14 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[b15 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[b16 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24012], Going to peek [8] bytes -[b17 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[b18 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[b19 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc42000ccc0) for 172.18.0.7:41424 -[b1a 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41424 for (0xc42000ccc0) -[b1b 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41424 -[b1c 05-31 05:23:26.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41424 -[b1d 05-31 05:23:26.49 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41424: rpc error: code = Canceled desc = context canceled -[b1e 05-31 05:23:26.49 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b1f 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b20 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41426 -[b21 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41426 -[b22 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[b23 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b24 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[b25 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b26 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[b27 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e558 gate 1527744206750414600 evaluation starts -[b28 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e558 signed by 0 principal evaluation starts (used [false]) -[b29 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e558 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b2a 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e558 principal matched by identity 0 -[b2b 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 6c ad a1 2e a1 72 bd 90 c3 08 26 53 aa 0c df 5d |l....r....&S...]| -00000010 b0 3d 4c 1a bc 57 d6 e3 0f 0b 56 75 26 a0 a7 bc |.=L..W....Vu&...| -[b2c 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ed 36 d1 8c 99 bd 9a 44 74 38 c4 |0E.!..6.....Dt8.| -00000010 91 58 58 f0 e0 26 15 20 3c 50 9b 43 11 61 2e 58 |.XX..&. Y.. o....W...| -00000030 19 ae fa 04 15 6b 80 6e f3 27 83 2c 78 1d 61 77 |.....k.n.'.,x.aw| -00000040 37 55 6a 96 a0 78 07 |7Uj..x.| -[b2d 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e558 principal evaluation succeeds for identity 0 -[b2e 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e558 gate 1527744206750414600 evaluation succeeds -[b2f 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[b30 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[b31 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[b32 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[b33 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[b34 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[b35 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc42012a680) start: > stop: > from 172.18.0.7:41426 -[b36 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[b37 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -[b38 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -[b39 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[b3a 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -[b3b 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc42012a680) for 172.18.0.7:41426 -[b3c 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41426 for (0xc42012a680) -[b3d 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41426 -[b3e 05-31 05:23:26.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41426 -[b3f 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41426: rpc error: code = Canceled desc = context canceled -[b40 05-31 05:23:26.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[b41 05-31 05:23:32.47 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[b42 05-31 05:23:32.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41438 -[b43 05-31 05:23:32.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41438 -[b44 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler -[b45 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:41440 -[b46 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:41440 -[b47 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel -[b48 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[b49 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b4a 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[b4b 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b4c 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[b4d 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8340 gate 1527744212484929800 evaluation starts -[b4e 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 signed by 0 principal evaluation starts (used [false]) -[b4f 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b50 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) -[b51 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 principal evaluation fails -[b52 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8340 gate 1527744212484929800 evaluation fails -[b53 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers -[b54 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[b55 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] -[b56 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers -[b57 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[b58 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == -[b59 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b5a 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == -[b5b 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8348 gate 1527744212487148600 evaluation starts -[b5c 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8348 signed by 0 principal evaluation starts (used [false]) -[b5d 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8348 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b5e 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8348 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[b5f 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8348 principal evaluation fails -[b60 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8348 gate 1527744212487148600 evaluation fails -[b61 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers -[b62 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers -[b63 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == -[b64 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8350 gate 1527744212487800100 evaluation starts -[b65 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 signed by 0 principal evaluation starts (used [false]) -[b66 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b67 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 principal matched by identity 0 -[b68 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 54 bb 09 08 a7 ef 75 46 28 c1 28 85 13 a3 a2 25 |T.....uF(.(....%| -00000010 0a 06 11 96 93 8f 57 1a 3e e5 ae 9b be c5 aa fd |......W.>.......| -[b69 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 75 69 9d 03 6d b2 b4 3a 35 59 90 18 |0D. ui..m..:5Y..| -00000010 ab ed 6b 41 f5 33 4c 81 f8 99 3d 0e 6e 98 e0 72 |..kA.3L...=.n..r| -00000020 85 44 c3 0d 02 20 1a 4d 45 06 ed db 70 63 98 c6 |.D... .ME...pc..| -00000030 14 74 bc 83 0b 8e 17 23 05 fb b7 99 b8 ee 56 8a |.t.....#......V.| -00000040 36 17 9d 54 cf 55 |6..T.U| -[b6a 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8350 principal evaluation succeeds for identity 0 -[b6b 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8350 gate 1527744212487800100 evaluation succeeds -[b6c 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers -[b6d 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers -[b6e 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers -[b6f 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers -[b70 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[b71 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[b72 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[b73 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[b74 05-31 05:23:32.48 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[b75 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[b76 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[b77 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[b78 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[b79 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[b7a 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[b7b 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[b7c 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[b7d 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[b7e 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[b7f 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[b80 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[b81 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[b82 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -[b83 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[b84 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[b85 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[b86 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[b87 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -[b88 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -[b89 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -[b8a 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -[b8b 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[b8c 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -[b8d 05-31 05:23:32.49 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[b8e 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[b8f 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[b90 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[b91 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[b92 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[b93 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[b94 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[b95 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[b96 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == -[b97 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[b98 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[b99 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[b9a 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201c11c0 gate 1527744212501351500 evaluation starts -[b9b 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 signed by 0 principal evaluation starts (used [false false false]) -[b9c 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b9d 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[b9e 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[b9f 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org2MSP -[ba0 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 principal matched by identity 1 -[ba1 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 2a 40 71 67 b3 da 91 b6 d1 0f ea 8c c3 a9 19 78 |*@qg...........x| -00000010 34 b2 9a a4 f8 ce 44 a3 93 42 0a 57 6b fa 64 99 |4.....D..B.Wk.d.| -[ba2 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 15 c0 eb 30 35 4f 3b e6 d4 2b 38 51 |0D. ...05O;..+8Q| -00000010 e4 29 08 3e a5 5f 5f 45 cf 41 51 5d 8f 16 12 6a |.).>.__E.AQ]...j| -00000020 e4 a3 8a 04 02 20 3f 85 f6 b8 9f 3a 4c f2 ea a9 |..... ?....:L...| -00000030 9c 3d 82 35 0e a7 b2 74 00 41 ce 82 80 64 fa b8 |.=.5...t.A...d..| -00000040 a9 ac 9c 0d ab 05 |......| -[ba3 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c11c0 principal evaluation succeeds for identity 1 -[ba4 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201c11c0 gate 1527744212501351500 evaluation succeeds -[ba5 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[ba6 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[ba7 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[ba8 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[ba9 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201c1c60 gate 1527744212503734200 evaluation starts -[baa 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c1c60 signed by 0 principal evaluation starts (used [false false false]) -[bab 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c1c60 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[bac 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies ADMIN role for Org1MSP -[bad 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c1c60 principal matched by identity 0 -[bae 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 93 cf 09 ee 40 78 08 19 7e ec 97 71 b8 45 29 c7 |....@x..~..q.E).| -00000010 be c5 1b 2b 5a b3 b3 dc b4 ce 81 33 77 a9 7e 57 |...+Z......3w.~W| -[baf 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc 82 74 43 ed 31 1a f5 83 02 f3 |0E.!...tC.1.....| -00000010 c5 3c d0 c7 b5 fb ec 59 0c 3f e0 88 6a 70 ab 57 |.<.....Y.?..jp.W| -00000020 50 08 a6 39 94 02 20 7d 24 bf 95 1d de 6b 29 02 |P..9.. }$....k).| -00000030 71 8d 39 3a 88 7f 01 b1 e3 47 06 08 47 e6 37 af |q.9:.....G..G.7.| -00000040 22 b1 4b 6c 66 5a e6 |".KlfZ.| -[bb0 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201c1c60 principal evaluation succeeds for identity 0 -[bb1 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201c1c60 gate 1527744212503734200 evaluation succeeds -[bb2 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[bb3 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[bb4 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins -[bb5 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins -[bb6 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -[bb7 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[bb8 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[bb9 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[bba 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[bbb 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[bbc 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[bbd 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[bbe 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[bbf 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[bc0 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -[bc1 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -[bc2 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -[bc3 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[bc4 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[bc5 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[bc6 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[bc7 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[bc8 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[bc9 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[bca 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[bcb 05-31 05:23:32.50 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[bcc 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[bcd 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[bce 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[bcf 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[bd0 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[bd1 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[bd2 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[bd3 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[bd4 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[bd5 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[bd6 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[bd7 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[bd8 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[bd9 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bda 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[bdb 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[bdc 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[bdd 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[bde 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[bdf 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -QKuzs3j8kg== +[a4b 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505a0 gate 1528769763386162900 evaluation starts +[a4c 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505a0 signed by 0 principal evaluation starts (used [false]) +[a4d 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a4e 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[a4f 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +[a50 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505a0 principal matched by identity 0 +[a51 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 2a 40 27 7e ce 04 31 6b 52 44 2c 78 46 46 30 1d |*@'~..1kRD,xFF0.| +00000010 33 25 b7 09 6a b3 e8 09 89 a1 bc 19 94 93 5c 93 |3%..j.........\.| +[a52 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 50 c7 53 d3 cb 73 5f df 72 88 38 3c |0D. P.S..s_.r.8<| +00000010 f5 cb f2 95 45 cd 9a 8d 2e 2a aa db be 9d 2d 54 |....E....*....-T| +00000020 f0 1f 42 9d 02 20 05 90 d6 02 5f 3d 14 fd e8 84 |..B.. ...._=....| +00000030 f0 2e a0 bc 60 51 35 a3 c4 be f4 d0 7f fd 51 3f |....`Q5.......Q?| +00000040 07 75 40 0a 0b cd |.u@...| +[a53 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505a0 principal evaluation succeeds for identity 0 +[a54 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505a0 gate 1528769763386162900 evaluation succeeds +[a55 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a56 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a57 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a58 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a59 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a5a 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a5b 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420c0b6c0) start: > stop: > from 172.18.0.7:35860 +[a5c 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[a5d 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +[a5e 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +[a5f 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[a60 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +[a61 06-12 02:16:03.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420c0b6c0) for 172.18.0.7:35860 +[a62 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35860 for (0xc420c0b6c0) +[a63 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35860 +[a64 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35860 +[a65 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.2:7050->172.18.0.7:35860: read: connection reset by peer +[a66 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35860: rpc error: code = Canceled desc = context canceled +[a67 06-12 02:16:03.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[a68 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[a69 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35862 +[a6a 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35862 +[a6b 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a6c 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a6d 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a6e 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a6f 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a70 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1528769763532293200 evaluation starts +[a71 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 signed by 0 principal evaluation starts (used [false]) +[a72 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a73 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal matched by identity 0 +[a74 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 5d 02 1f 42 a8 4a 84 8b d4 c7 a3 2c 57 2a 06 13 |]..B.J.....,W*..| +00000010 79 7b c6 46 08 58 70 7b 01 f9 2d 3d 9b 11 a8 0f |y{.F.Xp{..-=....| +[a75 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 95 90 87 8a f7 a8 4b 4c a3 19 4f |0E.!.......KL..O| +00000010 36 6c 1f 53 4f c4 ba 17 32 b6 1a 80 8e 84 1c 1b |6l.SO...2.......| +00000020 a6 48 68 2f 35 02 20 64 73 3b 9f b5 06 c1 71 5a |.Hh/5. ds;....qZ| +00000030 06 30 e5 d9 7c 47 5a 3f 8a a2 2c 97 ec 44 5f ab |.0..|GZ?..,..D_.| +00000040 b3 38 a5 ce 12 e4 c2 |.8.....| +[a76 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2a8 principal evaluation succeeds for identity 0 +[a77 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2a8 gate 1528769763532293200 evaluation succeeds +[a78 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a79 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a7a 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a7b 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a7c 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a7d 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a7e 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420518720) start: > stop: > from 172.18.0.7:35862 +[a7f 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[a80 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +[a81 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +[a82 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[a83 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +[a84 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420518720) for 172.18.0.7:35862 +[a85 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35862 for (0xc420518720) +[a86 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35862 +[a87 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35862 +[a88 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[a89 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a8a 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[a8b 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[a8c 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[a8d 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1528769763539356800 evaluation starts +[a8e 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 signed by 0 principal evaluation starts (used [false]) +[a8f 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[a90 06-12 02:16:03.53 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal matched by identity 0 +[a91 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f8 0a 59 d9 e2 e9 16 af ef 1a 63 ab c1 2b 1d 60 |..Y.......c..+.`| +00000010 43 39 19 0f ac 5b 68 2e b6 35 7f f6 54 e2 14 fa |C9...[h..5..T...| +[a92 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 14 4f 39 62 f6 01 a8 26 0d c1 dc 27 |0D. .O9b...&...'| +00000010 40 ad 3a 95 e5 a0 3d 82 30 84 5a 41 56 f2 34 09 |@.:...=.0.ZAV.4.| +00000020 9e b5 52 3a 02 20 06 e0 cd 5c 6e 66 b6 b7 51 97 |..R:. ...\nf..Q.| +00000030 1a 95 26 06 c7 86 27 e8 cd 68 55 9d 2e e6 6a 1c |..&...'..hU...j.| +00000040 d2 bf 02 59 d4 c2 |...Y..| +[a93 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2f0 principal evaluation succeeds for identity 0 +[a94 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2f0 gate 1528769763539356800 evaluation succeeds +[a95 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[a96 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[a97 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[a98 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[a99 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[a9a 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[a9b 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420519840) start: > stop: > from 172.18.0.7:35862 +[a9c 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[a9d 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[a9e 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24013], Going to peek [8] bytes +[a9f 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[aa0 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[aa1 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420519840) for 172.18.0.7:35862 +[aa2 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35862 for (0xc420519840) +[aa3 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35862 +[aa4 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35862 +[aa5 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35862: rpc error: code = Canceled desc = context canceled +[aa6 06-12 02:16:03.54 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[aa7 06-12 02:16:03.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[aa8 06-12 02:16:03.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35864 +[aa9 06-12 02:16:03.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35864 +[aaa 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[aab 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[aac 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[aad 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[aae 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[aaf 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150638 gate 1528769763661206900 evaluation starts +[ab0 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150638 signed by 0 principal evaluation starts (used [false]) +[ab1 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150638 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[ab2 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150638 principal matched by identity 0 +[ab3 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9e 20 54 f9 22 67 be 7f fb e9 b3 8e 64 77 27 0a |. T."g......dw'.| +00000010 6d 2e 49 39 ea c8 41 d6 20 bf b0 d1 04 4a 9d a8 |m.I9..A. ....J..| +[ab4 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 77 1f a7 aa 16 56 b9 3d 1a ea 5d e5 |0D. w....V.=..].| +00000010 2c 37 8d 67 9b ac 5a fa c8 3e 58 d6 b3 b2 50 2b |,7.g..Z..>X...P+| +00000020 4c 4e 97 87 02 20 37 20 26 f0 a4 07 90 d2 d0 f3 |LN... 7 &.......| +00000030 84 24 3d e1 a1 36 b7 bd cb e7 44 f8 31 4a 9b bb |.$=..6....D.1J..| +00000040 9f ed 4d 9c 99 70 |..M..p| +[ab5 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150638 principal evaluation succeeds for identity 0 +[ab6 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150638 gate 1528769763661206900 evaluation succeeds +[ab7 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[ab8 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[ab9 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[aba 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[abb 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[abc 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[abd 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420bd0d80) start: > stop: > from 172.18.0.7:35864 +[abe 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[abf 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[ac0 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24013], Going to peek [8] bytes +[ac1 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[ac2 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[ac3 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420bd0d80) for 172.18.0.7:35864 +[ac4 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35864 for (0xc420bd0d80) +[ac5 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35864 +[ac6 06-12 02:16:03.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35864 +[ac7 06-12 02:16:03.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35864: rpc error: code = Canceled desc = context canceled +[ac8 06-12 02:16:03.67 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[ac9 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[aca 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35866 +[acb 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35866 +[acc 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[acd 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ace 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[acf 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ad0 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[ad1 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150708 gate 1528769763822444900 evaluation starts +[ad2 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150708 signed by 0 principal evaluation starts (used [false]) +[ad3 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150708 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[ad4 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150708 principal matched by identity 0 +[ad5 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ae c4 10 75 15 ad 6c ef e3 7f 92 e2 cc 10 1d c4 |...u..l.........| +00000010 53 17 6e a5 35 6e fa 88 70 70 6f 5d 1c 64 f0 99 |S.n.5n..ppo].d..| +[ad6 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ae 36 29 e7 13 8d d7 89 3c e8 48 |0E.!..6).....<.H| +00000010 05 c0 6a 77 18 5f d1 b9 f7 33 5d 42 e3 03 5f 3f |..jw._...3]B.._?| +00000020 75 ae bf df e5 02 20 7c 57 66 c7 a5 9d 0d a1 e4 |u..... |Wf......| +00000030 b6 6e f7 c0 f9 0b d3 d0 82 12 b7 be de a3 92 1d |.n..............| +00000040 29 e8 9a de fc 67 b1 |)....g.| +[ad7 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150708 principal evaluation succeeds for identity 0 +[ad8 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150708 gate 1528769763822444900 evaluation succeeds +[ad9 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[ada 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[adb 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[adc 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[add 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[ade 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[adf 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420412380) start: > stop: > from 172.18.0.7:35866 +[ae0 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[ae1 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +[ae2 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +[ae3 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[ae4 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +[ae5 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420412380) for 172.18.0.7:35866 +[ae6 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35866 for (0xc420412380) +[ae7 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35866 +[ae8 06-12 02:16:03.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35866 +[ae9 06-12 02:16:03.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35866: rpc error: code = Canceled desc = context canceled +[aea 06-12 02:16:03.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[aeb 06-12 02:16:09.80 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[aec 06-12 02:16:09.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35878 +[aed 06-12 02:16:09.80 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35878 +[aee 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast -> DEBU Starting new Broadcast handler +[aef 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU Starting new broadcast loop for 172.18.0.7:35880 +[af0 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast is processing config update message from 172.18.0.7:35880 +[af1 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/orderer/common/msgprocessor] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg -> DEBU Processing config update message for channel businesschannel +[af2 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[af3 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[af4 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[af5 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[af6 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[af7 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769769815046300 evaluation starts +[af8 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 signed by 0 principal evaluation starts (used [false]) +[af9 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[afa 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected OrdererMSP, got Org1MSP) +[afb 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 principal evaluation fails +[afc 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769769815046300 evaluation fails +[afd 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/OrdererOrg/Writers +[afe 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[aff 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ OrdererOrg.Writers ] +[b00 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Orderer/Writers +[b01 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[b02 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers == +[b03 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[b04 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers == +[b05 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150350 gate 1528769769816389800 evaluation starts +[b06 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 signed by 0 principal evaluation starts (used [false]) +[b07 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b08 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[b09 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150350 principal evaluation fails +[b0a 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150350 gate 1528769769816389800 evaluation fails +[b0b 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Writers +[b0c 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Writers +[b0d 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers == +[b0e 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150358 gate 1528769769817904000 evaluation starts +[b0f 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 signed by 0 principal evaluation starts (used [false]) +[b10 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b11 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 principal matched by identity 0 +[b12 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 d0 0a 02 38 b3 29 46 c1 8b 2f 53 d4 f8 87 58 c9 |...8.)F../S...X.| +00000010 e8 80 2b 59 a1 04 73 51 38 ff 6c 86 57 1a 23 4e |..+Y..sQ8.l.W.#N| +[b13 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 c5 e7 64 80 25 4b b5 81 ed 7d 9c |0D. "..d.%K...}.| +00000010 f8 cb 5c 4e 32 1a 0c 06 1e 96 65 70 5e cf 08 87 |..\N2.....ep^...| +00000020 9e 22 18 92 02 20 09 10 5a a7 0a b1 25 cc de 97 |."... ..Z...%...| +00000030 36 c3 21 2c 4f 9d ab 4b 54 e0 fe 99 e9 b3 3a 12 |6.!,O..KT.....:.| +00000040 55 b3 c7 6a c3 5d |U..j.]| +[b14 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 principal evaluation succeeds for identity 0 +[b15 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150358 gate 1528769769817904000 evaluation succeeds +[b16 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Writers +[b17 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Writers +[b18 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Writers +[b19 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Writers +[b1a 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[b1b 06-12 02:16:09.81 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[b1c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[b1d 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[b1e 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[b1f 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[b20 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[b21 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[b22 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[b23 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[b24 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[b25 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[b26 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[b27 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[b28 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[b29 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +[b2a 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +[b2b 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +[b2c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +[b2d 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[b2e 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[b2f 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[b30 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[b31 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +[b32 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +[b33 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[b34 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +[b35 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +[b36 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[b37 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[b38 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[b39 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[b3a 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[b3b 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[b3c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[b3d 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[b3e 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == +[b3f 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[b40 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[b41 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[b42 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420c7fa40 gate 1528769769826371100 evaluation starts +[b43 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fa40 signed by 0 principal evaluation starts (used [false false false]) +[b44 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fa40 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b45 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org1MSP +[b46 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fa40 principal matched by identity 0 +[b47 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9d 13 7f 14 ec 7c 06 a4 3f b4 5b 5d 3e ef fc 48 |.....|..?.[]>..H| +00000010 16 e5 b8 fe 0a ef 1f 20 1c a3 ba 25 2b 95 56 09 |....... ...%+.V.| +[b48 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 51 3c 7e 32 b5 ef 8d 1d e0 44 32 83 |0D. Q<~2.....D2.| +00000010 b5 9f e2 78 f7 85 27 e8 c5 e3 14 6a 34 a1 89 45 |...x..'....j4..E| +00000020 ab dc 04 1f 02 20 61 6a df 93 8e 01 5d 6a 09 ee |..... aj....]j..| +00000030 69 40 7c f9 38 fb 5e 75 ef 29 ee 34 e6 a6 e6 b0 |i@|.8.^u.).4....| +00000040 a9 1b d0 81 d0 0a |......| +[b49 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fa40 principal evaluation succeeds for identity 0 +[b4a 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420c7fa40 gate 1528769769826371100 evaluation succeeds +[b4b 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[b4c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[b4d 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[b4e 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[b4f 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420c7fde0 gate 1528769769828141800 evaluation starts +[b50 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 signed by 0 principal evaluation starts (used [false false false]) +[b51 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b52 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[b53 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[b54 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies ADMIN role for Org2MSP +[b55 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420c7fde0 principal matched by identity 1 +[b56 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 42 4e 71 d9 f8 76 ba 7c 0d ef c9 49 c9 e5 f9 db |BNq..v.|...I....| +00000010 79 ec 2b 22 43 f0 00 ab c9 95 8a 18 fc 66 71 8d |y.+"C........fq.| +[b57 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 f6 55 14 05 2f fa 56 56 38 07 |0E.!...U../.VV8.| +00000010 d3 fa 86 6c 62 18 fe 3c 2f de b8 68 9c d9 d9 4b |...lb.. DEBU 0xc420c7fde0 principal evaluation succeeds for identity 1 +[b59 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420c7fde0 gate 1528769769828141800 evaluation succeeds +[b5a 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +[b5b 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +[b5c 06-12 02:16:09.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins +[b5d 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins +[b5e 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +[b5f 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +[b60 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +[b61 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b62 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b63 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b64 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b65 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b66 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b67 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b68 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b69 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b6a 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +[b6b 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +[b6c 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +[b6d 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b6e 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b6f 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b70 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b71 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[b72 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b73 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b74 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[b75 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[b76 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.ProposeConfigUpdate.proposeConfigUpdate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[b77 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[b78 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[b79 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[b7a 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[b7b 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[b7c 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[b7d 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[b7e 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[b7f 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[b80 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[b81 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[b82 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[b83 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[b84 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[b85 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[b86 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[b87 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[b88 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[b89 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[b8a 06-12 02:16:09.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ -----END CERTIFICATE----- -[be0 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +[b8b 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -3BDFnYuSFYhOCexVkA== +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[be1 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[be2 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[be3 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[be4 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[be5 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[be6 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[be7 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[be8 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[be9 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[bea 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[beb 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[b8c 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[b8d 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[b8e 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[b8f 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[b90 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[b91 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[b92 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[b93 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[b94 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[b95 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[b96 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[b97 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[b98 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[b99 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4289,7 +4187,7 @@ FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN CSJWn+U1 -----END CERTIFICATE----- -[bec 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[b9a 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4303,17 +4201,17 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[bed 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[bee 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[bef 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[bf0 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[bf1 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[bf2 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -[bf3 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -[bf4 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[bf5 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[bf6 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP -[bf7 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[b9b 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[b9c 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[b9d 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[b9e 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[b9f 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ba0 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +[ba1 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +[ba2 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[ba3 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[ba4 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP +[ba5 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQGCm4/p9EqkmwbVtW/XJGKTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4328,7 +4226,7 @@ oY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDSAAwRQIhAJFgIoUVJe/5IPVG f7pEMNyhmJ9OTJ5Pmg/dnjt47BGBAiBdmt6ea8+qgSxgqleGtyaDzQhr6TxyJs2H 73TfAIFqpw== -----END CERTIFICATE----- -[bf8 05-31 05:23:32.51 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[ba6 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGDCCAb+gAwIBAgIQUxJMA+tdH0siY+rN7IewmTAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4342,149 +4240,147 @@ ZD0HxhyloY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDRwAwRAIgJnAoONQf 57KM4I9TaFQTI/EG7TjdwLP5Pe1Qgj5MmGMCIEPVLGqnvMyVbdTuJvPYXJlIVthz 6bM3NghPvYPoknIC -----END CERTIFICATE----- -[bf9 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity -[bfa 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[bfb 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[bfc 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[bfd 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[bfe 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[bff 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[c00 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[c01 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[c02 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[c03 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[c04 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[c05 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[c06 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[c07 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ ------END CERTIFICATE----- -[c08 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +[ba7 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity +[ba8 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[ba9 06-12 02:16:09.84 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[baa 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[bab 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[bac 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[bad 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[bae 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[baf 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp/cache] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[bb0 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[bb1 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +QKuzs3j8kg== -----END CERTIFICATE----- -[c09 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[c0a 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) -[c0b 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps -[c0c 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[c0d 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[c0e 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[c0f 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[c10 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[c11 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[c12 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP -[c13 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP -[c14 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP -[c15 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[c16 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[c17 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[c18 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[c19 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[c1a 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[c1b 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[c1c 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[c1d 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[c1e 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[c1f 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[c20 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[c21 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[c22 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[c23 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[c24 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[c25 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[c26 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[c27 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[c28 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[c29 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[c2a 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[c2b 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[c2c 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[c2d 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[c2e 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -[c2f 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[c30 05-31 05:23:32.52 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[c31 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[c32 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[c33 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[c34 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[c35 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[c36 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[c37 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[c38 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[c39 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[c3a 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[c3b 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[c3c 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[c3d 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[c3e 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[c3f 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[c40 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[c41 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[c42 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[c43 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[c44 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[c45 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[c46 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[c47 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[c48 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[c49 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[c4a 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[c4b 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[c4c 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[c4d 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[c4e 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[c4f 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[c50 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[c51 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[c52 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[c53 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[c54 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[c55 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[c56 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[c57 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[c58 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -[c59 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[c5a 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[c5b 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[c5c 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[c5d 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[c5e 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[c5f 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[c60 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[c61 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[c62 05-31 05:23:32.53 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[c63 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[c64 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[c65 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[c66 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608D48DBED80522...172305FBB799B8EE568A36179D54CF55 -[c67 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: F0B6CC2F781A109D61C1057909D3E380AE909E2DB6457FB7FC4940E38196A2E1 -[c68 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == -[c69 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c6a 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == -[c6b 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[c6c 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == -[c6d 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[c6e 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[bb2 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +3BDFnYuSFYhOCexVkA== +-----END CERTIFICATE----- +[bb3 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[bb4 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) +[bb5 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps +[bb6 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[bb7 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[bb8 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[bb9 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[bba 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[bbb 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[bbc 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[bbd 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[bbe 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[bbf 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[bc0 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP +[bc1 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP +[bc2 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP +[bc3 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[bc4 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[bc5 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[bc6 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[bc7 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[bc8 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[bc9 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[bca 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[bcb 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[bcc 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[bcd 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[bce 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[bcf 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[bd0 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[bd1 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[bd2 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[bd3 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[bd4 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[bd5 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[bd6 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[bd7 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[bd8 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[bd9 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[bda 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[bdb 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[bdc 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[bdd 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[bde 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[bdf 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[be0 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[be1 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[be2 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[be3 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[be4 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +[be5 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +[be6 06-12 02:16:09.85 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +[be7 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +[be8 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[be9 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[bea 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[beb 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[bec 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[bed 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[bee 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[bef 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[bf0 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[bf1 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[bf2 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[bf3 06-12 02:16:09.86 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[bf4 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[bf5 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[bf6 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[bf7 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[bf8 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[bf9 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[bfa 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[bfb 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[bfc 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[bfd 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[bfe 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[bff 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[c00 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[c01 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[c02 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP +[c03 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[c04 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[c05 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[c06 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[c07 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[c08 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[c09 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[c0a 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[c0b 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/channelconfig] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[c0c 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[c0d 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/capabilities] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.ProposeConfigUpdate.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[c0e 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[c0f 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[c10 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: plaintext: 0ACD060A1B08011A0608E9D9FCD80522...AB4B54E0FE99E9B33A1255B3C76AC35D +[c11 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.CreateSignedEnvelope.CreateSignedEnvelopeWithTLSBinding.Sign.Sign.Sign -> DEBU Sign: digest: E00E270A17A367780E932CE7D24BAADF02CF6AE76EFB980BDF4B86E0E894FFD8 +[c12 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers == +[c13 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[c14 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers == +[c15 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[c16 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers == +[c17 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[c18 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -4497,269 +4393,150 @@ DAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o zP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR qtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI= -----END CERTIFICATE----- -[c6f 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eae0 gate 1527744212542395900 evaluation starts -[c70 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eae0 signed by 0 principal evaluation starts (used [false]) -[c71 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eae0 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[c72 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[c73 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[c74 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eae0 principal matched by identity 0 -[c75 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f0 b6 cc 2f 78 1a 10 9d 61 c1 05 79 09 d3 e3 80 |.../x...a..y....| -00000010 ae 90 9e 2d b6 45 7f b7 fc 49 40 e3 81 96 a2 e1 |...-.E...I@.....| -[c76 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ca 30 95 02 3a 66 78 64 bd f2 57 |0E.!..0..:fxd..W| -00000010 d0 65 9c fd 5f 7f b2 7e db 43 0a d4 cb 19 55 d7 |.e.._..~.C....U.| -00000020 e1 d0 e1 08 ae 02 20 06 87 0c f5 ae 15 10 a1 25 |...... ........%| -00000030 53 be cd 10 d2 b7 a6 55 5c 85 da 2e 6e fe 6c 6d |S......U\...n.lm| -00000040 75 db ec ae 4e f5 68 |u...N.h| -[c77 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000eae0 principal evaluation succeeds for identity 0 -[c78 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000eae0 gate 1527744212542395900 evaluation succeeds -[c79 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers -[c7a 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers -[c7b 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers -[c7c 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers -[c7d 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers -[c7e 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers -[c7f 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:41440 -[c80 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[c81 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[c82 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[c83 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[c84 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[c85 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[c86 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[c87 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[c88 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[c89 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[c8a 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[c8b 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[c8c 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[c8d 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[c8e 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[c8f 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[c90 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -[c91 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[c92 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[c93 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[c94 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[c95 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -[c96 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -[c97 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[c98 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -[c99 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] -[c9a 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[c9b 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[c9c 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] -[c9d 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer -[c9e 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application -[c9f 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[ca0 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[ca1 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[ca2 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == -[ca3 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ca4 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == -[ca5 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[ca6 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b52c20 gate 1527744212549563300 evaluation starts -[ca7 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 signed by 0 principal evaluation starts (used [false false false]) -[ca8 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ca9 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) -[caa 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[cab 05-31 05:23:32.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 principal matched by identity 1 -[cac 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 2a 40 71 67 b3 da 91 b6 d1 0f ea 8c c3 a9 19 78 |*@qg...........x| -00000010 34 b2 9a a4 f8 ce 44 a3 93 42 0a 57 6b fa 64 99 |4.....D..B.Wk.d.| -[cad 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 15 c0 eb 30 35 4f 3b e6 d4 2b 38 51 |0D. ...05O;..+8Q| -00000010 e4 29 08 3e a5 5f 5f 45 cf 41 51 5d 8f 16 12 6a |.).>.__E.AQ]...j| -00000020 e4 a3 8a 04 02 20 3f 85 f6 b8 9f 3a 4c f2 ea a9 |..... ?....:L...| -00000030 9c 3d 82 35 0e a7 b2 74 00 41 ce 82 80 64 fa b8 |.=.5...t.A...d..| -00000040 a9 ac 9c 0d ab 05 |......| -[caf 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:41440: rpc error: code = Canceled desc = context canceled -[cb0 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream -[cae 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b52c20 principal evaluation succeeds for identity 1 -[cb1 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b52c20 gate 1527744212549563300 evaluation succeeds -[cb3 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41438: rpc error: code = Canceled desc = context canceled -[cb4 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[cb2 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins -[cb5 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins -[cb6 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == -[cb7 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[cb8 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b530e0 gate 1527744212554917500 evaluation starts -[cb9 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b530e0 signed by 0 principal evaluation starts (used [false false false]) -[cba 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b530e0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[cbb 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b530e0 principal matched by identity 0 -[cbc 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 93 cf 09 ee 40 78 08 19 7e ec 97 71 b8 45 29 c7 |....@x..~..q.E).| -00000010 be c5 1b 2b 5a b3 b3 dc b4 ce 81 33 77 a9 7e 57 |...+Z......3w.~W| -[cbd 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc 82 74 43 ed 31 1a f5 83 02 f3 |0E.!...tC.1.....| -00000010 c5 3c d0 c7 b5 fb ec 59 0c 3f e0 88 6a 70 ab 57 |.<.....Y.?..jp.W| -00000020 50 08 a6 39 94 02 20 7d 24 bf 95 1d de 6b 29 02 |P..9.. }$....k).| -00000030 71 8d 39 3a 88 7f 01 b1 e3 47 06 08 47 e6 37 af |q.9:.....G..G.7.| -00000040 22 b1 4b 6c 66 5a e6 |".KlfZ.| -[cbe 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420b530e0 principal evaluation succeeds for identity 0 -[cbf 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420b530e0 gate 1527744212554917500 evaluation succeeds -[cc0 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins -[cc1 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins -[cc2 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins -[cc3 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins -[cc4 05-31 05:23:32.55 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -[cc5 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -[cc6 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -[cc7 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[cc8 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[cc9 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cca 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[ccb 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[ccc 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[ccd 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cce 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[ccf 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[cd0 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -[cd1 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -[cd2 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -[cd3 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cd4 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[cd5 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[cd6 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[cd7 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[cd8 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[cd9 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cda 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[cdb 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[cdc 05-31 05:23:32.56 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[cdd 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[cde 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[cdf 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[ce0 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[ce1 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[ce2 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[ce3 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[ce4 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[ce5 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[ce6 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[ce7 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[ce8 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[ce9 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[cea 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[ceb 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[cec 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[ced 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[cee 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[cef 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP -[cf0 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt -cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV -BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp -c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j -b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY -RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w -XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD -AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK -BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT -TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ ------END CERTIFICATE----- -[cf1 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w -bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE -BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz -Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI -zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW -y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG -A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ -QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM -JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P ------END CERTIFICATE----- -[cf2 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity -[cf3 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[cf4 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[cf5 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[cf6 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[cf7 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[cf8 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[cf9 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[cfa 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -[cfb 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -[cfc 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[cfd 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[cfe 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP -[cff 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQGCm4/p9EqkmwbVtW/XJGKTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzFaFw0yODAxMjgwNzQwMzFa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -3PqQMEKlMela9BLoXcDOFEqvw7LGhC/imYoK8TmTuD3fc8zCMco+Vro5wdAySGBf -jJKIKGongOakmWvtfW0loqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQghdRukz+tFBdsZD0Hxhyl -oY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDSAAwRQIhAJFgIoUVJe/5IPVG -f7pEMNyhmJ9OTJ5Pmg/dnjt47BGBAiBdmt6ea8+qgSxgqleGtyaDzQhr6TxyJs2H -73TfAIFqpw== ------END CERTIFICATE----- -[d00 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGDCCAb+gAwIBAgIQUxJMA+tdH0siY+rN7IewmTAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzJaFw0yODAxMjgwNzQwMzJa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmczLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAELmPLYv1h6V32TMihBEBz/dGocBrXc+OK -AoZS+bAEFBgwQOU5/JwVt4QH3TNzn1GuHSIVtWjw1ChZCv5NHYg9ZaNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAghdRukz+tFBds -ZD0HxhyloY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDRwAwRAIgJnAoONQf -57KM4I9TaFQTI/EG7TjdwLP5Pe1Qgj5MmGMCIEPVLGqnvMyVbdTuJvPYXJlIVthz -6bM3NghPvYPoknIC ------END CERTIFICATE----- -[d01 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity -[d02 05-31 05:23:32.57 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[d03 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[d04 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[d05 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d06 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[d07 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[d08 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d09 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[d0a 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[d0b 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD -ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE -NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh -KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG -BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a -grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph -iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp -QKuzs3j8kg== ------END CERTIFICATE----- -[d0c 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw -CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy -YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu -b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa -MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T -YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw -EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI -r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD -VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 -ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 -2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH -3BDFnYuSFYhOCexVkA== ------END CERTIFICATE----- -[d0d 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[d0e 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[d0f 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[d10 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[d11 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[d12 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[d13 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[d14 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[d15 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance -[d16 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP -[d17 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[c19 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769769876961300 evaluation starts +[c1a 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 signed by 0 principal evaluation starts (used [false]) +[c1b 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 processing identity 0 with bytes of 0a0a4f7264657265724d53501281062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943437a434341624b6741774942416749515765417043634e314a33364d43636e312b426f505744414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f775744454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a593238784844416142674e5642414d54453239795a4756795a5849755a586868625842735a53356a623230775754415442676371686b6a4f50514942426767710a686b6a4f50514d4242774e43414151696e695a334664306463523053685a6f71364d533867794c725a6e58456b6b7850445633696b4b4770363764535030514f0a466b36674355316f4a736b6a6c5a78775a6b59363235417a43503034463344703937576c6f303077537a414f42674e56485138424166384542414d43423441770a44415944565230544151482f424149774144417242674e5648534d454a444169674344324d726f67624c2b484f475452564c583643776e68647264454c74346f0a7a5039416530337675474f344454414b42676771686b6a4f5051514441674e484144424541694145724e525257475935434c596e4635584769636537694b4f520a71745a6241536e77747866784a31616c666749674b5568347a7a4b3345436536364768725656504c667044517a2b594b364677354461304779762b74324a493d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[c1c 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[c1d 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +[c1e 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 principal matched by identity 0 +[c1f 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 e0 0e 27 0a 17 a3 67 78 0e 93 2c e7 d2 4b aa df |..'...gx..,..K..| +00000010 02 cf 6a e7 6e fb 98 0b df 4b 86 e0 e8 94 ff d8 |..j.n....K......| +[c20 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e0 17 84 33 b9 1a 85 4d 36 11 af |0E.!....3...M6..| +00000010 dd 39 1e fc 5e be 84 e1 b4 ad e1 bc fe 54 32 84 |.9..^........T2.| +00000020 c7 6f 9e 19 8a 02 20 14 98 a3 90 b7 19 50 73 0e |.o.... ......Ps.| +00000030 8f 33 74 85 34 37 a3 e1 c0 96 a9 14 23 99 cc 9c |.3t.47......#...| +00000040 42 9d c2 74 6a db ee |B..tj..| +[c21 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 principal evaluation succeeds for identity 0 +[c22 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769769876961300 evaluation succeeds +[c23 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Writers +[c24 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Writers +[c25 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Writers +[c26 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Writers +[c27 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Writers +[c28 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle.ProcessConfigUpdateMsg.ProcessConfigUpdateMsg.Apply.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Writers +[c29 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> DEBU [channel: businesschannel] Broadcast has successfully enqueued message of type CONFIG_UPDATE from 172.18.0.7:35880 +[c2a 06-12 02:16:09.87 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[c2b 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[c2c 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[c2d 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[c2e 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[c2f 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[c30 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[c31 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[c32 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[c33 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[c34 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[c35 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[c36 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +[c37 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +[c38 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +[c39 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +[c3a 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[c3b 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[c3c 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[c3d 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[c3e 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[c3f 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +[c40 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +[c41 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +[c42 06-12 02:16:09.88 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[c43 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +[c44 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [] +[c45 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[c46 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[c47 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel looking up path [Application] +[c48 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Orderer +[c49 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager -> DEBU Manager Channel has managers Application +[c4a 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[c4b 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[c4c 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.policyForItem.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[c4d 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins == +[c4e 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[c4f 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins == +[c50 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[c51 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420272c80 gate 1528769769892220000 evaluation starts +[c52 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420272c80 signed by 0 principal evaluation starts (used [false false false]) +[c53 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420272c80 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[c54 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420272c80 principal matched by identity 0 +[c55 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9d 13 7f 14 ec 7c 06 a4 3f b4 5b 5d 3e ef fc 48 |.....|..?.[]>..H| +00000010 16 e5 b8 fe 0a ef 1f 20 1c a3 ba 25 2b 95 56 09 |....... ...%+.V.| +[c57 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35878: rpc error: code = Canceled desc = context canceled +[c58 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[c59 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/orderer/common/broadcast] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.Handle -> WARN Error reading from 172.18.0.7:35880: rpc error: code = Canceled desc = context canceled +[c5a 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Broadcast_Handler.Broadcast.func1 -> DEBU Closing Broadcast stream +[c56 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 51 3c 7e 32 b5 ef 8d 1d e0 44 32 83 |0D. Q<~2.....D2.| +00000010 b5 9f e2 78 f7 85 27 e8 c5 e3 14 6a 34 a1 89 45 |...x..'....j4..E| +00000020 ab dc 04 1f 02 20 61 6a df 93 8e 01 5d 6a 09 ee |..... aj....]j..| +00000030 69 40 7c f9 38 fb 5e 75 ef 29 ee 34 e6 a6 e6 b0 |i@|.8.^u.).4....| +00000040 a9 1b d0 81 d0 0a |......| +[c5b 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420272c80 principal evaluation succeeds for identity 0 +[c5c 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420272c80 gate 1528769769892220000 evaluation succeeds +[c5d 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Admins +[c5e 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Admins +[c5f 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins == +[c60 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[c61 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4202730c0 gate 1528769769896578000 evaluation starts +[c62 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 signed by 0 principal evaluation starts (used [false false false]) +[c63 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[c64 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got Org1MSP) +[c65 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 processing identity 1 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d49494347544343416343674177494241674952414b44493553572f444b6b3869756432466e3554726d3077436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a49755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a49755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449335768634e4d6a67774d5449344d4463304d4449330a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541777757515752746157354162334a6e4d69356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424151396e613855734372337038414a77705769677677645a727849346a53710a456839764e6d44426f6d6c767032354e6639523250694b484a6a6d4e6c776f75363162524e5a7572656f3159676e6a43564f41693961326a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b41494b3736434845504b58774c0a6e76573536787841737856786865697764743231576b4d43634e436a477a75384d416f4743437147534d343942414d43413063414d455143494867646e424c770a6a34313642476d2b6a44656471386d617456637964336f6e456974373773367567416d5841694174726b4d2f4b657432746a336e3632764531446d2f6d564d420a35593830514c654576596b6f4d4d4d6263413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[c66 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4202730c0 principal matched by identity 1 +[c67 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 42 4e 71 d9 f8 76 ba 7c 0d ef c9 49 c9 e5 f9 db |BNq..v.|...I....| +00000010 79 ec 2b 22 43 f0 00 ab c9 95 8a 18 fc 66 71 8d |y.+"C........fq.| +[c68 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b5 f6 55 14 05 2f fa 56 56 38 07 |0E.!...U../.VV8.| +00000010 d3 fa 86 6c 62 18 fe 3c 2f de b8 68 9c d9 d9 4b |...lb.. DEBU 0xc4202730c0 principal evaluation succeeds for identity 1 +[c6a 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/cauthdsl] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4202730c0 gate 1528769769896578000 evaluation succeeds +[c6b 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Admins +[c6c 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Admins +[c6d 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Admins +[c6e 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Admins +[c6f 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +[c70 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +[c71 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c72 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c73 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c74 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[c75 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c76 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c77 06-12 02:16:09.89 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c78 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c79 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c7a 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c7b 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c7c 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c7d 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c7e 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c7f 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c80 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c81 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +[c82 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +[c83 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +[c84 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[c85 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[c86 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.Validate.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[c87 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[c88 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[c89 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[c8a 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[c8b 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[c8c 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[c8d 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[c8e 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[c8f 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[c90 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[c91 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[c92 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[c93 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[c94 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[c95 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[c96 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[c97 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[c98 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org2MSP +[c99 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQjCCAemgAwIBAgIQVVt9aPQxjoZ+gz7Vlg495jAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4774,7 +4551,7 @@ FXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgOsdw8Piko8Af2YEL kpJFlKBp+NWO5FShkE79ifaZfSsCIBAN62vXBYZ2QSE5fsCMTtJcACUKbr/eHEwN CSJWn+U1 -----END CERTIFICATE----- -[d18 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[c9a 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG cmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh @@ -4788,147 +4565,245 @@ nvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw j416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB 5Y80QLeEvYkoMMMbcA== -----END CERTIFICATE----- -[d19 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity -[d1a 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) -[d1b 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps -[d1c 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP -[d1d 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP -[d1e 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP -[d1f 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP -[d20 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP -[d21 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP -[d22 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP -[d23 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP -[d24 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP -[d25 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application -[d26 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application -[d27 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application -[d28 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg -[d29 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg -[d2a 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg -[d2b 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer -[d2c 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer -[d2d 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer -[d2e 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer -[d2f 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel -[d30 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel -[d31 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel -[d32 05-31 05:23:32.58 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[d33 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[d34 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[d35 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[d36 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[d37 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[d38 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -[d39 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[d3a 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[d3b 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[d3c 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[d3d 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[d3e 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[d3f 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[d40 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[d41 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[d42 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[d43 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[d44 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[d45 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[d46 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[d47 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[d48 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[d49 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[d4a 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[d4b 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[d4c 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[d4d 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[d4e 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[d4f 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[d50 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[d51 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[d52 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[d53 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[d54 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[d55 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[d56 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[d57 05-31 05:23:32.59 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[d58 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[d59 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[d5a 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[d5b 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[d5c 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[d5d 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[d5e 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[d5f 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[d60 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[d61 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[d62 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] -[d63 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[d64 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[d65 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] -[d66 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP -[d67 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP -[d68 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP -[d69 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[d6a 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[d6b 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[d6c 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] -[d6d 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application -[d6e 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer -[d6f 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] -[d70 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg -[d71 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[d72 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled -[d73 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[d74 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[d75 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[d76 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...E213D92C4161E63BBD92FD2B5192FC80 -[d77 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: C1B123295668100A5DBFA6F5E92D6B0DB619EDFB7980BBA1AB4AC9E55CA6B3AF -[d78 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 3 to 4, setting lastConfigBlockNum from 2 to 7 -[d79 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[d7a 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 7 -[d7b 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity -[d7c 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...E213D92C4161E63BBD92FD2B5192FC80 -[d7d 05-31 05:23:32.60 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 09D592D75CEB49B32BD000273BD94572260B8B892CEF5E69FC3C17DA7B5B00F9 -[d7e 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xc4, 0x16, 0x22, 0xe7, 0x46, 0x1a, 0xfc, 0xec, 0xc7, 0x69, 0xc, 0xf3, 0xe0, 0x1, 0x23, 0x22, 0x90, 0xfe, 0x17, 0x1c, 0xa7, 0xb2, 0xe9, 0x74, 0x12, 0x78, 0x2c, 0xe5, 0xd0, 0xba, 0x37, 0xee} txOffsets= +[c9b 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org2MSP validating identity +[c9c 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[c9d 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[c9e 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[c9f 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[ca0 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +[ca1 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +[ca2 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[ca3 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[ca4 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org3MSP +[ca5 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQGCm4/p9EqkmwbVtW/XJGKTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzFaFw0yODAxMjgwNzQwMzFa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmczLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmczLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +3PqQMEKlMela9BLoXcDOFEqvw7LGhC/imYoK8TmTuD3fc8zCMco+Vro5wdAySGBf +jJKIKGongOakmWvtfW0loqNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQghdRukz+tFBdsZD0Hxhyl +oY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDSAAwRQIhAJFgIoUVJe/5IPVG +f7pEMNyhmJ9OTJ5Pmg/dnjt47BGBAiBdmt6ea8+qgSxgqleGtyaDzQhr6TxyJs2H +73TfAIFqpw== +-----END CERTIFICATE----- +[ca6 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGDCCAb+gAwIBAgIQUxJMA+tdH0siY+rN7IewmTAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMy5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMy5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMzJaFw0yODAxMjgwNzQwMzJa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmczLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAELmPLYv1h6V32TMihBEBz/dGocBrXc+OK +AoZS+bAEFBgwQOU5/JwVt4QH3TNzn1GuHSIVtWjw1ChZCv5NHYg9ZaNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAghdRukz+tFBds +ZD0HxhyloY+pWEuW9xIoZhwNfdaPJHkwCgYIKoZIzj0EAwIDRwAwRAIgJnAoONQf +57KM4I9TaFQTI/EG7TjdwLP5Pe1Qgj5MmGMCIEPVLGqnvMyVbdTuJvPYXJlIVthz +6bM3NghPvYPoknIC +-----END CERTIFICATE----- +[ca7 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org3MSP validating identity +[ca8 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[ca9 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[caa 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[cab 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cac 06-12 02:16:09.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[cad 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[cae 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[caf 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[cb0 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[cb1 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MHMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMRkwFwYDVQQKExBvcmcxLmV4YW1wbGUuY29tMRwwGgYDVQQD +ExNjYS5vcmcxLmV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE +NAl4Mn1JNStSuOlqsxi9NC6ai/pA0CXMhAUTUjhjNUISvxI3etd+M0aX/sD2CVjh +KeC3ho02JYi8hDLVz5UG0aNfMF0wDgYDVR0PAQH/BAQDAgGmMA8GA1UdJQQIMAYG +BFUdJQAwDwYDVR0TAQH/BAUwAwEB/zApBgNVHQ4EIgQgeCbzD0cQf+v3ir0U554a +grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph +iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp +QKuzs3j8kg== +-----END CERTIFICATE----- +[cb2 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI +r0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 +2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH +3BDFnYuSFYhOCexVkA== +-----END CERTIFICATE----- +[cb3 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[cb4 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[cb5 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[cb6 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[cb7 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[cb8 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[cb9 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[cba 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[cbb 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[cbc 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[cbd 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[cbe 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[cbf 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp/cache] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.New -> DEBU Creating Cache-MSP instance +[cc0 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup -> DEBU Setting up MSP instance OrdererMSP +[cc1 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICMDCCAdagAwIBAgIRAMVtjCqXA0xs0YtqZ+gEAdswCgYIKoZIzj0EAwIwaTEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG +cmFuY2lzY28xFDASBgNVBAoTC2V4YW1wbGUuY29tMRcwFQYDVQQDEw5jYS5leGFt +cGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjdaMGkxCzAJBgNV +BAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1TYW4gRnJhbmNp +c2NvMRQwEgYDVQQKEwtleGFtcGxlLmNvbTEXMBUGA1UEAxMOY2EuZXhhbXBsZS5j +b20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAASnJPqYGdsxwZzsL2JUTLpR1yoY +RDxTnztKmlsvoxnLnOHCMfz5Udv6vtuExiTxpY19bqN8v0hCgH5WKzngJJ2Mo18w +XTAOBgNVHQ8BAf8EBAMCAaYwDwYDVR0lBAgwBgYEVR0lADAPBgNVHRMBAf8EBTAD +AQH/MCkGA1UdDgQiBCD2MrogbL+HOGTRVLX6CwnhdrdELt4ozP9Ae03vuGO4DTAK +BggqhkjOPQQDAgNIADBFAiEA538/DfBuK7oj7eW8Gkmm6iEQSTDnha4vU5ugIDAT +TZwCIB2hcD3MYhhWNHSxm/v6+QqILP9k/uViyYGitD0fv3fJ +-----END CERTIFICATE----- +[cc2 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w +bGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owVjELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz +Y28xGjAYBgNVBAMMEUFkbWluQGV4YW1wbGUuY29tMFkwEwYHKoZIzj0CAQYIKoZI +zj0DAQcDQgAEdQZzdTthleRZ0XdRyUU8nGm81Owitux5gOl5w3A3NwcNIElolSwW +y5k7shmqNYjmlJRawTPJDHp1IBTQ1bi9nqNNMEswDgYDVR0PAQH/BAQDAgeAMAwG +A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ +QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM +JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P +-----END CERTIFICATE----- +[cc3 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP.ProposeMSP.Setup.Setup.setupV11)-fm.setupV11.postSetupV11.postSetupV1.Validate.Validate -> DEBU MSP OrdererMSP validating identity +[cc4 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU Setting up the MSP manager (4 msps) +[cc5 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/msp] WriteConfigBlock.CreateBundle.NewBundle.NewChannelConfig.CreateMSPManager.Setup -> DEBU MSP manager setup complete, setup 4 msps +[cc6 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org3MSP +[cc7 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org3MSP +[cc8 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org3MSP +[cc9 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org1MSP +[cca 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org1MSP +[ccb 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org1MSP +[ccc 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application/Org2MSP +[ccd 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application/Org2MSP +[cce 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application/Org2MSP +[ccf 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Application +[cd0 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Application +[cd1 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Application +[cd2 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer/OrdererOrg +[cd3 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer/OrdererOrg +[cd4 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl...NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer/OrdererOrg +[cd5 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy BlockValidation for Channel/Orderer +[cd6 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Admins for Channel/Orderer +[cd7 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Readers for Channel/Orderer +[cd8 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl.NewManagerImpl -> DEBU Proposed new policy Writers for Channel/Orderer +[cd9 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Admins for Channel +[cda 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Readers for Channel +[cdb 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.CreateBundle.NewBundle.NewManagerImpl -> DEBU Proposed new policy Writers for Channel +[cdc 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[cdd 06-12 02:16:09.91 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[cde 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[cdf 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[ce0 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[ce1 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[ce2 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[ce3 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[ce4 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[ce5 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[ce6 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[ce7 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[ce8 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[ce9 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[cea 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[ceb 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[cec 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[ced 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[cee 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[cef 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[cf0 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[cf1 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[cf2 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[cf3 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[cf4 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +[cf5 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +[cf6 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +[cf7 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +[cf8 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[cf9 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[cfa 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[cfb 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[cfc 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[cfd 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[cfe 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[cff 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[d00 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[d01 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[d02 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[d03 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[d04 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[d05 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[d06 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[d07 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[d08 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[d09 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/configtx] WriteConfigBlock.CreateBundle.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[d0a 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[d0b 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[d0c 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Application] +[d0d 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[d0e 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[d0f 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application looking up path [] +[d10 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org3MSP +[d11 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org1MSP +[d12 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Application has managers Org2MSP +[d13 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[d14 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[d15 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[d16 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel looking up path [Orderer] +[d17 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Application +[d18 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager -> DEBU Manager Channel has managers Orderer +[d19 06-12 02:16:09.92 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer looking up path [] +[d1a 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/policies] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks.Manager.Manager -> DEBU Manager Channel/Orderer has managers OrdererOrg +[d1b 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/channelconfig] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[d1c 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Orderer capability V1_1 is supported and is enabled +[d1d 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/capabilities] WriteConfigBlock.Update.checkResourcesOrPanic.checkResources.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[d1e 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[d1f 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[d20 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 0A90060A0A4F7264657265724D535012...3EAE0683E6C4F42A8DC94A0510785455 +[d21 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addBlockSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: 6C752E10E8EA2BB938136FCA88E6B24CE0C1FCBDE68080527481B862EC90F68B +[d22 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] Detected lastConfigSeq transitioning from 3 to 4, setting lastConfigBlockNum from 2 to 7 +[d23 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.NewSignatureHeaderOrPanic.NewSignatureHeader.NewSignatureHeader.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[d24 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock.addLastConfigSignature -> DEBU [channel: businesschannel] About to write block, setting its LAST_CONFIG to 7 +[d25 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.GetDefaultSigningIdentity.GetDefaultSigningIdentity -> DEBU Obtaining default signing identity +[d26 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: plaintext: 08070A90060A0A4F7264657265724D53...3EAE0683E6C4F42A8DC94A0510785455 +[d27 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/msp] commitBlock.addLastConfigSignature.SignOrPanic.Sign.Sign.Sign -> DEBU Sign: digest: E132C949CAAE7CBAFFE5891731010BE1585DC73C7D8FFC7079F363D8EC1A4DC3 +[d28 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x4d, 0xcf, 0x4e, 0x7c, 0xc2, 0x5f, 0x80, 0xf, 0x3f, 0x60, 0x2d, 0x1b, 0xe9, 0x83, 0x9f, 0x18, 0x1d, 0x9a, 0x52, 0xc8, 0x19, 0x75, 0x20, 0xdf, 0xd0, 0xfb, 0xd, 0xd6, 0xf3, 0x8d, 0xc6, 0x3b} txOffsets= txId= locPointer=offset=71, bytesLength=19393 ] -[d7f 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81564], isChainEmpty=[false], lastBlockNumber=[7] -[d80 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 -[d81 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[d82 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -[d83 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[d84 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -[d85 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -[d86 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -[d87 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -[d88 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -[d89 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[d8a 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[d8c 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[d8b 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[d8d 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[d8e 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[d8f 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[d90 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[d91 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[d92 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[d93 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[d94 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[d95 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- -MIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG -cmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh -Lm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2 -WjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN -U2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ -MBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc -2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G -A1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r -94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL -pKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x -Fi/K4VUkcrt2/JHLe2M= ------END CERTIFICATE----- -[d96 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[d29 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.Append.Append.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81564], isChainEmpty=[false], lastBlockNumber=[7] +[d2b 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[d2c 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +[d2d 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +[d2e 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +[d2f 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[d30 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[d31 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[d32 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[d33 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[d34 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[d35 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[d36 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +[d37 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +[d38 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +[d39 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -4942,89 +4817,110 @@ VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue XQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S Qh80aTnAegSTSqmA1w== -----END CERTIFICATE----- -[d98 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744212617572100 evaluation starts -[d97 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8940 gate 1527744212617572100 evaluation starts -[d99 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -[d9a 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8940 signed by 0 principal evaluation starts (used [false]) -[d9b 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d9c 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8940 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[d9d 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) -[d9e 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8940 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org2MSP) -[d9f 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal evaluation fails -[da0 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8940 principal evaluation fails -[da1 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744212617572100 evaluation fails -[da2 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8940 gate 1527744212617572100 evaluation fails -[da3 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[da4 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[da5 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[da6 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[da7 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[da8 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[da9 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744212618041600 evaluation starts -[daa 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8950 gate 1527744212618051700 evaluation starts -[dac 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8950 signed by 0 principal evaluation starts (used [false]) -[dad 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8950 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[dab 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 signed by 0 principal evaluation starts (used [false]) -[dae 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8950 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) -[daf 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943476a4343416343674177494241674952414f3355724e527350356a4b4d4b2f78544a2b366a6c6377436759494b6f5a497a6a304541774977637a454c0a4d416b474131554542684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e68626942470a636d467559326c7a593238784754415842674e5642416f54454739795a7a45755a586868625842735a53356a623230784844416142674e5642414d5445324e680a4c6d39795a7a45755a586868625842735a53356a623230774868634e4d5467774d544d774d4463304d4449325768634e4d6a67774d5449344d4463304d4449320a576a42624d517377435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e0a5532467549455a795957356a61584e6a627a45664d4230474131554541784d576347566c636a457562334a6e4d53356c654746746347786c4c6d4e766254425a0a4d424d4742797147534d34394167454743437147534d34394177454841304941424e4974676a5574696b375863722f54733876726c46555255434e6f533772630a3248766b6a433564483845374658617546774c65516a4152417050385546344f7074465257787846683042476d4c4865562b71396f78366a5454424c4d4134470a41315564447745422f775145417749486744414d42674e5648524d4241663845416a41414d437347413155644977516b4d434b414948676d3877394845482f720a39347139464f6565476f4b37536c2b74704538546a4f456732354f78416a4e484d416f4743437147534d343942414d43413067414d455543495143643251484c0a704b504f7674576a5845426f376848336c42753378614c4e426b4b70344273483861735639774967556e52592b2f3546724231345453312b43384f37737131780a46692f4b3456556b637274322f4a484c65324d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[db1 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org1MSP -[db2 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org1MSP validating identity -[db3 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal matched by identity 0 -[db4 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ab c4 68 d1 2e b2 17 62 a4 47 e2 03 d9 1c 12 e2 |..h....b.G......| -00000010 e9 82 52 e9 46 a0 14 4a d5 3e 39 8b 1c b6 5c ac |..R.F..J.>9...\.| -[db0 05-31 05:23:32.61 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8950 principal evaluation fails -[db6 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8950 gate 1527744212618051700 evaluation fails -[db5 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 02 50 7b 56 4b 5a 3f 22 97 b5 d9 89 |0D. .P{VKZ?"....| -00000010 8d 69 e4 1e 5f 93 21 2e d5 a7 6f 8b c6 c6 93 cf |.i.._.!...o.....| -00000020 75 5c 47 f1 02 20 3c 82 2f 8c 84 5e 6f 73 be a0 |u\G.. <./..^os..| -00000030 ec 01 bf 77 14 b3 98 ba 53 95 d0 99 e5 60 fb 39 |...w....S....`.9| -00000040 2b c6 e3 12 1d d1 |+.....| -[db7 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[db8 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[db9 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[dba 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8968 gate 1527744212621750600 evaluation starts -[dbb 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8968 signed by 0 principal evaluation starts (used [false]) -[dbc 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8968 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[dbd 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for Org2MSP -[dbe 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP Org2MSP validating identity -[dbf 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal evaluation succeeds for identity 0 -[dc1 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8968 principal matched by identity 0 -[dc0 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744212618041600 evaluation succeeds -[dc2 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 9c 3e fa ef 20 39 e9 85 27 d2 fb f0 d1 e7 42 46 |.>.. 9..'.....BF| -00000010 3a d2 8a 90 44 cc 2a dc ae 47 77 2d d4 cd b9 f7 |:...D.*..Gw-....| -[dc4 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 05 a9 c0 86 01 8c c5 76 56 83 db 58 |0D. .......vV..X| -00000010 cf df 31 94 e9 8e 94 e2 4e c2 fc da cd 09 c0 dd |..1.....N.......| -00000020 c0 45 d4 0c 02 20 65 15 45 86 2a b1 08 34 57 75 |.E... e.E.*..4Wu| -00000030 20 d9 9f 1b ee 6d 3f c2 21 68 40 6e a5 3b 4e ef | ....m?.!h@n.;N.| -00000040 f4 45 f5 ae fb cd |.E....| -[dc3 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers -[dc5 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[dc7 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8968 principal evaluation succeeds for identity 0 -[dc8 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8968 gate 1527744212621750600 evaluation succeeds -[dc9 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers -[dc6 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[dca 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[dcc 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers -[dcd 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[dcb 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[dce 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[dd0 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[dcf 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[dd1 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056bae0) for 172.18.0.5:38448 -[dd2 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[dd3 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[dd4 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420314aa0) for 172.18.0.4:39646 -[dd5 05-31 05:23:32.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[dd6 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[dd7 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41458 -[dd8 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41458 -[dd9 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[dda 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ddb 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[ddc 05-31 05:23:34.65 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ddd 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[dde 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity -[ddf 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[d3a 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1528769769945654600 evaluation starts +[d3b 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 signed by 0 principal evaluation starts (used [false]) +[d3c 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[d3d 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org2MSP) +[d3e 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal evaluation fails +[d40 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[d41 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[d42 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[d43 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[d44 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[d45 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[d46 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw +CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy +YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu +b3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa +MFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T +YW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw +EwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ +J62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD +VR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3 +ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy +za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX +fv5YS9/ysd8jy4a+pg== +-----END CERTIFICATE----- +[d47 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420151698 gate 1528769769950127700 evaluation starts +[d48 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151698 signed by 0 principal evaluation starts (used [false]) +[d49 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151698 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[d3f 06-12 02:16:09.94 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1528769769945654600 evaluation fails +[d4b 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151698 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got Org1MSP) +[d4a 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[d4c 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420151698 principal evaluation fails +[d4e 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420151698 gate 1528769769950127700 evaluation fails +[d4d 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[d50 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[d4f 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[d51 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[d52 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[d54 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1528769769952427200 evaluation starts +[d55 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 signed by 0 principal evaluation starts (used [false]) +[d2a 06-12 02:16:09.93 UTC] [github.com/hyperledger/fabric/orderer/common/multichannel] commitBlock -> DEBU [channel: businesschannel] Wrote block 7 +[d56 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[d57 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got Org2MSP) +[d53 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201516b0 gate 1528769769952368700 evaluation starts +[d59 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516b0 signed by 0 principal evaluation starts (used [false]) +[d58 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e298 principal evaluation fails +[d5a 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516b0 processing identity 0 with bytes of 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495154444e59776d2f745149356652444f6d6f733067527a414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a304441516344516741455a4954565736633073782f73796665706a4b48386e47687244783738554b654a0a4a363267466c6b7930414b3735454a4a6e2f5165444763524776786c4a2f6f692f58374346356d714a41656c58744877366d75336d714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414e6a77716e68790a7a6138757058746e6f34572f746f76504b7a712f536844524472653841433457534d6d304169426d70435773515a6a4e6a644c2f4b4e72306d716d6a647862580a6676355953392f797364386a7934612b70673d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[d5b 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e298 gate 1528769769952427200 evaluation fails +[d5d 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[d5c 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org1MSP +[d5f 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org1MSP validating identity +[d5e 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[d60 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[d61 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201516c0 gate 1528769769956402400 evaluation starts +[d62 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516c0 signed by 0 principal evaluation starts (used [false]) +[d63 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516c0 processing identity 0 with bytes of 0a074f7267324d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b67417749424167495158707563315844657333714e677662377369492f4944414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d69356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d69356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a6461467730794f4441784d6a67774e7a51774d6a64610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514445785a775a5756794d433576636d63794c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414535336c3853677138766e3070487a6c67672f55706d554a62306b6a385747446a0a53505672396d635175456d65633941356f375a6d7135792f706255346433543050346f45504e3441686b367a64502f4b6c772b7750364e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f416772766f4963513870664175650a39626e724845437a46584746364c42323362566151774a77304b4d624f377777436759494b6f5a497a6a3045417749445341417752514968414b3248614b346c0a5851697531587867496a54353863746f5a6f544374356f684a63797153374e73477253754169413556772f54794b6e6b504c56733242316f314a664669472b530a5168383061546e416567535453716d4131773d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[d64 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for Org2MSP +[d65 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP Org2MSP validating identity +[d66 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516b0 principal matched by identity 0 +[d67 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 80 57 26 08 17 03 a9 f5 21 75 e8 43 d6 a1 22 73 |.W&.....!u.C.."s| +00000010 28 9a fd 30 3d c1 a2 a3 88 c2 94 62 7e fb 7f a4 |(..0=......b~...| +[d68 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f2 08 58 5b 35 1c d2 cd 6f af af |0E.!...X[5...o..| +00000010 5a fc 3b fa a1 7b 86 db 71 45 7c 46 a1 05 c1 51 |Z.;..{..qE|F...Q| +00000020 8b f3 4c e7 46 02 20 0f 9e 5a 69 0f 1f cb 7f 36 |..L.F. ..Zi....6| +00000030 2f fa d2 b2 52 1f e0 af d4 45 93 1f 08 6c e8 c3 |/...R....E...l..| +00000040 ba be d2 f5 4d 4e 23 |....MN#| +[d69 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516c0 principal matched by identity 0 +[d6a 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 b2 ff e0 92 a3 56 1b 7e fe 19 1c 4a 85 be 73 20 |.....V.~...J..s | +00000010 3e 07 d0 a5 9f e4 8d ed 6c 76 35 82 a4 59 62 53 |>.......lv5..YbS| +[d6c 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b ef 70 d9 ec a2 ef 4f df 9b 81 35 |0D. ..p....O...5| +00000010 3f fe 61 d6 b1 ab 78 63 df 05 e5 3e 3a 62 76 31 |?.a...xc...>:bv1| +00000020 36 d4 62 ef 02 20 5d 21 a0 73 43 00 3a cc 87 e8 |6.b.. ]!.sC.:...| +00000030 1d 4c fb 52 53 ad 62 43 f1 24 2d 32 5c 3c b9 be |.L.RS.bC.$-2\<..| +00000040 d0 60 fa 35 3a 8e |.`.5:.| +[d6b 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516b0 principal evaluation succeeds for identity 0 +[d6d 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201516b0 gate 1528769769952368700 evaluation succeeds +[d6e 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org1MSP/Readers +[d70 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201516c0 principal evaluation succeeds for identity 0 +[d6f 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[d72 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[d71 06-12 02:16:09.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201516c0 gate 1528769769956402400 evaluation succeeds +[d74 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Org2MSP/Readers +[d73 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[d76 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[d75 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[d77 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[d78 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Application/Readers +[d7a 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[d79 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0be80) for 172.18.0.4:45286 +[d7b 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[d7c 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[d7d 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420156260) for 172.18.0.5:51658 +[d7e 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[d7f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[d80 06-12 02:16:12.05 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[d81 06-12 02:16:12.05 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35908 +[d82 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35908 +[d83 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[d84 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[d85 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[d86 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[d87 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[d88 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity -> INFO Obtaining identity +[d89 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate.DeserializeIdentity.DeserializeIdentity.DeserializeIdentity.deserializeIdentityInternal.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICCTCCAbCgAwIBAgIQFrYi4DNznee23c/WXWN0NjAKBggqhkjOPQQDAjBpMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w @@ -5037,1159 +4933,1157 @@ A1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAg9jK6IGy/hzhk0VS1+gsJ4Xa3RC7eKMz/ QHtN77hjuA0wCgYIKoZIzj0EAwIDRwAwRAIgCt81djzOD8L2eiHgF5oIBdCIoDEM JZmjWgkzlOKHxf0CIAcI+2P2/lAkZkZ6Eph7NOR2f36QAeFnc1gfdrsC9S+P -----END CERTIFICATE----- -[de0 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89c8 gate 1527744214664684500 evaluation starts -[de1 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89c8 signed by 0 principal evaluation starts (used [false]) -[de2 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[de3 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[de4 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89c8 principal evaluation fails -[de5 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89c8 gate 1527744214664684500 evaluation fails -[de6 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[de7 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[de8 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[de9 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89f0 gate 1527744214667173200 evaluation starts -[dea 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f0 signed by 0 principal evaluation starts (used [false]) -[deb 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[dec 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[ded 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f0 principal evaluation fails -[dee 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89f0 gate 1527744214667173200 evaluation fails -[def 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[df0 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[df1 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[df2 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89f8 gate 1527744214668350900 evaluation starts -[df3 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f8 signed by 0 principal evaluation starts (used [false]) -[df4 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[df5 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[df6 05-31 05:23:34.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b89f8 principal evaluation fails -[df7 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b89f8 gate 1527744214668350900 evaluation fails -[df8 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[df9 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[dfa 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] -[dfb 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[dfc 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[dfd 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[dfe 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[dff 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[e00 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a00 gate 1527744214671983700 evaluation starts -[e01 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a00 signed by 0 principal evaluation starts (used [false]) -[e02 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a00 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e03 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP -[e04 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.Validate -> DEBU MSP OrdererMSP validating identity -[e05 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a00 principal matched by identity 0 -[e06 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 54 0d 94 88 ff 8c 88 ca dc 63 d1 4e 31 3f 68 21 |T........c.N1?h!| -00000010 34 34 6e cd 41 12 2b 93 53 d9 96 97 0f 55 83 a1 |44n.A.+.S....U..| -[e07 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cf 3a 40 ac 30 2e 34 8a eb fe fe |0E.!..:@.0.4....| -00000010 4b 60 55 0b c7 98 82 e1 f9 22 31 15 46 14 38 6d |K`U......"1.F.8m| -00000020 c8 8c 08 77 3a 02 20 2f 1a 2a 16 8d 36 27 76 cf |...w:. /.*..6'v.| -00000030 98 b6 e4 50 f6 c5 74 ef 18 bf 63 52 f1 69 a4 02 |...P..t...cR.i..| -00000040 3a 59 a2 cc 11 3b f8 |:Y...;.| -[e08 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a00 principal evaluation succeeds for identity 0 -[e09 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a00 gate 1527744214671983700 evaluation succeeds -[e0a 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[e0b 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[e0c 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[e0d 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[e0e 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[e0f 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[e10 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4205094a0) start: > stop: > from 172.18.0.7:41458 -[e11 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[e12 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -[e13 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -[e14 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -[e15 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -[e16 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4205094a0) for 172.18.0.7:41458 -[e17 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41458 for (0xc4205094a0) -[e18 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41458 -[e19 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41458 -[e1a 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e1b 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e1c 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e1d 05-31 05:23:34.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e1e 05-31 05:23:34.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41458: rpc error: code = Canceled desc = context canceled -[e1f 05-31 05:23:34.68 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[e20 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[e21 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41460 -[e22 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41460 -[e23 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[e24 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e25 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[e26 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e27 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[e28 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a60 gate 1527744214832315200 evaluation starts -[e29 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a60 signed by 0 principal evaluation starts (used [false]) -[e2a 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a60 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e2b 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a60 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[e2c 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a60 principal evaluation fails -[e2d 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a60 gate 1527744214832315200 evaluation fails -[e2e 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[e2f 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[e30 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[e31 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a78 gate 1527744214833309400 evaluation starts -[e32 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a78 signed by 0 principal evaluation starts (used [false]) -[e33 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a78 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e34 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a78 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[e35 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a78 principal evaluation fails -[e36 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a78 gate 1527744214833309400 evaluation fails -[e37 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[e38 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[e39 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[e3a 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a88 gate 1527744214834603200 evaluation starts -[e3b 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a88 signed by 0 principal evaluation starts (used [false]) -[e3c 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a88 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e3d 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a88 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[e3e 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a88 principal evaluation fails -[e3f 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a88 gate 1527744214834603200 evaluation fails -[e40 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[e41 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[e42 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[e43 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[e44 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[e45 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[e46 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e47 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[e48 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a90 gate 1527744214836258800 evaluation starts -[e49 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a90 signed by 0 principal evaluation starts (used [false]) -[e4a 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a90 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e4b 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a90 principal matched by identity 0 -[e4c 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 99 77 e2 ac f9 c8 e7 f4 69 5f 24 bb 71 cf aa 5a |.w......i_$.q..Z| -00000010 fa e7 1e 56 15 9a d0 4b 7f 24 d7 fd c1 ce dc 4b |...V...K.$.....K| -[e4d 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 ab f0 ba c2 78 2a b2 f8 0d 0d f0 |0E.!.....x*.....| -00000010 2e 61 8c ad 0d 23 c1 2d ad a1 0f c7 bc 3b da db |.a...#.-.....;..| -00000020 ec 04 bc 26 0c 02 20 49 f5 84 16 bc f8 76 c0 cb |...&.. I.....v..| -00000030 ca d8 9a 85 2a ef 15 26 07 4c 40 3e 04 b1 55 3a |....*..&.L@>..U:| -00000040 db c5 80 94 ab 93 b3 |.......| -[e4e 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8a90 principal evaluation succeeds for identity 0 -[e4f 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8a90 gate 1527744214836258800 evaluation succeeds -[e50 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[e51 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[e52 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[e53 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[e54 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[e55 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[e56 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420cb6a80) start: > stop: > from 172.18.0.7:41460 -[e57 05-31 05:23:34.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[e58 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -[e59 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -[e5a 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -[e5b 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -[e5c 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420cb6a80) for 172.18.0.7:41460 -[e5d 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41460 for (0xc420cb6a80) -[e5e 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41460 -[e5f 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41460 -[e60 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e61 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e62 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[e63 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[e64 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41460: read: connection reset by peer -[e65 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41460: rpc error: code = Canceled desc = context canceled -[e66 05-31 05:23:34.84 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[e67 05-31 05:23:35.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[e68 05-31 05:23:35.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41468 -[e69 05-31 05:23:35.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41468 -[e6a 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[e6b 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e6c 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[e6d 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e6e 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[e6f 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744215391739100 evaluation starts -[e70 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -[e71 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e72 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[e73 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal evaluation fails -[e74 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744215391739100 evaluation fails -[e75 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[e76 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[e77 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[e78 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744215394542000 evaluation starts -[e79 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 signed by 0 principal evaluation starts (used [false]) -[e7a 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e7b 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[e7c 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e180 principal evaluation fails -[e7d 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e180 gate 1527744215394542000 evaluation fails -[e7e 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[e7f 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[e80 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[e81 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b0 gate 1527744215397974500 evaluation starts -[e82 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b0 signed by 0 principal evaluation starts (used [false]) -[e83 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e84 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[e85 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1b0 principal evaluation fails -[e86 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1b0 gate 1527744215397974500 evaluation fails -[e87 05-31 05:23:35.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[e88 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[e89 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[e8a 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[e8b 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[e8c 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[e8d 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[e8e 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[e8f 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1527744215401205900 evaluation starts -[e90 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 signed by 0 principal evaluation starts (used [false]) -[e91 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[e92 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal matched by identity 0 -[e93 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 1c 53 53 54 bc ef 0e 46 2f f6 d7 c6 fd b0 47 99 |.SST...F/.....G.| -00000010 39 d2 6b 76 73 10 91 58 e5 00 79 61 97 a2 6d e6 |9.kvs..X..ya..m.| -[e94 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a4 a8 f9 2b f4 6c 13 4c 3a da e3 |0E.!....+.l.L:..| -00000010 f8 43 91 3e 8b 60 0e 33 07 84 9d 01 a8 7d 63 c8 |.C.>.`.3.....}c.| -00000020 41 1e a9 33 83 02 20 6e 16 07 30 ee 3e 8d d3 19 |A..3.. n..0.>...| -00000030 4c 59 a7 86 5b 1e db 70 1b fd 93 5a 3a fe d5 56 |LY..[..p...Z:..V| -00000040 e4 ef 74 7f 76 6b 96 |..t.vk.| -[e95 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal evaluation succeeds for identity 0 -[e96 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1527744215401205900 evaluation succeeds -[e97 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[e98 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[e99 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[e9a 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[e9b 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[e9c 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[e9d 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a21ba0) start: > stop: > from 172.18.0.7:41468 -[e9e 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[e9f 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -[ea0 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -[ea1 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -[ea2 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -[ea3 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a21ba0) for 172.18.0.7:41468 -[ea4 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41468 for (0xc420a21ba0) -[ea5 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41468 -[ea6 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41468 -[ea7 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[ea8 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[ea9 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[eaa 05-31 05:23:35.40 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[eab 05-31 05:23:35.41 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41468: rpc error: code = Canceled desc = context canceled -[eac 05-31 05:23:35.41 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[ead 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[eae 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41470 -[eaf 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41470 -[eb0 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[eb1 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[eb2 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[eb3 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[eb4 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[eb5 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1527744215579292900 evaluation starts -[eb6 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) -[eb7 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[eb8 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[eb9 05-31 05:23:35.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation fails -[eba 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1527744215579292900 evaluation fails -[ebb 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[ebc 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[ebd 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[ebe 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1527744215580723800 evaluation starts -[ebf 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 signed by 0 principal evaluation starts (used [false]) -[ec0 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ec1 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[ec2 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 principal evaluation fails -[ec3 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1527744215580723800 evaluation fails -[ec4 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[ec5 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[ec6 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[ec7 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1527744215582326400 evaluation starts -[ec8 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 signed by 0 principal evaluation starts (used [false]) -[ec9 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[eca 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[ecb 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal evaluation fails -[ecc 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1527744215582326400 evaluation fails -[ecd 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[ece 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[ecf 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[ed0 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[ed1 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[ed2 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[ed3 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ed4 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[ed5 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1527744215583585600 evaluation starts -[ed6 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 signed by 0 principal evaluation starts (used [false]) -[ed7 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ed8 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal matched by identity 0 -[ed9 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 57 fc 5f ef 96 8d 2a 13 9b 8e 09 51 1f b5 24 6e |W._...*....Q..$n| -00000010 c9 30 5d e3 58 61 d4 5f 73 9a 4d f9 d6 7c e0 2a |.0].Xa._s.M..|.*| -[eda 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 da 27 7d e3 ba 8f 47 2b 74 a7 ae |0E.!..'}...G+t..| -00000010 59 1a 3e 5b f3 65 b7 7c 0a 86 dc ba 0d 94 f9 9f |Y.>[.e.|........| -00000020 6b 0b e7 cd 57 02 20 60 56 37 05 69 a3 99 83 15 |k...W. `V7.i....| -00000030 64 43 f9 e3 9a 9c fc fd fb 3e 41 1f 9d e0 73 b4 |dC.......>A...s.| -00000040 03 0a 0d 2c 12 eb ea |...,...| -[edb 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e260 principal evaluation succeeds for identity 0 -[edc 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e260 gate 1527744215583585600 evaluation succeeds -[edd 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[ede 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[edf 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[ee0 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[ee1 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[ee2 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[ee3 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420315720) start: > stop: > from 172.18.0.7:41470 -[ee4 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[ee5 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -[ee6 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -[ee7 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -[ee8 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -[ee9 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420315720) for 172.18.0.7:41470 -[eea 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41470 for (0xc420315720) -[eeb 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41470 -[eec 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41470 -[eed 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[eee 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[eef 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[ef0 05-31 05:23:35.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[ef1 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[ef2 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ef3 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[ef4 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[ef5 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[ef6 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8170 gate 1527744215591672000 evaluation starts -[ef7 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8170 signed by 0 principal evaluation starts (used [false]) -[ef8 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8170 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[ef9 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8170 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[efa 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8170 principal evaluation fails -[efb 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8170 gate 1527744215591672000 evaluation fails -[efc 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[efd 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[efe 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[eff 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b81c8 gate 1527744215594427300 evaluation starts -[f00 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81c8 signed by 0 principal evaluation starts (used [false]) -[f01 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f02 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[f03 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81c8 principal evaluation fails -[f04 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b81c8 gate 1527744215594427300 evaluation fails -[f05 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[f06 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[f07 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[f08 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b81d0 gate 1527744215596844100 evaluation starts -[f09 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81d0 signed by 0 principal evaluation starts (used [false]) -[f0a 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f0b 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[f0c 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b81d0 principal evaluation fails -[f0d 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b81d0 gate 1527744215596844100 evaluation fails -[f0e 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[f0f 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[f10 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] -[f11 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[f12 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[f13 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[f14 05-31 05:23:35.59 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[f15 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[f16 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8228 gate 1527744215600180000 evaluation starts -[f17 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8228 signed by 0 principal evaluation starts (used [false]) -[f18 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8228 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f19 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8228 principal matched by identity 0 -[f1a 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 99 d0 36 c5 fb 75 3c 8a fb 28 23 a8 01 fd 6c c8 |..6..u<..(#...l.| -00000010 76 7d 0e f3 ae 00 8c 41 47 cd 5b 1e 8b 0e 04 cd |v}.....AG.[.....| -[f1b 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 bc 01 be 3f a6 2f 1a 41 fd 69 51 |0E.!....?./.A.iQ| -00000010 a6 97 1d 6b 55 8f ed fd 41 0a f4 62 f9 79 ad 32 |...kU...A..b.y.2| -00000020 94 06 a0 7c 14 02 20 23 2c cf be ec cf 99 61 92 |...|.. #,.....a.| -00000030 87 a7 cd 6c e8 e3 1a 3b 5e 5f d9 b4 89 1d 04 fc |...l...;^_......| -00000040 d0 1f 04 ad 8b 52 7b |.....R{| -[f1c 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8228 principal evaluation succeeds for identity 0 -[f1d 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8228 gate 1527744215600180000 evaluation succeeds -[f1e 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[f1f 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[f20 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[f21 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[f22 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[f23 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[f24 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420b53c60) start: > stop: > from 172.18.0.7:41470 -[f25 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[f26 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -[f27 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -[f28 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -[f29 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -[f2a 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420b53c60) for 172.18.0.7:41470 -[f2b 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41470 for (0xc420b53c60) -[f2d 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[f2e 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[f2c 05-31 05:23:35.60 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41470 -[f30 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41470 -[f31 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41470: rpc error: code = Canceled desc = context canceled -[f32 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[f2f 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[f33 05-31 05:23:35.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[f34 05-31 05:23:35.86 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[f35 05-31 05:23:35.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41472 -[f36 05-31 05:23:35.86 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41472 -[f37 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[f38 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[f39 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[f3a 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[f3b 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[f3c 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d8 gate 1527744215871711200 evaluation starts -[f3d 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d8 signed by 0 principal evaluation starts (used [false]) -[f3e 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f3f 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[f40 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d8 principal evaluation fails -[f41 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d8 gate 1527744215871711200 evaluation fails -[f42 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[f43 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[f44 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[f45 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82a8 gate 1527744215875196500 evaluation starts -[f46 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 signed by 0 principal evaluation starts (used [false]) -[f47 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f48 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[f49 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 principal evaluation fails -[f4a 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82a8 gate 1527744215875196500 evaluation fails -[f4b 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[f4c 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[f4d 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[f4e 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82b0 gate 1527744215877596300 evaluation starts -[f4f 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b0 signed by 0 principal evaluation starts (used [false]) -[f50 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f51 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[f52 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b0 principal evaluation fails -[f53 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82b0 gate 1527744215877596300 evaluation fails -[f54 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[f55 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[f56 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[f57 05-31 05:23:35.87 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[f58 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[f59 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[f5a 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[f5b 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[f5c 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82b8 gate 1527744215880958200 evaluation starts -[f5d 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b8 signed by 0 principal evaluation starts (used [false]) -[f5e 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f5f 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b8 principal matched by identity 0 -[f60 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 0f 06 12 e2 34 31 53 35 c9 22 99 70 56 4d 74 47 |....41S5.".pVMtG| -00000010 5c ad e6 b1 34 33 7d 88 29 2d b1 40 49 f6 fe 61 |\...43}.)-.@I..a| -[f61 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 7f 1b f1 13 01 54 44 3d 9e 4d |0E.!.......TD=.M| -00000010 31 7e 38 c6 ce e2 91 e1 d8 8b 75 9d 86 b3 d4 d8 |1~8.......u.....| -00000020 87 8a 12 d0 e5 02 20 3c 5c 94 fc ff 90 5d 83 29 |...... <\....].)| -00000030 1c 3c 3e 3d d1 d2 8d 94 b7 c7 9c e8 9e ab 05 c6 |.<>=............| -00000040 fe 4d b4 48 27 16 81 |.M.H'..| -[f62 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82b8 principal evaluation succeeds for identity 0 -[f63 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82b8 gate 1527744215880958200 evaluation succeeds -[f64 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[f65 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[f66 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[f67 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[f68 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[f69 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[f6a 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42056aba0) start: > stop: > from 172.18.0.7:41472 -[f6b 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[f6c 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] -[f6d 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[81564], Going to peek [8] bytes -[f6e 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12118], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[f6f 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12118] read from file [0] -[f70 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42056aba0) for 172.18.0.7:41472 -[f71 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41472 for (0xc42056aba0) -[f73 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[f74 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[f75 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[f76 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[f72 05-31 05:23:35.88 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41472 -[f77 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41472 -[f78 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41472: rpc error: code = Canceled desc = context canceled -[f79 05-31 05:23:35.89 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[f7a 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[f7b 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41474 -[f7c 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41474 -[f7d 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[f7e 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[f7f 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[f80 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[f81 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[f82 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e300 gate 1527744216225250500 evaluation starts -[f83 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 signed by 0 principal evaluation starts (used [false]) -[f84 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f85 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[f86 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e300 principal evaluation fails -[f87 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e300 gate 1527744216225250500 evaluation fails -[f88 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[f89 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[f8a 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[f8b 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e310 gate 1527744216227507700 evaluation starts -[f8c 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e310 signed by 0 principal evaluation starts (used [false]) -[f8d 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e310 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f8e 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e310 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[f8f 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e310 principal evaluation fails -[f90 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e310 gate 1527744216227507700 evaluation fails -[f91 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[f92 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[f93 05-31 05:23:36.22 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[f94 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e318 gate 1527744216230253400 evaluation starts -[f95 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e318 signed by 0 principal evaluation starts (used [false]) -[f96 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e318 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[f97 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e318 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[f98 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e318 principal evaluation fails -[f99 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e318 gate 1527744216230253400 evaluation fails -[f9a 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[f9b 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[f9c 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[f9d 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[f9e 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[f9f 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[fa0 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[fa1 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[fa2 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e320 gate 1527744216236741700 evaluation starts -[fa3 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 signed by 0 principal evaluation starts (used [false]) -[fa4 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[fa5 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 principal matched by identity 0 -[fa6 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 4a 9b 9c 86 ec a9 36 db 58 13 66 5e 56 62 ab af |J.....6.X.f^Vb..| -00000010 ea aa 6c 48 11 46 22 c6 e1 fa 37 f9 f2 be 30 78 |..lH.F"...7...0x| -[fa7 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d6 7b 77 95 7d fe 67 ad 73 42 2c |0E.!..{w.}.g.sB,| -00000010 73 0f 48 81 93 95 4c 53 cf a5 3a f4 6d 2d 29 ac |s.H...LS..:.m-).| -00000020 d8 3f 65 9f 8f 02 20 41 5b 05 8c ec b8 b1 00 c0 |.?e... A[.......| -00000030 ed df 28 84 f3 87 be 08 02 74 00 84 ba 99 a3 cf |..(......t......| -00000040 f4 72 1b 0e 8e 00 c4 |.r.....| -[fa8 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e320 principal evaluation succeeds for identity 0 -[fa9 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e320 gate 1527744216236741700 evaluation succeeds -[faa 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[fab 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[fac 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[fad 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[fae 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[faf 05-31 05:23:36.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[fb0 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42000c3e0) start: > stop: > from 172.18.0.7:41474 -[fb1 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[fb2 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12120] -[fb3 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[69444], Going to peek [8] bytes -[fb4 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13957], placementInfo={fileNum=[0], startOffset=[12120], bytesOffset=[12122]} -[fb5 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13957] read from file [0] -[fb6 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42000c3e0) for 172.18.0.7:41474 -[fb7 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41474 for (0xc42000c3e0) -[fb9 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[fba 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[fbb 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[fbc 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[fb8 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41474 -[fbd 05-31 05:23:36.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41474 -[fbe 05-31 05:23:36.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41474: rpc error: code = Canceled desc = context canceled -[fbf 05-31 05:23:36.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[fc0 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[fc1 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41476 -[fc2 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41476 -[fc3 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[fc4 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[fc5 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[fc6 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[fc7 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[fc8 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8380 gate 1527744216465731700 evaluation starts -[fc9 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8380 signed by 0 principal evaluation starts (used [false]) -[fca 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8380 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[fcb 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8380 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[fcc 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8380 principal evaluation fails -[fcd 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8380 gate 1527744216465731700 evaluation fails -[fce 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[fcf 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[fd0 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[fd1 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8398 gate 1527744216468267100 evaluation starts -[fd2 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8398 signed by 0 principal evaluation starts (used [false]) -[fd3 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8398 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[fd4 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8398 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[fd5 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8398 principal evaluation fails -[fd6 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8398 gate 1527744216468267100 evaluation fails -[fd7 05-31 05:23:36.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[fd8 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[fd9 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[fda 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83a0 gate 1527744216471169100 evaluation starts -[fdb 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a0 signed by 0 principal evaluation starts (used [false]) -[fdc 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[fdd 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[fde 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a0 principal evaluation fails -[fdf 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83a0 gate 1527744216471169100 evaluation fails -[fe0 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[fe1 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[fe2 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] -[fe3 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[fe4 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[fe5 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[fe6 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[fe7 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[fe8 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83a8 gate 1527744216474039900 evaluation starts -[fe9 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a8 signed by 0 principal evaluation starts (used [false]) -[fea 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[feb 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a8 principal matched by identity 0 -[fec 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 cb 31 fb 4c a9 9f 4c fe f8 be 21 56 93 9c 9b b8 |.1.L..L...!V....| -00000010 99 d9 36 a4 12 03 94 a3 c9 ca 83 ff 88 53 93 33 |..6..........S.3| -[fed 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 f1 42 92 a5 7d b4 ad 32 af cc 8b |0E.!..B..}..2...| -00000010 9e e6 d7 86 55 00 78 06 ba 80 39 a4 c8 56 cc e4 |....U.x...9..V..| -00000020 c0 83 bc f5 d1 02 20 07 15 ad 00 e1 3d 65 6e 24 |...... .....=en$| -00000030 c8 bf 88 90 a8 21 f5 13 74 02 00 52 d1 77 8f 9f |.....!..t..R.w..| -00000040 fd af 7c 42 e4 f5 dd |..|B...| -[fee 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83a8 principal evaluation succeeds for identity 0 -[fef 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83a8 gate 1527744216474039900 evaluation succeeds -[ff0 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[ff1 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[ff2 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[ff3 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[ff4 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[ff5 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[ff6 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203a0640) start: > stop: > from 172.18.0.7:41476 -[ff7 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[ff8 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] -[ff9 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[55485], Going to peek [8] bytes -[ffa 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14013], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} -[ffb 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14013] read from file [0] -[ffc 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203a0640) for 172.18.0.7:41476 -[ffd 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41476 for (0xc4203a0640) -[ffe 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41476 -[fff 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41476 -[1000 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[1001 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[1002 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[1003 05-31 05:23:36.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[1004 05-31 05:23:36.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41476: rpc error: code = Canceled desc = context canceled -[1005 05-31 05:23:36.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[1006 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[1007 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41478 -[1008 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41478 -[1009 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[100a 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[100b 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[100c 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[100d 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[100e 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84b0 gate 1527744216698171600 evaluation starts -[100f 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84b0 signed by 0 principal evaluation starts (used [false]) -[1010 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84b0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1011 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84b0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[1012 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84b0 principal evaluation fails -[1013 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84b0 gate 1527744216698171600 evaluation fails -[1014 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[1015 05-31 05:23:36.69 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[1016 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[1017 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84d0 gate 1527744216700430700 evaluation starts -[1018 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84d0 signed by 0 principal evaluation starts (used [false]) -[1019 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[101a 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[101b 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84d0 principal evaluation fails -[101c 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84d0 gate 1527744216700430700 evaluation fails -[101d 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[101e 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[101f 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[1020 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84f8 gate 1527744216702718400 evaluation starts -[1021 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 signed by 0 principal evaluation starts (used [false]) -[1022 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1023 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[1024 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 principal evaluation fails -[1025 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84f8 gate 1527744216702718400 evaluation fails -[1026 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[1027 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[1028 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[1029 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[102a 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[102b 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[102c 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[102d 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[102e 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8518 gate 1527744216705844900 evaluation starts -[102f 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8518 signed by 0 principal evaluation starts (used [false]) -[1030 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8518 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1031 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8518 principal matched by identity 0 -[1032 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 47 97 df 55 78 8d 44 58 cc 75 63 f3 66 b6 3a 29 |G..Ux.DX.uc.f.:)| -00000010 af e4 b8 78 a1 0b df d3 34 f7 4d 6c 19 27 ea 76 |...x....4.Ml.'.v| -[1033 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 85 5e f2 1d 86 21 8b 43 5f de 37 |0E.!..^...!.C_.7| -00000010 8d c6 ad f3 01 c9 ed 8e 17 fa 83 11 88 1d 58 a0 |..............X.| -00000020 fc 47 6d 44 2c 02 20 7b d9 3a c1 70 b1 b5 26 2b |.GmD,. {.:.p..&+| -00000030 bf 48 73 2d 6a ef 28 14 15 38 44 09 6e bf dd bd |.Hs-j.(..8D.n...| -00000040 ea 9c 3d d2 74 77 1c |..=.tw.| -[1034 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8518 principal evaluation succeeds for identity 0 -[1035 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8518 gate 1527744216705844900 evaluation succeeds -[1036 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[1037 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[1038 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[1039 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[103a 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[103b 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[103c 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203ae200) start: > stop: > from 172.18.0.7:41478 -[103d 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[103e 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40094] -[103f 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[41470], Going to peek [8] bytes -[1040 05-31 05:23:36.70 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[40094], bytesOffset=[40096]} -[1041 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[1042 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203ae200) for 172.18.0.7:41478 -[1043 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41478 for (0xc4203ae200) -[1044 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41478 -[1045 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41478 -[1046 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[1047 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[1048 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[1049 05-31 05:23:36.71 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[104a 05-31 05:23:36.72 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41478: rpc error: code = Canceled desc = context canceled -[104b 05-31 05:23:36.72 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[104c 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[104d 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41480 -[104e 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41480 -[104f 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[1050 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1051 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[1052 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1053 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[1054 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85b8 gate 1527744216966935800 evaluation starts -[1055 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85b8 signed by 0 principal evaluation starts (used [false]) -[1056 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85b8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1057 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85b8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[1058 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85b8 principal evaluation fails -[1059 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85b8 gate 1527744216966935800 evaluation fails -[105a 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[105b 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[105c 05-31 05:23:36.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[105d 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c0 gate 1527744216970832000 evaluation starts -[105e 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 signed by 0 principal evaluation starts (used [false]) -[105f 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1060 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[1061 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c0 principal evaluation fails -[1062 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c0 gate 1527744216970832000 evaluation fails -[1063 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[1064 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[1065 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[1066 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c8 gate 1527744216974317500 evaluation starts -[1067 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 signed by 0 principal evaluation starts (used [false]) -[1068 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1069 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[106a 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85c8 principal evaluation fails -[106b 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85c8 gate 1527744216974317500 evaluation fails -[106c 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[106d 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[106e 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[106f 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[1070 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[1071 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[1072 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1073 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[1074 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85d0 gate 1527744216977858300 evaluation starts -[1075 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85d0 signed by 0 principal evaluation starts (used [false]) -[1076 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1077 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85d0 principal matched by identity 0 -[1078 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f1 57 ef e2 1d 8e ce 86 6a 75 c9 75 3d 0e 19 7a |.W......ju.u=..z| -00000010 f9 34 77 1e 89 9c 59 cd 17 de 20 82 55 f0 a1 d5 |.4w...Y... .U...| -[1079 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 83 0e bd 71 9a bc 21 24 5d 67 07 |0E.!....q..!$]g.| -00000010 08 04 02 5d c0 da bb f7 d2 a6 ba e9 a6 b6 75 c2 |...]..........u.| -00000020 22 b7 06 27 88 02 20 45 51 82 ac 8d 32 7e 31 7d |"..'.. EQ...2~1}| -00000030 73 04 6e b1 f5 e9 04 89 5e fa fb ee 70 06 75 06 |s.n.....^...p.u.| -00000040 5f 32 38 92 2f 7d 5a |_28./}Z| -[107a 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b85d0 principal evaluation succeeds for identity 0 -[107b 05-31 05:23:36.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b85d0 gate 1527744216977858300 evaluation succeeds -[107c 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[107d 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[107e 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[107f 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[1080 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[1081 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[1082 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42054a440) start: > stop: > from 172.18.0.7:41480 -[1083 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[1084 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45416] -[1085 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[36148], Going to peek [8] bytes -[1086 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5320], placementInfo={fileNum=[0], startOffset=[45416], bytesOffset=[45418]} -[1087 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5320] read from file [0] -[1088 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42054a440) for 172.18.0.7:41480 -[1089 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41480 for (0xc42054a440) -[108a 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41480 -[108b 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41480 -[108c 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[108d 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[108e 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[108f 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[1090 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41480: rpc error: code = Canceled desc = context canceled -[1091 05-31 05:23:36.98 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[1092 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[1093 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41482 -[1094 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41482 -[1095 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[1096 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1097 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[1098 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1099 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[109a 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8620 gate 1527744217166975800 evaluation starts -[109b 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8620 signed by 0 principal evaluation starts (used [false]) -[109c 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8620 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[109d 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8620 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[109e 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8620 principal evaluation fails -[109f 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8620 gate 1527744217166975800 evaluation fails -[10a0 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[10a1 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[10a2 05-31 05:23:37.16 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[10a3 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8628 gate 1527744217170276600 evaluation starts -[10a4 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8628 signed by 0 principal evaluation starts (used [false]) -[10a5 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8628 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[10a6 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8628 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[10a7 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8628 principal evaluation fails -[10a8 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8628 gate 1527744217170276600 evaluation fails -[10a9 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[10aa 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[10ab 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[10ac 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8090 gate 1527744217173785900 evaluation starts -[10ad 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 signed by 0 principal evaluation starts (used [false]) -[10ae 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[10af 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[10b0 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8090 principal evaluation fails -[10b1 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8090 gate 1527744217173785900 evaluation fails -[10b2 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[10b3 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[10b4 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[10b5 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[10b6 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[10b7 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[10b8 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[10b9 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[10ba 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b80c8 gate 1527744217175794100 evaluation starts -[10bb 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b80c8 signed by 0 principal evaluation starts (used [false]) -[10bc 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b80c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[10bd 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b80c8 principal matched by identity 0 -[10be 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 a7 30 db ef 64 8b 45 d6 93 aa 2a 3d 0b 58 2d 47 |.0..d.E...*=.X-G| -00000010 0c 15 10 e3 72 07 57 87 d5 81 4e d8 97 ea 7e 48 |....r.W...N...~H| -[10bf 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 59 25 1c b9 ab ff 47 f5 94 60 6d dc |0D. Y%....G..`m.| -00000010 19 52 36 11 59 a4 46 f1 02 36 38 91 a6 13 41 68 |.R6.Y.F..68...Ah| -00000020 fd 31 47 ea 02 20 5b 98 9c 9c 11 60 db a9 97 56 |.1G.. [....`...V| -00000030 40 6a 8f 43 cc 81 24 cc 50 5f 08 e4 52 38 a9 c6 |@j.C..$.P_..R8..| -00000040 3c e2 42 0d 6b 4d |<.B.kM| -[10c0 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b80c8 principal evaluation succeeds for identity 0 -[10c1 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b80c8 gate 1527744217175794100 evaluation succeeds -[10c2 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[10c3 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[10c4 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[10c5 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[10c6 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[10c7 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[10c8 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc42054a5e0) start: > stop: > from 172.18.0.7:41482 -[10c9 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[10ca 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50738] -[10cb 05-31 05:23:37.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[30826], Going to peek [8] bytes -[10cc 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4784], placementInfo={fileNum=[0], startOffset=[50738], bytesOffset=[50740]} -[10cd 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4784] read from file [0] -[10ce 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc42054a5e0) for 172.18.0.7:41482 -[10cf 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41482 for (0xc42054a5e0) -[10d0 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41482 -[10d1 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41482 -[10d2 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[10d3 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[10d4 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[10d5 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[10d6 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41482: rpc error: code = Canceled desc = context canceled -[10d7 05-31 05:23:37.18 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[10d8 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[10d9 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41484 -[10da 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41484 -[10db 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[10dc 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[10dd 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[10de 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[10df 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[10e0 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1527744217366093900 evaluation starts -[10e1 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) -[10e2 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[10e3 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[10e4 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails -[10e5 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1527744217366093900 evaluation fails -[10e6 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[10e7 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[10e8 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[10e9 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1527744217367868100 evaluation starts -[10ea 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 signed by 0 principal evaluation starts (used [false]) -[10eb 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[10ec 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[10ed 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 principal evaluation fails -[10ee 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1527744217367868100 evaluation fails -[10ef 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[10f0 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[10f1 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[10f2 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0d8 gate 1527744217369470000 evaluation starts -[10f3 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d8 signed by 0 principal evaluation starts (used [false]) -[10f4 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[10f5 05-31 05:23:37.36 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[10f6 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0d8 principal evaluation fails -[10f7 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0d8 gate 1527744217369470000 evaluation fails -[10f8 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[10f9 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[10fa 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] -[10fb 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[10fc 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[10fd 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[10fe 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[10ff 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[1100 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744217372037100 evaluation starts -[1101 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 signed by 0 principal evaluation starts (used [false]) -[1102 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1103 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal matched by identity 0 -[1104 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 cb f4 a6 70 87 1c 08 e9 e7 34 3b 53 df 43 ac 1f |...p.....4;S.C..| -00000010 4c 70 1e 68 e7 bf a6 ba d3 f8 78 fc 9b b9 e2 d0 |Lp.h......x.....| -[1105 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 8d 25 17 c1 e6 e3 94 1d 98 ff 83 |0E.!..%.........| -00000010 65 8c 62 ae 93 ac 9d 34 27 2d ae 4f 04 6d 0f 8e |e.b....4'-.O.m..| -00000020 95 68 fb ec 01 02 20 19 1a 9f 9c 64 2f 52 dc f9 |.h.... ....d/R..| -00000030 be ea 87 8a 8e e4 25 b2 50 83 2b 6b ac eb 30 ea |......%.P.+k..0.| -00000040 42 be 13 f6 80 82 cf |B......| -[1106 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e128 principal evaluation succeeds for identity 0 -[1107 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e128 gate 1527744217372037100 evaluation succeeds -[1108 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[1109 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[110a 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[110b 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[110c 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[110d 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[110e 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420a21860) start: > stop: > from 172.18.0.7:41484 -[110f 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[1110 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55524] -[1111 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[26040], Going to peek [8] bytes -[1112 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4780], placementInfo={fileNum=[0], startOffset=[55524], bytesOffset=[55526]} -[1113 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4780] read from file [0] -[1114 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420a21860) for 172.18.0.7:41484 -[1115 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41484 for (0xc420a21860) -[1116 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41484 -[1118 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41484 -[1117 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[1119 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[111a 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[111b 05-31 05:23:37.37 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[111c 05-31 05:23:37.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41484: rpc error: code = Canceled desc = context canceled -[111d 05-31 05:23:37.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[111e 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[111f 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41486 -[1120 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41486 -[1121 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[1122 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1123 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == -[1124 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1125 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == -[1126 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8270 gate 1527744217567927600 evaluation starts -[1127 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 signed by 0 principal evaluation starts (used [false]) -[1128 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1129 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) -[112a 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8270 principal evaluation fails -[112b 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8270 gate 1527744217567927600 evaluation fails -[112c 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers -[112d 05-31 05:23:37.56 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers -[112e 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == -[112f 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8280 gate 1527744217570765800 evaluation starts -[1130 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 signed by 0 principal evaluation starts (used [false]) -[1131 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1132 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) -[1133 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8280 principal evaluation fails -[1134 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8280 gate 1527744217570765800 evaluation fails -[1135 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers -[1136 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers -[1137 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == -[1138 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8290 gate 1527744217573669200 evaluation starts -[1139 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8290 signed by 0 principal evaluation starts (used [false]) -[113a 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8290 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[113b 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8290 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) -[113c 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8290 principal evaluation fails -[113d 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8290 gate 1527744217573669200 evaluation fails -[113e 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers -[113f 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers -[1140 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] -[1141 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers -[1142 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers -[1143 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[1144 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1145 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[1146 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82a8 gate 1527744217576591600 evaluation starts -[1147 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 signed by 0 principal evaluation starts (used [false]) -[1148 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1149 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 principal matched by identity 0 -[114a 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 df 47 93 fa 0c ce 77 b9 f0 74 30 6a 9e f6 79 9f |.G....w..t0j..y.| -00000010 c0 09 20 c6 c2 31 e1 92 80 aa db 5a 43 f9 42 d3 |.. ..1.....ZC.B.| -[114b 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 39 8b 99 40 ad d2 db 44 5e 3d eb f1 |0D. 9..@...D^=..| -00000010 66 91 45 6a ba 94 36 67 31 fc 2f 24 69 1e bf 36 |f.Ej..6g1./$i..6| -00000020 bb 48 12 02 02 20 52 57 82 df 67 77 7d a3 5b 2c |.H... RW..gw}.[,| -00000030 ea 51 31 bb 06 25 91 86 ce 20 5b 8e 68 b8 06 61 |.Q1..%... [.h..a| -00000040 35 a5 e2 78 25 46 |5..x%F| -[114c 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b82a8 principal evaluation succeeds for identity 0 -[114d 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b82a8 gate 1527744217576591600 evaluation succeeds -[114e 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[114f 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[1150 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[1151 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[1152 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[1153 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[1154 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203aea60) start: > stop: > from 172.18.0.7:41486 -[1155 05-31 05:23:37.57 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 -[1156 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] -[1157 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes -[1158 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} -[1159 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] -[115a 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203aea60) for 172.18.0.7:41486 -[115b 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:41486 for (0xc4203aea60) -[115c 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41486 -[115e 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[115f 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[1160 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] -[1161 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] -[115d 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41486 -[1162 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41486: rpc error: code = Canceled desc = context canceled -[1163 05-31 05:23:37.58 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[1164 05-31 05:23:37.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[1165 05-31 05:23:37.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41488 -[1166 05-31 05:23:37.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41488 -[1167 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[1168 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[1169 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[116a 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[116b 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[116c 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8340 gate 1527744217772540200 evaluation starts -[116d 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 signed by 0 principal evaluation starts (used [false]) -[116e 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[116f 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 principal matched by identity 0 -[1170 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 f1 88 e8 a8 0b eb 15 46 5a b6 c7 ee c6 37 61 54 |.......FZ....7aT| -00000010 b4 52 96 bd 82 2e 0b 3c c2 ab 8c e2 f5 c2 c4 88 |.R.....<........| -[1171 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 70 7f 4a b4 6b 5b a2 59 92 a4 d4 03 |0D. p.J.k[.Y....| -00000010 bc b9 c4 81 b7 d3 26 46 28 20 b1 23 07 d2 35 4c |......&F( .#..5L| -00000020 d8 85 ae e1 02 20 6a de 3a 84 5d af 4e d0 27 71 |..... j.:.].N.'q| -00000030 cd 72 f6 48 b0 a2 5f 27 71 e3 52 5d 76 b9 c9 74 |.r.H.._'q.R]v..t| -00000040 2d ec e1 dc a2 e9 |-.....| -[1172 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b8340 principal evaluation succeeds for identity 0 -[1173 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b8340 gate 1527744217772540200 evaluation succeeds -[1174 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[1175 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[1176 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[1177 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[1178 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[1179 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[117a 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203a0440) start: > stop: > from 172.18.0.7:41488 -[117b 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[117c 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -[117d 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -[117e 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[117f 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -[1180 05-31 05:23:37.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203a0440) for 172.18.0.7:41488 -[1181 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41488 for (0xc4203a0440) -[1182 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41488 -[1183 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41488 -[1184 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/flogging] func2.serveStreams.HandleStreams.warningf.Warningf.Warningf.Printf -> DEBU transport: http2Server.HandleStreams failed to read frame: read tcp 172.18.0.3:7050->172.18.0.7:41488: read: connection reset by peer -[1185 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41488: rpc error: code = Canceled desc = context canceled -[1186 05-31 05:23:37.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[1187 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[1188 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41490 -[1189 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41490 -[118a 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[118b 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[118c 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[118d 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[118e 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[118f 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83d0 gate 1527744217977521400 evaluation starts -[1190 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83d0 signed by 0 principal evaluation starts (used [false]) -[1191 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[1192 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83d0 principal matched by identity 0 -[1193 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 52 df 73 40 cd db 67 a6 13 5d ae d7 b5 88 59 7b |R.s@..g..]....Y{| -00000010 91 11 93 97 a5 ca fa 42 3f 28 38 09 0a ab ca 18 |.......B?(8.....| -[1194 05-31 05:23:37.97 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 62 92 20 64 16 51 84 2d 8c 8f 7e 0a |0D. b. d.Q.-..~.| -00000010 0c 71 49 fe 22 24 88 c6 f5 ce 24 78 73 b1 b3 ad |.qI."$....$xs...| -00000020 0c 90 8d fe 02 20 62 9d 0a c5 25 04 02 11 e3 37 |..... b...%....7| -00000030 c5 95 b7 ed 48 96 11 1e b9 cd f8 a6 03 e1 ee a4 |....H...........| -00000040 1d 79 b0 47 77 6c |.y.Gwl| -[1195 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b83d0 principal evaluation succeeds for identity 0 -[1196 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b83d0 gate 1527744217977521400 evaluation succeeds -[1197 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[1198 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[1199 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[119a 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[119b 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[119c 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[119d 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc4203a1a00) start: > stop: > from 172.18.0.7:41490 -[119e 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[119f 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -[11a0 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -[11a1 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[11a2 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -[11a3 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc4203a1a00) for 172.18.0.7:41490 -[11a4 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41490 for (0xc4203a1a00) -[11a5 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41490 -[11a6 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41490 -[11a7 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[11a8 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[11a9 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[11aa 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[11ab 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[11ac 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84f8 gate 1527744217988661100 evaluation starts -[11ad 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 signed by 0 principal evaluation starts (used [false]) -[11ae 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[11af 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 principal matched by identity 0 -[11b0 05-31 05:23:37.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 da af d9 44 9a f1 0a d8 85 f0 0e d4 bd e6 f2 87 |...D............| -00000010 bf 88 36 76 89 a3 d7 e2 f3 6d 5d de eb 24 42 df |..6v.....m]..$B.| -[11b1 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 84 1f 45 88 1b 0f b2 cf 16 a8 db |0E.!...E........| -00000010 fe 2d ee 67 5f 79 94 47 c2 26 bf 8e 7e f4 68 af |.-.g_y.G.&..~.h.| -00000020 f6 44 f4 bd 2c 02 20 49 2b 88 c1 e5 fc 48 92 dd |.D..,. I+....H..| -00000030 86 e3 1c fc 83 ed 8b 11 1e 9e f0 b8 db 2d 61 90 |.............-a.| -00000040 27 1c 95 2a f7 19 45 |'..*..E| -[11b2 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4200b84f8 principal evaluation succeeds for identity 0 -[11b3 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4200b84f8 gate 1527744217988661100 evaluation succeeds -[11b4 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[11b5 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[11b6 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[11b7 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[11b8 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[11b9 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[11ba 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc42056af00) start: > stop: > from 172.18.0.7:41490 -[11bb 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[11bc 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[11bd 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24012], Going to peek [8] bytes -[11be 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[11bf 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[11c0 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc42056af00) for 172.18.0.7:41490 -[11c1 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41490 for (0xc42056af00) -[11c2 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41490 -[11c3 05-31 05:23:37.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41490 -[11c4 05-31 05:23:38.00 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41490: rpc error: code = Canceled desc = context canceled -[11c5 05-31 05:23:38.00 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[11c6 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[11c7 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41492 -[11c8 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41492 -[11c9 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[11ca 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[11cb 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[11cc 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[11cd 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[11ce 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1527744218134110100 evaluation starts -[11cf 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 signed by 0 principal evaluation starts (used [false]) -[11d0 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[11d1 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal matched by identity 0 -[11d2 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 c4 64 81 ff 1a fc d6 aa 13 fb 78 48 a0 81 fc 50 |.d........xH...P| -00000010 d2 fd 6d 63 a1 a3 5e 95 ac f6 5f 14 a7 2f e9 be |..mc..^..._../..| -[11d3 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 be 24 d0 b9 2b 99 d7 0d 94 6e f5 |0E.!..$..+....n.| -00000010 9f c1 68 fc 1c 58 dc 8e cf a5 df 36 34 bc d4 52 |..h..X.....64..R| -00000020 79 ff b6 ab e5 02 20 4c 35 ef 09 9a b8 00 76 34 |y..... L5.....v4| -00000030 55 6f 63 77 9d 8b 39 4d 5a d7 2f 8f 17 d1 63 a0 |Uocw..9MZ./...c.| -00000040 74 8b a7 85 84 a6 38 |t.....8| -[11d4 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e270 principal evaluation succeeds for identity 0 -[11d5 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e270 gate 1527744218134110100 evaluation succeeds -[11d6 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[11d7 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[11d8 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[11d9 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[11da 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[11db 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[11dc 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420254e80) start: > stop: > from 172.18.0.7:41492 -[11dd 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[11de 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] -[11df 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24012], Going to peek [8] bytes -[11e0 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} -[11e1 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] -[11e2 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420254e80) for 172.18.0.7:41492 -[11e3 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41492 for (0xc420254e80) -[11e4 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41492 -[11e5 05-31 05:23:38.13 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41492 -[11e6 05-31 05:23:38.14 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41492: rpc error: code = Canceled desc = context canceled -[11e7 05-31 05:23:38.14 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream -[11e8 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler -[11e9 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:41494 -[11ea 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41494 -[11eb 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == -[11ec 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[11ed 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == -[11ee 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign -[11ef 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == -[11f0 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2c0 gate 1527744218338055200 evaluation starts -[11f1 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c0 signed by 0 principal evaluation starts (used [false]) -[11f2 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a -[11f3 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c0 principal matched by identity 0 -[11f4 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 0d 28 87 04 f7 82 50 29 81 ff 54 99 fe 9b 4b 4c |.(....P)..T...KL| -00000010 63 4d 1c 84 11 c6 b1 44 a9 12 c4 55 bc 55 ec 64 |cM.....D...U.U.d| -[11f5 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 cb d6 a8 26 2b a4 ba 89 62 45 06 |0E.!....&+...bE.| -00000010 2b 2b 59 09 51 70 a5 3a 3a fb ad 54 29 a3 a9 b3 |++Y.Qp.::..T)...| -00000020 92 76 57 e4 b6 02 20 07 1c b7 ec bc dc 45 69 03 |.vW... ......Ei.| -00000030 e5 8d 68 71 2a 38 83 69 7a d1 e0 68 b4 4d 4d fa |..hq*8.iz..h.MM.| -00000040 36 c7 a2 67 e0 c0 82 |6..g...| -[11f6 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2c0 principal evaluation succeeds for identity 0 -[11f7 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2c0 gate 1527744218338055200 evaluation succeeds -[11f8 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers -[11f9 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers -[11fa 05-31 05:23:38.33 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers -[11fb 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers -[11fc 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers -[11fd 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers -[11fe 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420314340) start: > stop: > from 172.18.0.7:41494 -[11ff 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 -[1200 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] -[1201 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14858], Going to peek [8] bytes -[1202 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14856], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} -[1203 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14856] read from file [0] -[1204 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420314340) for 172.18.0.7:41494 -[1205 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:41494 for (0xc420314340) -[1206 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:41494 -[1207 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:41494 -[1208 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:41494: rpc error: code = Canceled desc = context canceled -[1209 05-31 05:23:38.34 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[d8a 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150100 gate 1528769772062494100 evaluation starts +[d8b 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150100 signed by 0 principal evaluation starts (used [false]) +[d8c 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150100 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[d8d 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150100 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[d8e 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150100 principal evaluation fails +[d8f 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150100 gate 1528769772062494100 evaluation fails +[d90 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[d91 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[d92 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[d93 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150158 gate 1528769772063733000 evaluation starts +[d94 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 signed by 0 principal evaluation starts (used [false]) +[d95 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[d96 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[d97 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150158 principal evaluation fails +[d98 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150158 gate 1528769772063733000 evaluation fails +[d99 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[d9a 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[d9b 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[d9c 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769772065529100 evaluation starts +[d9d 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 signed by 0 principal evaluation starts (used [false]) +[d9e 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[d9f 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[da0 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201502e8 principal evaluation fails +[da1 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201502e8 gate 1528769772065529100 evaluation fails +[da2 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[da3 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[da4 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[da5 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[da6 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[da7 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[da8 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[da9 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[daa 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150358 gate 1528769772067584000 evaluation starts +[dab 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 signed by 0 principal evaluation starts (used [false]) +[dac 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[dad 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13 -> DEBU Checking if identity satisfies MEMBER role for OrdererMSP +[dae 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.SatisfiesPrincipal.SatisfiesPrincipal.SatisfiesPrincipal.satisfiesPrincipalInternalPreV13)-fm.satisfiesPrincipalInternalPreV13.Validate -> DEBU MSP OrdererMSP validating identity +[daf 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 principal matched by identity 0 +[db0 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 77 31 f8 28 ed 61 80 0d fc af e4 29 40 b9 ba 1c |w1.(.a.....)@...| +00000010 b4 12 80 ed 1e ba 42 58 a7 2e 79 9e 82 10 11 3a |......BX..y....:| +[db1 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d1 50 c2 22 b7 56 0c b5 95 86 e4 |0E.!..P.".V.....| +00000010 ad 41 85 a6 b7 b3 2b 6e f1 df d4 f9 d4 ee 0d 4a |.A....+n.......J| +00000020 9e 91 e5 dd 41 02 20 2b 20 25 fe 7d c1 70 aa c9 |....A. + %.}.p..| +00000030 dc 26 9e 35 2d 06 63 21 41 8b 4d db 23 b8 08 96 |.&.5-.c!A.M.#...| +00000040 b9 4e 5e 19 81 d4 8b |.N^....| +[db2 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150358 principal evaluation succeeds for identity 0 +[db3 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150358 gate 1528769772067584000 evaluation succeeds +[db4 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[db5 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[db6 06-12 02:16:12.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[db7 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[db8 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[db9 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[dba 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c7f760) start: > stop: > from 172.18.0.7:35908 +[dbb 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[dbc 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +[dbd 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +[dbe 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +[dbf 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +[dc0 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c7f760) for 172.18.0.7:35908 +[dc1 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35908 for (0xc420c7f760) +[dc2 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35908 +[dc3 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35908 +[dc4 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[dc5 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[dc6 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[dc7 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[dc8 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35908: rpc error: code = Canceled desc = context canceled +[dc9 06-12 02:16:12.07 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[dca 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[dcb 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35910 +[dcc 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35910 +[dcd 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[dce 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[dcf 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[dd0 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[dd1 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[dd2 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1528769772208211500 evaluation starts +[dd3 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 signed by 0 principal evaluation starts (used [false]) +[dd4 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[dd5 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[dd6 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 principal evaluation fails +[dd7 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1528769772208211500 evaluation fails +[dd8 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[dd9 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[dda 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[ddb 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1528769772209854600 evaluation starts +[ddc 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) +[ddd 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[dde 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[ddf 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation fails +[de0 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1528769772209854600 evaluation fails +[de1 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[de2 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[de3 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[de4 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1528769772211422700 evaluation starts +[de5 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 signed by 0 principal evaluation starts (used [false]) +[de6 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[de7 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[de8 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e080 principal evaluation fails +[de9 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e080 gate 1528769772211422700 evaluation fails +[dea 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[deb 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[dec 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[ded 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[dee 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[def 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[df0 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[df1 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[df2 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e088 gate 1528769772213624900 evaluation starts +[df3 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e088 signed by 0 principal evaluation starts (used [false]) +[df4 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e088 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[df5 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e088 principal matched by identity 0 +[df6 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ab 9b 06 1f 86 71 19 2a d9 e4 61 12 9d a1 a9 41 |.....q.*..a....A| +00000010 b1 9c e4 11 9c 98 f3 50 52 48 ce 56 70 5e 89 8d |.......PRH.Vp^..| +[df7 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 5f bf 65 91 e2 2c 09 4f 3a 78 d2 7f |0D. _.e..,.O:x..| +00000010 45 d9 a7 5d 8c f9 18 e5 e8 05 dc 60 fa 41 ff 90 |E..].......`.A..| +00000020 c6 56 41 98 02 20 5f 9e 44 99 05 d8 14 64 de f3 |.VA.. _.D....d..| +00000030 f2 97 0d 42 fd 61 71 e3 83 af 82 54 16 26 81 06 |...B.aq....T.&..| +00000040 7e ef cb e6 ac 39 |~....9| +[df8 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e088 principal evaluation succeeds for identity 0 +[df9 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e088 gate 1528769772213624900 evaluation succeeds +[dfa 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[dfb 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[dfc 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[dfd 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[dfe 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[dff 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[e00 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420347ee0) start: > stop: > from 172.18.0.7:35910 +[e01 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[e02 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +[e03 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +[e04 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +[e05 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +[e06 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420347ee0) for 172.18.0.7:35910 +[e07 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35910 for (0xc420347ee0) +[e08 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35910 +[e0a 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35910 +[e09 06-12 02:16:12.21 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e0c 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e0d 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e0e 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e0b 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35910: rpc error: code = Canceled desc = context canceled +[e0f 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[e10 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e11 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35912 +[e12 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35912 +[e13 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[e14 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e15 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[e16 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e17 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[e18 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503e8 gate 1528769772737807100 evaluation starts +[e19 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 signed by 0 principal evaluation starts (used [false]) +[e1a 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e1b 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[e1c 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503e8 principal evaluation fails +[e1d 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503e8 gate 1528769772737807100 evaluation fails +[e1e 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[e1f 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[e20 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[e21 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503f0 gate 1528769772739425700 evaluation starts +[e22 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 signed by 0 principal evaluation starts (used [false]) +[e23 06-12 02:16:12.73 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e24 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[e25 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201503f0 principal evaluation fails +[e26 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201503f0 gate 1528769772739425700 evaluation fails +[e27 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[e28 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[e29 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[e2a 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150400 gate 1528769772741381400 evaluation starts +[e2b 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150400 signed by 0 principal evaluation starts (used [false]) +[e2c 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150400 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e2d 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150400 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[e2e 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150400 principal evaluation fails +[e2f 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150400 gate 1528769772741381400 evaluation fails +[e30 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[e31 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[e32 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] +[e33 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[e34 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[e35 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[e36 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e37 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[e38 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150408 gate 1528769772744659000 evaluation starts +[e39 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 signed by 0 principal evaluation starts (used [false]) +[e3a 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e3b 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 principal matched by identity 0 +[e3c 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 91 d4 1e 88 40 08 aa c6 7a 40 5a 6f 94 50 cc d2 |....@...z@Zo.P..| +00000010 76 3f 7f 2c 76 64 f4 57 53 09 f1 f4 7b 42 7e e5 |v?.,vd.WS...{B~.| +[e3d 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 e7 ee ab a0 1e fa 97 86 e2 ee 81 |0E.!............| +00000010 e9 49 0c dc 5b a6 58 0f 1c e6 7a 28 33 56 4e c1 |.I..[.X...z(3VN.| +00000020 29 d1 47 7f 86 02 20 19 2d 26 e3 02 2b 30 4b b5 |).G... .-&..+0K.| +00000030 80 e5 b2 74 be 2c b0 30 c3 d6 8f 21 e5 4c b9 d7 |...t.,.0...!.L..| +00000040 2d 84 2d b2 5c 00 5e |-.-.\.^| +[e3e 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 principal evaluation succeeds for identity 0 +[e3f 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150408 gate 1528769772744659000 evaluation succeeds +[e40 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[e41 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[e42 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[e43 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[e44 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[e45 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[e46 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420bd1700) start: > stop: > from 172.18.0.7:35912 +[e47 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[e48 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +[e49 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +[e4a 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +[e4b 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +[e4c 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420bd1700) for 172.18.0.7:35912 +[e4d 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35912 for (0xc420bd1700) +[e4e 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35912 +[e4f 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35912 +[e50 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e51 06-12 02:16:12.74 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e52 06-12 02:16:12.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e53 06-12 02:16:12.75 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e54 06-12 02:16:12.75 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35912: rpc error: code = Canceled desc = context canceled +[e55 06-12 02:16:12.75 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[e56 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[e57 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35914 +[e58 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35914 +[e59 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[e5a 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e5b 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[e5c 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e5d 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[e5e 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150480 gate 1528769772957020300 evaluation starts +[e5f 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150480 signed by 0 principal evaluation starts (used [false]) +[e60 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150480 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e61 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150480 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[e62 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150480 principal evaluation fails +[e63 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150480 gate 1528769772957020300 evaluation fails +[e64 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[e65 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[e66 06-12 02:16:12.95 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[e67 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150488 gate 1528769772960136200 evaluation starts +[e68 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150488 signed by 0 principal evaluation starts (used [false]) +[e69 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150488 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e6a 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150488 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[e6b 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150488 principal evaluation fails +[e6c 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150488 gate 1528769772960136200 evaluation fails +[e6d 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[e6e 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[e6f 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[e70 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150490 gate 1528769772962678400 evaluation starts +[e71 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150490 signed by 0 principal evaluation starts (used [false]) +[e72 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150490 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e73 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150490 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[e74 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150490 principal evaluation fails +[e75 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150490 gate 1528769772962678400 evaluation fails +[e76 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[e77 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[e78 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] +[e79 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[e7a 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[e7b 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[e7c 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e7d 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[e7e 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150498 gate 1528769772966123600 evaluation starts +[e7f 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 signed by 0 principal evaluation starts (used [false]) +[e80 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[e81 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 principal matched by identity 0 +[e82 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 4b c1 f3 5b 1e 36 e9 76 31 fe 64 8e de 83 f6 d9 |K..[.6.v1.d.....| +00000010 5c 9c d7 c7 a5 9e 3a 90 75 d6 9f 01 dd 32 3f 69 |\.....:.u....2?i| +[e83 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 6e 23 69 15 fe 6f 4f ae 45 c5 2a 71 |0D. n#i..oO.E.*q| +00000010 45 70 a3 6c c7 76 0c 10 76 6e fe a4 d9 83 92 5e |Ep.l.v..vn.....^| +00000020 19 0e 2a d0 02 20 52 d4 0c 68 13 f4 1c 3f 28 cf |..*.. R..h...?(.| +00000030 10 5b 9a 87 1f 96 3b a2 7d d8 29 51 af d2 f5 c6 |.[....;.}.)Q....| +00000040 d5 a8 cf 2e 7b c0 |....{.| +[e84 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150498 principal evaluation succeeds for identity 0 +[e85 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150498 gate 1528769772966123600 evaluation succeeds +[e86 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[e87 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[e88 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[e89 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[e8a 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[e8b 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[e8c 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c0b220) start: > stop: > from 172.18.0.7:35914 +[e8d 06-12 02:16:12.96 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[e8e 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +[e8f 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +[e90 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +[e91 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +[e92 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0b220) for 172.18.0.7:35914 +[e93 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35914 for (0xc420c0b220) +[e95 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e96 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e94 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35914 +[e98 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35914 +[e97 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[e99 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[e9a 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[e9b 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e9c 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[e9d 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[e9e 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[e9f 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504d0 gate 1528769772974884400 evaluation starts +[ea0 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d0 signed by 0 principal evaluation starts (used [false]) +[ea1 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[ea2 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[ea3 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d0 principal evaluation fails +[ea4 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504d0 gate 1528769772974884400 evaluation fails +[ea5 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[ea6 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[ea7 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[ea8 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504d8 gate 1528769772977489700 evaluation starts +[ea9 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d8 signed by 0 principal evaluation starts (used [false]) +[eaa 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[eab 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[eac 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504d8 principal evaluation fails +[ead 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504d8 gate 1528769772977489700 evaluation fails +[eae 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[eaf 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[eb0 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[eb1 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504e8 gate 1528769772979433400 evaluation starts +[eb2 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 signed by 0 principal evaluation starts (used [false]) +[eb3 06-12 02:16:12.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[eb4 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[eb5 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504e8 principal evaluation fails +[eb6 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504e8 gate 1528769772979433400 evaluation fails +[eb7 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[eb8 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[eb9 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[eba 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[ebb 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[ebc 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[ebd 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ebe 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[ebf 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504f0 gate 1528769772982224400 evaluation starts +[ec0 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504f0 signed by 0 principal evaluation starts (used [false]) +[ec1 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[ec2 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504f0 principal matched by identity 0 +[ec3 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 70 f1 12 d6 0b 9a f8 ce 10 39 b9 e0 08 16 5f a2 |p........9...._.| +00000010 7f f3 8e 4b ef 7a 01 0b 37 ad da 26 01 8a 8e 7e |...K.z..7..&...~| +[ec4 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 4c 09 d5 71 8e 4b 42 ac e1 1d 91 3d |0D. L..q.KB....=| +00000010 59 97 ef 00 f8 2b 1e 62 54 f5 28 91 06 b1 87 c1 |Y....+.bT.(.....| +00000020 b1 5b 62 e6 02 20 25 96 87 20 0c bd fc 7a 2d 66 |.[b.. %.. ...z-f| +00000030 c4 34 04 a5 ab ae ca 95 41 b3 2e 0d 76 3b bc b4 |.4......A...v;..| +00000040 ab d3 b1 a6 b4 b0 |......| +[ec5 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201504f0 principal evaluation succeeds for identity 0 +[ec6 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201504f0 gate 1528769772982224400 evaluation succeeds +[ec7 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[ec8 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[ec9 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[eca 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[ecb 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[ecc 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[ecd 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202b2880) start: > stop: > from 172.18.0.7:35914 +[ece 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[ecf 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +[ed0 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +[ed1 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +[ed2 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +[ed3 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202b2880) for 172.18.0.7:35914 +[ed4 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35914 for (0xc4202b2880) +[ed5 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35914 +[ed7 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[ed8 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[ed9 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[eda 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[ed6 06-12 02:16:12.98 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35914 +[edb 06-12 02:16:12.99 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35914: rpc error: code = Canceled desc = context canceled +[edc 06-12 02:16:12.99 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[edd 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[ede 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35916 +[edf 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35916 +[ee0 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[ee1 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ee2 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[ee3 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ee4 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[ee5 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769773107732700 evaluation starts +[ee6 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 signed by 0 principal evaluation starts (used [false]) +[ee7 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[ee8 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[ee9 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal evaluation fails +[eea 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769773107732700 evaluation fails +[eeb 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[eec 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[eed 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[eee 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e100 gate 1528769773109653200 evaluation starts +[eef 06-12 02:16:13.10 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e100 signed by 0 principal evaluation starts (used [false]) +[ef0 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e100 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[ef1 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e100 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[ef2 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e100 principal evaluation fails +[ef3 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e100 gate 1528769773109653200 evaluation fails +[ef4 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[ef5 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[ef6 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[ef7 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e108 gate 1528769773111534700 evaluation starts +[ef8 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e108 signed by 0 principal evaluation starts (used [false]) +[ef9 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e108 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[efa 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e108 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[efb 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e108 principal evaluation fails +[efc 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e108 gate 1528769773111534700 evaluation fails +[efd 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[efe 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[eff 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[f00 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[f01 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[f02 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[f03 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[f04 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[f05 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e110 gate 1528769773115927300 evaluation starts +[f06 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e110 signed by 0 principal evaluation starts (used [false]) +[f07 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e110 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f08 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e110 principal matched by identity 0 +[f09 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 e1 a2 5f 9d 79 ad 62 17 9b 28 02 5b 6a 0d 75 17 |.._.y.b..(.[j.u.| +00000010 b6 96 b9 d5 06 ce 25 30 46 11 eb ef b2 b4 38 03 |......%0F.....8.| +[f0a 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 58 91 68 ac f4 76 e9 85 54 53 e2 4e |0D. X.h..v..TS.N| +00000010 e8 f9 23 d2 2b 66 19 1d 89 da e8 c8 17 9f c9 77 |..#.+f.........w| +00000020 6f 86 d0 0c 02 20 31 b5 56 7a 9f d1 92 c1 a2 3b |o.... 1.Vz.....;| +00000030 1c c0 83 44 dd 1b 8e 56 c7 36 37 92 b8 1d 91 16 |...D...V.67.....| +00000040 46 36 f6 fa 3f 19 |F6..?.| +[f0b 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e110 principal evaluation succeeds for identity 0 +[f0c 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e110 gate 1528769773115927300 evaluation succeeds +[f0d 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[f0e 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[f0f 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[f10 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[f11 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[f12 06-12 02:16:13.11 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[f13 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420519a40) start: > stop: > from 172.18.0.7:35916 +[f14 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[f15 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[0] +[f16 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[81564], Going to peek [8] bytes +[f17 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[12119], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[f18 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [12119] read from file [0] +[f19 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420519a40) for 172.18.0.7:35916 +[f1a 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35916 for (0xc420519a40) +[f1b 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35916 +[f1c 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35916 +[f1d 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[f1e 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[f1f 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[f20 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[f21 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35916: rpc error: code = Canceled desc = context canceled +[f22 06-12 02:16:13.12 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[f23 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[f24 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35918 +[f25 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35918 +[f26 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[f27 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[f28 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[f29 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[f2a 06-12 02:16:13.26 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[f2b 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150560 gate 1528769773270065300 evaluation starts +[f2c 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150560 signed by 0 principal evaluation starts (used [false]) +[f2d 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150560 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f2e 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150560 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[f2f 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150560 principal evaluation fails +[f30 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150560 gate 1528769773270065300 evaluation fails +[f31 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[f32 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[f33 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[f34 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150568 gate 1528769773272534900 evaluation starts +[f35 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150568 signed by 0 principal evaluation starts (used [false]) +[f36 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150568 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f37 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150568 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[f38 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150568 principal evaluation fails +[f39 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150568 gate 1528769773272534900 evaluation fails +[f3a 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[f3b 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[f3c 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[f3d 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150570 gate 1528769773274270100 evaluation starts +[f3e 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150570 signed by 0 principal evaluation starts (used [false]) +[f3f 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150570 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f40 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150570 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[f41 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150570 principal evaluation fails +[f42 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150570 gate 1528769773274270100 evaluation fails +[f43 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[f44 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[f45 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[f46 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[f47 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[f48 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[f49 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[f4a 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[f4b 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150578 gate 1528769773277085800 evaluation starts +[f4c 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150578 signed by 0 principal evaluation starts (used [false]) +[f4d 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150578 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f4e 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150578 principal matched by identity 0 +[f4f 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 32 86 25 86 3a 2a 41 61 65 3b bd 72 29 12 2f 9d |2.%.:*Aae;.r)./.| +00000010 03 36 07 db 68 f0 6d 8e ce 3a 47 69 3c 4f 51 a3 |.6..h.m..:Gi DEBU Verify: sig = 00000000 30 45 02 21 00 d1 5f 1b 53 0c 99 c0 62 b8 17 bb |0E.!.._.S...b...| +00000010 36 5b 41 f0 ee 23 05 ea 60 e2 21 67 88 72 f5 2c |6[A..#..`.!g.r.,| +00000020 31 07 da 43 df 02 20 24 49 8b a0 cd ea a2 18 76 |1..C.. $I......v| +00000030 a2 ec 6e 2c 9d f5 bd 52 e3 03 56 a2 fb 30 71 b3 |..n,...R..V..0q.| +00000040 14 a0 e2 6f 84 28 84 |...o.(.| +[f51 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150578 principal evaluation succeeds for identity 0 +[f52 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150578 gate 1528769773277085800 evaluation succeeds +[f53 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[f54 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[f55 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[f56 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[f57 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[f58 06-12 02:16:13.27 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[f59 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4201e14c0) start: > stop: > from 172.18.0.7:35918 +[f5a 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[f5b 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[12121] +[f5c 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[69443], Going to peek [8] bytes +[f5d 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[13956], placementInfo={fileNum=[0], startOffset=[12121], bytesOffset=[12123]} +[f5e 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [13956] read from file [0] +[f5f 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4201e14c0) for 172.18.0.7:35918 +[f60 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35918 for (0xc4201e14c0) +[f61 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35918 +[f62 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35918 +[f63 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[f64 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[f65 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[f66 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[f67 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35918: rpc error: code = Canceled desc = context canceled +[f68 06-12 02:16:13.28 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[f69 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[f6a 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35920 +[f6b 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35920 +[f6c 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[f6d 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[f6e 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[f6f 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[f70 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[f71 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505c8 gate 1528769773469846200 evaluation starts +[f72 06-12 02:16:13.46 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505c8 signed by 0 principal evaluation starts (used [false]) +[f73 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505c8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f74 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505c8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[f75 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505c8 principal evaluation fails +[f76 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505c8 gate 1528769773469846200 evaluation fails +[f77 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[f78 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[f79 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[f7a 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505d0 gate 1528769773471428200 evaluation starts +[f7b 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d0 signed by 0 principal evaluation starts (used [false]) +[f7c 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f7d 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[f7e 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d0 principal evaluation fails +[f7f 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505d0 gate 1528769773471428200 evaluation fails +[f80 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[f81 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[f82 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[f83 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505d8 gate 1528769773473644600 evaluation starts +[f84 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d8 signed by 0 principal evaluation starts (used [false]) +[f85 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f86 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[f87 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505d8 principal evaluation fails +[f88 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505d8 gate 1528769773473644600 evaluation fails +[f89 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[f8a 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[f8b 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[f8c 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[f8d 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[f8e 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[f8f 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[f90 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[f91 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505e8 gate 1528769773476669500 evaluation starts +[f92 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505e8 signed by 0 principal evaluation starts (used [false]) +[f93 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[f94 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505e8 principal matched by identity 0 +[f95 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 97 73 57 ae 8f 7e 69 ba 34 ea e8 61 aa 09 23 1f |.sW..~i.4..a..#.| +00000010 e6 8d 25 88 74 cc 75 63 9f f3 24 bd 3a 00 3f c6 |..%.t.uc..$.:.?.| +[f96 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 8f 24 0e 82 56 ce a5 17 32 6a 61 |0D. ".$..V...2ja| +00000010 a8 bf ce 8c 7e 28 2d a1 f2 d8 02 9c cc 71 e2 11 |....~(-......q..| +00000020 71 f8 b5 1e 02 20 32 d0 cb 0a 5a 1a 09 71 65 2b |q.... 2...Z..qe+| +00000030 1e f6 c0 7e 0f 12 bc bf de 34 23 c8 5a ca fd 2c |...~.....4#.Z..,| +00000040 11 0d 33 30 d5 7d |..30.}| +[f97 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc4201505e8 principal evaluation succeeds for identity 0 +[f98 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc4201505e8 gate 1528769773476669500 evaluation succeeds +[f99 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[f9a 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[f9b 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[f9c 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[f9d 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[f9e 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[f9f 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4203ec340) start: > stop: > from 172.18.0.7:35920 +[fa0 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[fa1 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[26079] +[fa2 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[55485], Going to peek [8] bytes +[fa3 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26079], bytesOffset=[26081]} +[fa4 06-12 02:16:13.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14014] read from file [0] +[fa5 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4203ec340) for 172.18.0.7:35920 +[fa6 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35920 for (0xc4203ec340) +[fa7 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35920 +[fa8 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35920 +[fa9 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[faa 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[fab 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[fac 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[fad 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35920: rpc error: code = Canceled desc = context canceled +[fae 06-12 02:16:13.48 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[faf 06-12 02:16:13.61 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[fb0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35922 +[fb1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35922 +[fb2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[fb3 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[fb4 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[fb5 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[fb6 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[fb7 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e060 gate 1528769773620888200 evaluation starts +[fb8 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e060 signed by 0 principal evaluation starts (used [false]) +[fb9 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e060 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[fba 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e060 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[fbb 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e060 principal evaluation fails +[fbc 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e060 gate 1528769773620888200 evaluation fails +[fbd 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[fbe 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[fbf 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[fc0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1528769773621806800 evaluation starts +[fc1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 signed by 0 principal evaluation starts (used [false]) +[fc2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[fc3 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[fc4 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e068 principal evaluation fails +[fc5 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e068 gate 1528769773621806800 evaluation fails +[fc6 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[fc7 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[fc8 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[fc9 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1528769773622529100 evaluation starts +[fca 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 signed by 0 principal evaluation starts (used [false]) +[fcb 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[fcc 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[fcd 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e070 principal evaluation fails +[fce 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e070 gate 1528769773622529100 evaluation fails +[fcf 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[fd0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[fd1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[fd2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[fd3 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[fd4 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[fd5 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[fd6 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[fd7 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1528769773624605700 evaluation starts +[fd8 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 signed by 0 principal evaluation starts (used [false]) +[fd9 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[fda 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal matched by identity 0 +[fdb 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 09 b6 49 3a e6 50 5d 97 c4 bf e5 da 00 62 fc 7e |..I:.P]......b.~| +00000010 bf 4c 6b d1 70 7f 7a 58 34 b5 4d d4 a3 97 19 db |.Lk.p.zX4.M.....| +[fdc 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 0b 11 92 26 8f 34 45 50 8c 72 a7 ae |0D. ...&.4EP.r..| +00000010 4a 2c 78 07 12 fd dd 23 ef b2 cf 1c df 98 6e 18 |J,x....#......n.| +00000020 8b 55 31 46 02 20 16 bd f4 a5 81 3b ac 18 30 15 |.U1F. .....;..0.| +00000030 d4 24 5c d1 b5 61 0b ac e7 30 2c e9 da aa 34 cc |.$\..a...0,...4.| +00000040 44 61 d6 c2 6b 0b |Da..k.| +[fdd 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e078 principal evaluation succeeds for identity 0 +[fde 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e078 gate 1528769773624605700 evaluation succeeds +[fdf 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[fe0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[fe1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[fe2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[fe3 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[fe4 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[fe5 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4200b7b60) start: > stop: > from 172.18.0.7:35922 +[fe6 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[fe7 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[40095] +[fe8 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[41469], Going to peek [8] bytes +[fe9 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5322], placementInfo={fileNum=[0], startOffset=[40095], bytesOffset=[40097]} +[fea 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5322] read from file [0] +[feb 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4200b7b60) for 172.18.0.7:35922 +[fec 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35922 for (0xc4200b7b60) +[fed 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35922 +[fee 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35922 +[fef 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[ff0 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[ff1 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[ff2 06-12 02:16:13.62 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[ff3 06-12 02:16:13.63 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35922: rpc error: code = Canceled desc = context canceled +[ff4 06-12 02:16:13.63 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[ff5 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[ff6 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35924 +[ff7 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35924 +[ff8 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[ff9 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ffa 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[ffb 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[ffc 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[ffd 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0e0 gate 1528769773766069600 evaluation starts +[ffe 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e0 signed by 0 principal evaluation starts (used [false]) +[fff 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1000 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[1001 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e0 principal evaluation fails +[1002 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0e0 gate 1528769773766069600 evaluation fails +[1003 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[1004 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[1005 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[1006 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0e8 gate 1528769773768210800 evaluation starts +[1007 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e8 signed by 0 principal evaluation starts (used [false]) +[1008 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1009 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[100a 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0e8 principal evaluation fails +[100b 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0e8 gate 1528769773768210800 evaluation fails +[100c 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[100d 06-12 02:16:13.76 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[100e 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[100f 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f0 gate 1528769773770252900 evaluation starts +[1010 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f0 signed by 0 principal evaluation starts (used [false]) +[1011 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1012 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[1013 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f0 principal evaluation fails +[1014 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f0 gate 1528769773770252900 evaluation fails +[1015 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[1016 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[1017 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[1018 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[1019 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[101a 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[101b 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[101c 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[101d 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769773773162100 evaluation starts +[101e 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 signed by 0 principal evaluation starts (used [false]) +[101f 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1020 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal matched by identity 0 +[1021 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 18 77 37 9b 56 34 da 8d 8b 8c 34 e4 21 d5 5f 25 |.w7.V4....4.!._%| +00000010 13 46 17 f7 e0 57 e8 ee 0f da 0c 59 bc 62 37 21 |.F...W.....Y.b7!| +[1022 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 7d 9f e8 36 5b 95 ed da b3 22 d2 c3 |0D. }..6[...."..| +00000010 41 98 37 4b 22 44 ad b7 c5 e6 e9 0c cf 68 47 32 |A.7K"D.......hG2| +00000020 b4 0f c7 bc 02 20 74 48 d2 dc 32 aa b8 f3 3a 8b |..... tH..2...:.| +00000030 fc ce 4a e4 06 de 4e 43 6b c5 a2 64 cc c7 5b ad |..J...NCk..d..[.| +00000040 12 71 40 bf f0 2d |.q@..-| +[1023 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e0f8 principal evaluation succeeds for identity 0 +[1024 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e0f8 gate 1528769773773162100 evaluation succeeds +[1025 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[1026 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[1027 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[1028 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[1029 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[102a 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[102b 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420347540) start: > stop: > from 172.18.0.7:35924 +[102c 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[102d 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[45419] +[102e 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[36145], Going to peek [8] bytes +[102f 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[5321], placementInfo={fileNum=[0], startOffset=[45419], bytesOffset=[45421]} +[1030 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [5321] read from file [0] +[1031 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420347540) for 172.18.0.7:35924 +[1032 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35924 for (0xc420347540) +[1033 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35924 +[1034 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35924 +[1035 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[1036 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[1037 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[1038 06-12 02:16:13.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[1039 06-12 02:16:13.78 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35924: rpc error: code = Canceled desc = context canceled +[103a 06-12 02:16:13.78 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[103b 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[103c 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35926 +[103d 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35926 +[103e 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[103f 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1040 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[1041 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1042 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[1043 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e160 gate 1528769773917784900 evaluation starts +[1044 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e160 signed by 0 principal evaluation starts (used [false]) +[1045 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e160 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1046 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e160 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[1047 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e160 principal evaluation fails +[1048 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e160 gate 1528769773917784900 evaluation fails +[1049 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[104a 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[104b 06-12 02:16:13.91 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[104c 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e168 gate 1528769773920062300 evaluation starts +[104d 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e168 signed by 0 principal evaluation starts (used [false]) +[104e 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e168 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[104f 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e168 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[1050 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e168 principal evaluation fails +[1051 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e168 gate 1528769773920062300 evaluation fails +[1052 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[1053 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[1054 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[1055 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e170 gate 1528769773922082900 evaluation starts +[1056 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e170 signed by 0 principal evaluation starts (used [false]) +[1057 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e170 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1058 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e170 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[1059 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e170 principal evaluation fails +[105a 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e170 gate 1528769773922082900 evaluation fails +[105b 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[105c 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[105d 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org2MSP.Readers Org3MSP.Readers Org1MSP.Readers ] +[105e 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[105f 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[1060 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[1061 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1062 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[1063 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e178 gate 1528769773925181900 evaluation starts +[1064 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e178 signed by 0 principal evaluation starts (used [false]) +[1065 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e178 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1066 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e178 principal matched by identity 0 +[1067 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 55 ee fa 97 47 11 81 10 2d ac 27 59 04 6c 30 1e |U...G...-.'Y.l0.| +00000010 b5 2c ad 63 df 94 c1 87 24 ab 53 6d 01 d0 b5 47 |.,.c....$.Sm...G| +[1068 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 34 8d 46 6d d0 19 7a 4b 60 d8 f6 a4 |0D. 4.Fm..zK`...| +00000010 dd 29 4e d0 32 af 46 d5 05 7a d0 da 28 1a 12 1a |.)N.2.F..z..(...| +00000020 d9 55 7d e6 02 20 65 a6 f1 8c 70 49 7b e4 d8 e1 |.U}.. e...pI{...| +00000030 4d f5 6e 88 0b a3 a1 e0 2b 99 a9 ff e9 eb ac be |M.n.....+.......| +00000040 c2 64 6f e0 28 c9 |.do.(.| +[1069 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e178 principal evaluation succeeds for identity 0 +[106a 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e178 gate 1528769773925181900 evaluation succeeds +[106b 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[106c 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[106d 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[106e 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[106f 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[1070 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[1071 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc4202b2860) start: > stop: > from 172.18.0.7:35926 +[1072 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[1073 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[50742] +[1074 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[30822], Going to peek [8] bytes +[1075 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4783], placementInfo={fileNum=[0], startOffset=[50742], bytesOffset=[50744]} +[1076 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4783] read from file [0] +[1077 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc4202b2860) for 172.18.0.7:35926 +[1078 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35926 for (0xc4202b2860) +[1079 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35926 +[107b 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[107c 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[107d 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[107e 06-12 02:16:13.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[107a 06-12 02:16:13.92 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35926 +[107f 06-12 02:16:13.93 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35926: rpc error: code = Canceled desc = context canceled +[1080 06-12 02:16:13.93 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[1081 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[1082 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35928 +[1083 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35928 +[1084 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[1085 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1086 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[1087 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1088 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[1089 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769774069037700 evaluation starts +[108a 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 signed by 0 principal evaluation starts (used [false]) +[108b 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[108c 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[108d 06-12 02:16:14.06 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1d8 principal evaluation fails +[108e 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1d8 gate 1528769774069037700 evaluation fails +[108f 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[1090 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[1091 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[1092 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1528769774070836700 evaluation starts +[1093 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 signed by 0 principal evaluation starts (used [false]) +[1094 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1095 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[1096 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e0 principal evaluation fails +[1097 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e0 gate 1528769774070836700 evaluation fails +[1098 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[1099 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[109a 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[109b 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1528769774072741700 evaluation starts +[109c 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 signed by 0 principal evaluation starts (used [false]) +[109d 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[109e 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[109f 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1e8 principal evaluation fails +[10a0 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1e8 gate 1528769774072741700 evaluation fails +[10a1 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[10a2 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[10a3 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org1MSP.Readers Org2MSP.Readers Org3MSP.Readers ] +[10a4 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[10a5 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[10a6 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[10a7 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[10a8 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[10a9 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1528769774075328700 evaluation starts +[10aa 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 signed by 0 principal evaluation starts (used [false]) +[10ab 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[10ac 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal matched by identity 0 +[10ad 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 85 4f 01 cf fa 6b d0 be 73 bd a5 69 5d 9a 5c ae |.O...k..s..i].\.| +00000010 63 3b e8 e0 4f 30 cb 66 bc be 03 45 a1 ce 43 ff |c;..O0.f...E..C.| +[10ae 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a2 0a d7 7a be 87 8c ac 50 65 6a |0E.!....z....Pej| +00000010 a1 77 c7 b3 2e f3 92 4a d7 ce 3a 63 f3 6e a0 5e |.w.....J..:c.n.^| +00000020 b7 4c 88 e2 ba 02 20 45 28 50 6c 17 59 dd 35 b8 |.L.... E(Pl.Y.5.| +00000030 fb 72 ab 3e c0 30 05 ad 56 e9 95 c2 31 8b 90 22 |.r.>.0..V...1.."| +00000040 03 2b 27 66 3b b6 93 |.+'f;..| +[10af 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e1f0 principal evaluation succeeds for identity 0 +[10b0 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e1f0 gate 1528769774075328700 evaluation succeeds +[10b1 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[10b2 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[10b3 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[10b4 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[10b5 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[10b6 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[10b7 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c0a2e0) start: > stop: > from 172.18.0.7:35928 +[10b8 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[10b9 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[55527] +[10ba 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[26037], Going to peek [8] bytes +[10bb 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[4777], placementInfo={fileNum=[0], startOffset=[55527], bytesOffset=[55529]} +[10bc 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [4777] read from file [0] +[10bd 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0a2e0) for 172.18.0.7:35928 +[10be 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35928 for (0xc420c0a2e0) +[10bf 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35928 +[10c0 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35928 +[10c1 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[10c2 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[10c3 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[10c4 06-12 02:16:14.07 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[10c5 06-12 02:16:14.08 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35928: rpc error: code = Canceled desc = context canceled +[10c6 06-12 02:16:14.08 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[10c7 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[10c8 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35930 +[10c9 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35930 +[10ca 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[10cb 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[10cc 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers == +[10cd 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[10ce 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers == +[10cf 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e240 gate 1528769774235307800 evaluation starts +[10d0 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e240 signed by 0 principal evaluation starts (used [false]) +[10d1 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e240 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[10d2 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e240 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org3MSP, got OrdererMSP) +[10d3 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e240 principal evaluation fails +[10d4 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e240 gate 1528769774235307800 evaluation fails +[10d5 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org3MSP/Readers +[10d6 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org3MSP/Readers +[10d7 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers == +[10d8 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1528769774237370700 evaluation starts +[10d9 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 signed by 0 principal evaluation starts (used [false]) +[10da 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[10db 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org1MSP, got OrdererMSP) +[10dc 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e248 principal evaluation fails +[10dd 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e248 gate 1528769774237370700 evaluation fails +[10de 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org1MSP/Readers +[10df 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org1MSP/Readers +[10e0 06-12 02:16:14.23 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers == +[10e1 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1528769774239998300 evaluation starts +[10e2 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 signed by 0 principal evaluation starts (used [false]) +[10e3 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[10e4 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 identity 0 does not satisfy principal: the identity is a member of a different MSP (expected Org2MSP, got OrdererMSP) +[10e5 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e250 principal evaluation fails +[10e6 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e250 gate 1528769774239998300 evaluation fails +[10e7 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Org2MSP/Readers +[10e8 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Application/Org2MSP/Readers +[10e9 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU Evaluation Failed: Only 0 policies were satisfied, but needed 1 of [ Org3MSP.Readers Org1MSP.Readers Org2MSP.Readers ] +[10ea 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set did not satisfy policy /Channel/Application/Readers +[10eb 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Application/Readers +[10ec 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[10ed 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[10ee 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[10ef 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1528769774242849400 evaluation starts +[10f0 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 signed by 0 principal evaluation starts (used [false]) +[10f1 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[10f2 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal matched by identity 0 +[10f3 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 03 26 80 13 cc b2 5c 9a db c9 03 bc a5 6e 5d 59 |.&....\......n]Y| +00000010 9c 7f 3e 61 1c 22 71 ab 2b 80 e3 98 11 c3 87 5d |..>a."q.+......]| +[10f4 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 43 02 1f 2e 1a 61 6c 74 6e ec 20 c7 70 a3 8f |0C....altn. .p..| +00000010 1d a1 6e 7d a3 93 84 09 8b 75 44 0f 51 2d 53 e3 |..n}.....uD.Q-S.| +00000020 ba f0 4d 02 20 40 78 28 b4 1f 07 4e 7a f8 3d 8a |..M. @x(...Nz.=.| +00000030 81 ce 16 51 a0 f9 f1 95 e2 28 4a b4 41 19 ef 97 |...Q.....(J.A...| +00000040 0e 05 b4 4b a6 |...K.| +[10f5 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e258 principal evaluation succeeds for identity 0 +[10f6 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e258 gate 1528769774242849400 evaluation succeeds +[10f7 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[10f8 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[10f9 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[10fa 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[10fb 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[10fc 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[10fd 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Received seekInfo (0xc420c0b7a0) start: > stop: > from 172.18.0.7:35930 +[10fe 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=7 +[10ff 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/businesschannel/blockfile_000000], startOffset=[60306] +[1100 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[21258], Going to peek [8] bytes +[1101 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[21255], placementInfo={fileNum=[0], startOffset=[60306], bytesOffset=[60309]} +[1102 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [21255] read from file [0] +[1103 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Delivering block for (0xc420c0b7a0) for 172.18.0.7:35930 +[1104 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: businesschannel] Done delivering to 172.18.0.7:35930 for (0xc420c0b7a0) +[1105 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35930 +[1106 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35930 +[1107 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[1108 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[1109 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Came out of wait. maxAvailaBlockNumber=[7] +[110a 06-12 02:16:14.24 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.waitForBlock -> DEBU Going to wait for newer blocks. maxAvailaBlockNumber=[7], waitForBlockNum=[8] +[110b 06-12 02:16:14.25 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35930: rpc error: code = Canceled desc = context canceled +[110c 06-12 02:16:14.25 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[110d 06-12 02:16:14.38 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[110e 06-12 02:16:14.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35932 +[110f 06-12 02:16:14.38 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35932 +[1110 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[1111 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1112 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[1113 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1114 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[1115 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d0 gate 1528769774390524000 evaluation starts +[1116 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 signed by 0 principal evaluation starts (used [false]) +[1117 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1118 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 principal matched by identity 0 +[1119 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 ec 3c e2 7e 29 25 6a 80 c0 7f c6 6c b2 b5 3f 58 |.<.~)%j....l..?X| +00000010 2a bd e6 f8 54 e7 ed ce 9a e1 25 4b 05 07 ae 12 |*...T.....%K....| +[111a 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 a1 3b 97 01 ec 28 f4 11 0a 33 34 |0E.!..;...(...34| +00000010 32 6d 54 a9 b8 20 33 e1 32 e1 a6 28 04 c8 28 41 |2mT.. 3.2..(..(A| +00000020 5e f8 fd 3a f2 02 20 4b 17 1d bc 89 aa 44 e4 66 |^..:.. K.....D.f| +00000030 69 e8 89 cd 71 b4 75 86 f0 d2 77 a5 42 0e 6b 60 |i...q.u...w.B.k`| +00000040 16 51 71 43 2b 52 32 |.QqC+R2| +[111b 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e2d0 principal evaluation succeeds for identity 0 +[111c 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e2d0 gate 1528769774390524000 evaluation succeeds +[111d 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[111e 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[111f 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[1120 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[1121 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[1122 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[1123 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420518c20) start: > stop: > from 172.18.0.7:35932 +[1124 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[1125 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +[1126 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +[1127 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[1128 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +[1129 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420518c20) for 172.18.0.7:35932 +[112a 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35932 for (0xc420518c20) +[112b 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35932 +[112c 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35932 +[112d 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35932: rpc error: code = Canceled desc = context canceled +[112e 06-12 02:16:14.39 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[112f 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[1130 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35934 +[1131 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35934 +[1132 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[1133 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1134 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[1135 06-12 02:16:14.53 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1136 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[1137 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150408 gate 1528769774540551400 evaluation starts +[1138 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 signed by 0 principal evaluation starts (used [false]) +[1139 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[113a 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 principal matched by identity 0 +[113b 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 96 f9 9b 89 5d 4b 29 99 27 d0 1a a5 53 e3 44 24 |....]K).'...S.D$| +00000010 c4 49 9b 69 f8 69 06 95 a1 0d 8a ed f3 a5 d5 6f |.I.i.i.........o| +[113c 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 22 04 14 fb f9 c5 7c ec d7 73 2f 01 |0D. ".....|..s/.| +00000010 c8 56 4d 45 df 8d 18 68 3a 63 55 45 29 65 a1 dd |.VME...h:cUE)e..| +00000020 18 a6 9e d4 02 20 7f b3 c8 6d 0a 4e 09 02 5d 50 |..... ...m.N..]P| +00000030 23 39 f3 d1 09 7e ae f4 86 7d 99 4b fa 7f dd 1e |#9...~...}.K....| +00000040 81 a7 8a 77 9e 81 |...w..| +[113d 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150408 principal evaluation succeeds for identity 0 +[113e 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150408 gate 1528769774540551400 evaluation succeeds +[113f 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[1140 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[1141 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[1142 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[1143 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[1144 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[1145 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420bd0a80) start: > stop: > from 172.18.0.7:35934 +[1146 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[1147 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +[1148 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +[1149 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[114a 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +[114b 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420bd0a80) for 172.18.0.7:35934 +[114c 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35934 for (0xc420bd0a80) +[114d 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35934 +[114e 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35934 +[114f 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[1150 06-12 02:16:14.54 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1151 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[1152 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1153 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[1154 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150450 gate 1528769774550591000 evaluation starts +[1155 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150450 signed by 0 principal evaluation starts (used [false]) +[1156 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150450 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1157 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150450 principal matched by identity 0 +[1158 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 22 c7 f8 47 07 91 3e 6c 6f f0 db 9f 98 aa d2 87 |"..G..>lo.......| +00000010 4f d8 51 75 b3 09 75 00 4c b6 5c 2e 8c 7b 0e 0a |O.Qu..u.L.\..{..| +[1159 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 d4 cf 51 95 a0 db 05 d2 a6 e7 33 |0E.!...Q.......3| +00000010 ab c4 da f5 2c a3 17 a6 51 5c ce 49 be c3 7b a4 |....,...Q\.I..{.| +00000020 a6 c2 9a 16 f3 02 20 06 33 95 2d e8 d2 4a b5 4d |...... .3.-..J.M| +00000030 c4 dc f0 9f 7b 1b b6 ff 4d c3 32 a9 95 c5 99 d2 |....{...M.2.....| +00000040 33 43 9a 78 8a f1 dc |3C.x...| +[115a 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc420150450 principal evaluation succeeds for identity 0 +[115b 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc420150450 gate 1528769774550591000 evaluation succeeds +[115c 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[115d 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[115e 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[115f 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[1160 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[1161 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[1162 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420bd1c40) start: > stop: > from 172.18.0.7:35934 +[1163 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[1164 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[1165 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24013], Going to peek [8] bytes +[1166 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[1167 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[1168 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420bd1c40) for 172.18.0.7:35934 +[1169 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35934 for (0xc420bd1c40) +[116a 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35934 +[116b 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35934 +[116c 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35934: rpc error: code = Canceled desc = context canceled +[116d 06-12 02:16:14.55 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[116e 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[116f 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35936 +[1170 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35936 +[1171 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[1172 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1173 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[1174 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1175 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[1176 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e340 gate 1528769774668566700 evaluation starts +[1177 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e340 signed by 0 principal evaluation starts (used [false]) +[1178 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e340 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[1179 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e340 principal matched by identity 0 +[117a 06-12 02:16:14.66 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 c7 f2 84 3a d6 2f b3 46 3e 45 5a 17 d7 fd a1 85 |...:./.F>EZ.....| +00000010 8d 52 d6 ac 08 d7 33 96 e2 05 c4 67 0f a3 f7 c1 |.R....3....g....| +[117b 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 45 02 21 00 b6 8e ed 4b 13 ac 8a 6c 69 77 d6 |0E.!....K...liw.| +00000010 c2 c2 3d 53 cc 93 6b 49 04 24 24 38 66 07 d6 04 |..=S..kI.$$8f...| +00000020 4a 3d 6d 7c 13 02 20 27 20 7f 64 72 cd 00 bb 17 |J=m|.. ' .dr....| +00000030 58 8d 46 5b 6b c4 60 cc 52 ad 0c d5 d1 2b 22 75 |X.F[k.`.R....+"u| +00000040 47 20 82 50 c8 86 20 |G .P.. | +[117c 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e340 principal evaluation succeeds for identity 0 +[117d 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e340 gate 1528769774668566700 evaluation succeeds +[117e 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[117f 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[1180 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[1181 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[1182 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[1183 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[1184 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420c7e2c0) start: > stop: > from 172.18.0.7:35936 +[1185 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[1186 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[0] +[1187 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[24013], Going to peek [8] bytes +[1188 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[9152], placementInfo={fileNum=[0], startOffset=[0], bytesOffset=[2]} +[1189 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [9152] read from file [0] +[118a 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420c7e2c0) for 172.18.0.7:35936 +[118b 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35936 for (0xc420c7e2c0) +[118c 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35936 +[118d 06-12 02:16:14.67 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35936 +[118e 06-12 02:16:14.68 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35936: rpc error: code = Canceled desc = context canceled +[118f 06-12 02:16:14.68 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream +[1190 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver -> DEBU Starting new Deliver handler +[1191 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Starting new deliver loop for 172.18.0.7:35938 +[1192 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35938 +[1193 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers == +[1194 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1195 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers == +[1196 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU This is an implicit meta policy, it will trigger other policy evaluations, whose failures may be benign +[1197 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers == +[1198 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e388 gate 1528769774828961900 evaluation starts +[1199 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e388 signed by 0 principal evaluation starts (used [false]) +[119a 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e388 processing identity 0 with bytes of 0a0a4f7264657265724d535012fd052d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d494943435443434162436741774942416749514672596934444e7a6e65653233632f5758574e304e6a414b42676771686b6a4f50515144416a42704d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a45554d4249474131554543684d4c5a586868625842735a53356a62323078467a415642674e5642414d54446d4e684c6d5634595731770a62475575593239744d423458445445344d44457a4d4441334e4441794e316f58445449344d4445794f4441334e4441794e316f77566a454c4d416b47413155450a42684d4356564d78457a415242674e5642416754436b4e6862476c6d62334a7561574578466a415542674e564241635444564e6862694247636d467559326c7a0a59323878476a415942674e5642414d4d4555466b62576c75514756345957317762475575593239744d466b77457759484b6f5a497a6a3043415159494b6f5a490a7a6a3044415163445167414564515a7a645474686c65525a30586452795555386e476d38314f776974757835674f6c35773341334e77634e49456c6f6c5377570a79356b3773686d714e596a6d6c4a52617754504a4448703149425451316269396e714e4e4d45737744675944565230504151482f42415144416765414d4177470a41315564457745422f7751434d4141774b7759445652306a42435177496f4167396a4b364947792f687a686b305653312b67734a34586133524337654b4d7a2f0a5148744e3737686a75413077436759494b6f5a497a6a304541774944527741775241496743743831646a7a4f44384c326569486746356f49426443496f44454d0a4a5a6d6a57676b7a6c4f4b4878663043494163492b3250322f6c416b5a6b5a36457068374e4f5232663336514165466e633167666472734339532b500a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a +[119b 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e388 principal matched by identity 0 +[119c 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: digest = 00000000 fa aa 56 95 5d 99 d5 39 58 3f 0d 28 1e c7 ef 7d |..V.]..9X?.(...}| +00000010 e7 8b af 22 3c b4 1e 83 74 13 67 0c ed 2d 85 34 |..."<...t.g..-.4| +[119d 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/msp] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2.Verify.Verify -> DEBU Verify: sig = 00000000 30 44 02 20 13 be ee 32 4b 95 5e 3c 2b 06 93 77 |0D. ...2K.^<+..w| +00000010 bb e0 69 32 5c a2 cb f4 e2 8e cd ca 8e fe 3d 0c |..i2\.........=.| +00000020 c3 02 2a 2a 02 20 2d f0 f8 a3 40 83 0f 86 a6 e8 |..**. -...@.....| +00000030 d6 d2 e3 a7 3a 5f 9b 46 f0 c2 df 61 2b af 4f f6 |....:_.F...a+.O.| +00000040 29 a7 f1 39 1d 4d |)..9.M| +[119e 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1.func2 -> DEBU 0xc42000e388 principal evaluation succeeds for identity 0 +[119f 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/cauthdsl] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate.func1 -> DEBU 0xc42000e388 gate 1528769774828961900 evaluation succeeds +[11a0 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/OrdererOrg/Readers +[11a1 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *cauthdsl.policy Policy /Channel/Orderer/OrdererOrg/Readers +[11a2 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU Signature set satisfies policy /Channel/Orderer/Readers +[11a3 06-12 02:16:14.82 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate.Evaluate.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Orderer/Readers +[11a4 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU Signature set satisfies policy /Channel/Readers +[11a5 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/policies] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks.Evaluate.CheckPolicy.func2.Apply.Evaluate -> DEBU == Done Evaluating *policies.implicitMetaPolicy Policy /Channel/Readers +[11a6 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Received seekInfo (0xc420c7f440) start: > stop: > from 172.18.0.7:35938 +[11a7 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next -> DEBU Initializing block stream for iterator. itr.maxBlockNumAvailable=1 +[11a8 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.initStream.newBlockStream.newBlockfileStream -> DEBU newBlockfileStream(): filePath=[/var/hyperledger/production/orderer/chains/testchainid/blockfile_000000], startOffset=[9154] +[11a9 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[14859], Going to peek [8] bytes +[11aa 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14857], placementInfo={fileNum=[0], startOffset=[9154], bytesOffset=[9156]} +[11ab 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Next.Next.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU blockbytes [14857] read from file [0] +[11ac 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Delivering block for (0xc420c7f440) for 172.18.0.7:35938 +[11ad 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle.deliverBlocks -> DEBU [channel: testchainid] Done delivering to 172.18.0.7:35938 for (0xc420c7f440) +[11ae 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Waiting for new SeekInfo from 172.18.0.7:35938 +[11af 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> DEBU Attempting to read seek info message from 172.18.0.7:35938 +[11b0 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/common/deliver] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.Handle -> WARN Error reading from 172.18.0.7:35938: rpc error: code = Canceled desc = context canceled +[11b1 06-12 02:16:14.83 UTC] [github.com/hyperledger/fabric/orderer/common/server] handleStream.processStreamingRPC._AtomicBroadcast_Deliver_Handler.Deliver.func1 -> DEBU Closing Deliver stream diff --git a/hyperledger_fabric/latest/solo/logs/dev_peer0.log b/hyperledger_fabric/latest/solo/logs/dev_peer0.log index c79c3469..2b373b88 100644 --- a/hyperledger_fabric/latest/solo/logs/dev_peer0.log +++ b/hyperledger_fabric/latest/solo/logs/dev_peer0.log @@ -1,37 +1,37 @@ -[001 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP -[002 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -[003 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW -[004 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW -[005 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value -[006 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 -[007 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 -[008 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 -[009 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore -[00a 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input -[00b 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string -[00c 05-31 05:21:31.36 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[Default:SW SW:map[Security:256 FileKeyStore:map[KeyStore:] Hash:SHA2]]] -[00d 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done -[00e 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] -[00f 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts -[010 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer0.org1.example.com-cert.pem -[011 05-31 05:21:31.37 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts -[012 05-31 05:21:31.38 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org1.example.com-cert.pem -[013 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts -[014 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org1.example.com-cert.pem -[015 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts -[016 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] -[017 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts -[018 05-31 05:21:31.39 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org1.example.com-cert.pem -[019 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts -[01a 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] -[01b 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls -[01c 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] -[01d 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] -[01e 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance -[01f 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance -[020 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP -[021 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org1MSP -[022 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[001 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP +[002 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +[003 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.BCCSP.Default setting to string SW +[004 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW +[005 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.BCCSP.SW.FileKeyStore +[006 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: unexpected end of JSON input +[007 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.FileKeyStore.KeyStore setting to string +[008 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'S' looking for beginning of value +[009 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Hash setting to string SHA2 +[00a 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: 256 +[00b 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.BCCSP.SW.Security setting to int 256 +[00c 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/common/viperutil] main.InitCrypto.EnhancedExactUnmarshalKey -> DEBU map[peer.BCCSP:map[Default:SW SW:map[FileKeyStore:map[KeyStore:] Hash:SHA2 Security:256]]] +[00d 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP.Get.NewFileBasedKeyStore.Init.openKeyStore -> DEBU KeyStore opened at [/etc/hyperledger/fabric/msp/keystore]...done +[00e 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/bccsp/factory] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.InitFactories.Do.func1.initBCCSP -> DEBU Initialize BCCSP [SW] +[00f 06-12 02:14:11.89 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/signcerts +[010 06-12 02:14:11.90 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/signcerts/peer0.org1.example.com-cert.pem +[011 06-12 02:14:11.90 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/cacerts +[012 06-12 02:14:11.91 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/cacerts/ca.org1.example.com-cert.pem +[013 06-12 02:14:11.91 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/admincerts +[014 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/admincerts/Admin@org1.example.com-cert.pem +[015 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/intermediatecerts +[016 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU Intermediate certs folder not found at [/etc/hyperledger/fabric/msp/intermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/intermediatecerts: no such file or directory] +[017 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlscacerts +[018 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Inspecting file /etc/hyperledger/fabric/msp/tlscacerts/tlsca.org1.example.com-cert.pem +[019 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/tlsintermediatecerts +[01a 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU TLS intermediate certs folder not found at [/etc/hyperledger/fabric/msp/tlsintermediatecerts]. Skipping. [stat /etc/hyperledger/fabric/msp/tlsintermediatecerts: no such file or directory] +[01b 06-12 02:14:11.92 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig.getPemMaterialFromDir -> DEBU Reading directory /etc/hyperledger/fabric/msp/crls +[01c 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU crls folder not found at [/etc/hyperledger/fabric/msp/crls]. Skipping. [stat /etc/hyperledger/fabric/msp/crls: no such file or directory] +[01d 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMspConfigWithType.GetLocalMspConfig.getMspConfig -> DEBU MSP configuration file not found at [/etc/hyperledger/fabric/msp/config.yaml]: [stat /etc/hyperledger/fabric/msp/config.yaml: no such file or directory] +[01e 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New.newBccspMsp -> DEBU Creating BCCSP-based MSP instance +[01f 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp/cache] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP.New -> DEBU Creating Cache-MSP instance +[020 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp/mgmt] main.InitCrypto.LoadLocalMspWithType.GetLocalMSP.loadLocaMSP -> DEBU Created new local MSP +[021 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup -> DEBU Setting up MSP instance Org1MSP +[022 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupCAs.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICQzCCAemgAwIBAgIQHuSjlilPFypCp4FTQu6gozAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -46,7 +46,7 @@ grtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAO4HS5C/VaHcP8ph iJWPIPcn20mWc9iR0R/+lJqbfd1fAiBcfGvaGmPVfR/HLwb3YHNCw242/02gX1Sp QKuzs3j8kg== -----END CERTIFICATE----- -[023 05-31 05:21:31.40 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[023 06-12 02:14:11.93 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupAdmins.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -60,7 +60,7 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0 2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH 3BDFnYuSFYhOCexVkA== -----END CERTIFICATE----- -[024 05-31 05:21:31.43 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[024 06-12 02:14:11.94 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.getIdentityFromConf.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -74,8 +74,8 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX fv5YS9/ysd8jy4a+pg== -----END CERTIFICATE----- -[025 05-31 05:21:31.43 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [dc5f598d6cce6d7f5fe7f95121eb5d56c7192b4947743f3bcfcf4a8bc236db18] at [/etc/hyperledger/fabric/msp/keystore/dc5f598d6cce6d7f5fe7f95121eb5d56c7192b4947743f3bcfcf4a8bc236db18_sk]... -[026 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- +[025 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/bccsp/sw] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.GetKey.GetKey.loadPrivateKey -> DEBU Loading private key [dc5f598d6cce6d7f5fe7f95121eb5d56c7192b4947743f3bcfcf4a8bc236db18] at [/etc/hyperledger/fabric/msp/keystore/dc5f598d6cce6d7f5fe7f95121eb5d56c7192b4947743f3bcfcf4a8bc236db18_sk]... +[026 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity.getSigningIdentityFromConf.newSigningIdentity.newIdentity -> DEBU Creating identity instance for cert -----BEGIN CERTIFICATE----- MIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw CQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy YW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu @@ -89,21 +89,21 @@ ir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy za8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX fv5YS9/ysd8jy4a+pg== -----END CERTIFICATE----- -[027 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:26 +0000 UTC -[028 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity -[029 05-31 05:21:31.44 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' -[02a 05-31 05:21:31.44 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' -[02b 05-31 05:21:31.44 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' -[02c 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' -[02d 05-31 05:21:31.44 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' -[02e 05-31 05:21:31.44 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' -[02f 05-31 05:21:31.44 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' -[030 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' -[031 05-31 05:21:31.44 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' -[032 05-31 05:21:31.44 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' -[033 05-31 05:21:31.44 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' -[034 05-31 05:21:31.44 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' -[035 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: +[027 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.preSetupV1.setupSigningIdentity -> DEBU Signing identity expires at 2028-01-28 07:40:26 +0000 UTC +[028 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/msp] main.InitCrypto.LoadLocalMspWithType.Setup.Setup.setupV1)-fm.setupV1.postSetupV1.Validate.Validate -> DEBU MSP Org1MSP validating identity +[029 06-12 02:14:11.95 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' +[02a 06-12 02:14:11.95 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' +[02b 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'gossip/privdata' logger enabled for log level 'WARNING' +[02c 06-12 02:14:11.95 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' +[02d 06-12 02:14:11.95 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' +[02e 06-12 02:14:11.95 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' +[02f 06-12 02:14:11.95 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' +[030 06-12 02:14:11.95 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' +[031 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/common/flogging] main.Execute.ExecuteC.execute.func1.serve.SetLogLevelFromViper.SetModuleLevel.setModuleLevel -> DEBU Module 'policies/inquire' logger enabled for log level 'WARNING' +[032 06-12 02:14:11.95 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' +[033 06-12 02:14:11.95 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' +[034 06-12 02:14:11.95 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' +[035 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer: Version: 1.2.0 Go version: go1.10.2 OS/Arch: linux/amd64 @@ -114,86 +114,83 @@ fv5YS9/ysd8jy4a+pg== Base Docker Label: org.hyperledger.fabric Docker Namespace: hyperledger -[036 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt -[037 05-31 05:21:31.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider -[038 05-31 05:21:31.44 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/] -[039 05-31 05:21:31.44 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 -[03a 05-31 05:21:31.44 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 -[03b 05-31 05:21:31.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] -[03c 05-31 05:21:31.45 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist -[03d 05-31 05:21:31.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists -[03e 05-31 05:21:31.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] -[03f 05-31 05:21:31.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist -[040 05-31 05:21:31.46 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists -[041 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb -[042 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] -[043 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist -[044 05-31 05:21:31.49 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists -[045 05-31 05:21:31.50 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 -[046 05-31 05:21:31.50 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/] -[047 05-31 05:21:31.50 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 -[048 05-31 05:21:31.51 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewHistoryDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/historyLeveldb/] exists -[049 05-31 05:21:31.52 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/bookkeeper/] -[04a 05-31 05:21:31.52 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/bookkeeper/] does not exist -[04b 05-31 05:21:31.52 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/bookkeeper/] exists -[04c 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory -[04d 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] -[04e 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist -[04f 05-31 05:21:31.54 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists -[050 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized -[051 05-31 05:21:31.56 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 -[052 05-31 05:21:31.56 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 -[053 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized -[054 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 -[055 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 -[056 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.6:7051 -[057 05-31 05:21:31.56 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 -[058 05-31 05:21:31.57 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled -[059 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK -[05a 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE -[05b 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION -[05c 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER -[05d 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK -[05e 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started -[05f 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com -[060 05-31 05:21:31.58 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 -[061 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 -[062 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered -[063 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 -[064 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered -[065 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 -[066 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered -[067 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer -[068 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers -[069 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] -[06a 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] -[06b 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers -[06c 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc -[06d 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -[06e 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement -[06f 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -[070 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to -[071 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators -[072 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc -[073 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value -[074 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation -[075 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: -[076 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to -[077 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] -[078 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] -[079 05-31 05:21:31.60 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]] validators:map[vscc:map[name:DefaultValidation library:]] authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]]]] -[07a 05-31 05:21:31.61 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 [] [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] peer0.org1.example.com:7051 } -[07b 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[07c 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=bac9e52b-fdda-4850-b356-7a81267fa193,syscc=true,proposal=0x0,canname=cscc:1.2.0) -[07d 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched -[07e 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -[07f 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 -[081 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[082 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started -[083 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself -[084 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s -[080 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[085 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +[036 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO Initializing ledger mgmt +[037 06-12 02:14:11.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO Initializing ledger provider +[038 06-12 02:14:11.95 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/] +[039 06-12 02:14:11.96 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 +[03a 06-12 02:14:11.96 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 +[03b 06-12 02:14:11.97 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/index/] +[03c 06-12 02:14:11.97 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/index/] does not exist +[03d 06-12 02:14:11.97 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/index/] exists +[03e 06-12 02:14:11.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/pvtdataStore/] +[03f 06-12 02:14:11.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] does not exist +[040 06-12 02:14:11.98 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewProvider.NewProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/pvtdataStore/] exists +[041 06-12 02:14:11.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider -> DEBU constructing VersionedDBProvider dbPath=/var/hyperledger/production/ledgersData/stateLeveldb +[042 06-12 02:14:11.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/stateLeveldb/] +[043 06-12 02:14:11.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] does not exist +[044 06-12 02:14:11.99 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewCommonStorageDBProvider.NewVersionedDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/stateLeveldb/] exists +[045 06-12 02:14:12.00 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 +[046 06-12 02:14:12.00 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/] +[047 06-12 02:14:12.00 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 +[048 06-12 02:14:12.00 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 +[049 06-12 02:14:12.01 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/bookkeeper/] +[04a 06-12 02:14:12.01 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/bookkeeper/] does not exist +[04b 06-12 02:14:12.01 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/bookkeeper/] exists +[04c 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/core/ledger/confighistory] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider -> DEBU Opening db for config history: db path = /var/hyperledger/production/ledgersData/configHistory +[04d 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/configHistory/] +[04e 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/configHistory/] does not exist +[04f 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/common/ledger/util] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider.NewMgr.newMgr.newDBProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/configHistory/] exists +[050 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize.NewProvider -> INFO ledger provider Initialized +[051 06-12 02:14:12.02 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 +[052 06-12 02:14:12.02 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 +[053 06-12 02:14:12.02 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] main.Execute.ExecuteC.execute.func1.serve.Initialize.Do.func1.initialize -> INFO ledger mgmt initialized +[054 06-12 02:14:12.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 +[055 06-12 02:14:12.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func1 -> INFO Returning peer0.org1.example.com:7051 +[056 06-12 02:14:12.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Auto-detected peer address: 172.18.0.4:7051 +[057 06-12 02:14:12.04 UTC] [github.com/hyperledger/fabric/core/peer] main.Execute.ExecuteC.execute.func1.serve.CacheConfiguration.func2.func1 -> INFO Returning peer0.org1.example.com:7051 +[058 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with TLS enabled +[059 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering BLOCK +[05a 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering CHAINCODE +[05b 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REJECTION +[05c 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering REGISTER +[05d 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/events/producer] main.Execute.ExecuteC.execute.func1.serve.createEventHubServer.NewEventsServer.initializeEvents.addInternalEventTypes.AddEventType -> DEBU Registering FILTEREDBLOCK +[05e 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/events/producer] -> INFO Event processor started +[05f 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Entering computeChaincodeEndpoint with peerHostname: peer0.org1.example.com +[060 06-12 02:14:12.06 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.createChaincodeServer.computeChaincodeEndpoint -> INFO Exit with ccEndpoint: peer0.org1.example.com:7052 +[061 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: cscc-1.2.0 +[062 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode cscc(github.com/hyperledger/fabric/core/scc/cscc) registered +[063 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: lscc-1.2.0 +[064 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode lscc(github.com/hyperledger/fabric/core/scc/lscc) registered +[065 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC.Register -> DEBU Registering chaincode instance: qscc-1.2.0 +[066 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.registerChaincodeSupport.RegisterSysCC.registerSysCC -> INFO system chaincode qscc(github.com/hyperledger/fabric/core/scc/qscc) registered +[067 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> DEBU Running peer +[068 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers +[069 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultAuth] map[name:ExpirationCheck]] +[06a 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.authFilters setting to []interface {} [map[name:DefaultAuth] map[name:ExpirationCheck]] +[06b 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: [map[name:DefaultDecorator]] +[06c 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found real value for peer.handlers.decorators setting to []interface {} [map[name:DefaultDecorator]] +[06d 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers +[06e 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.endorsers.escc +[06f 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +[070 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.name setting to string DefaultEndorsement +[071 06-12 02:14:12.07 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +[072 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.endorsers.escc.library setting to +[073 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively.getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators +[074 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found map[string]interface{} value for peer.handlers.validators.vscc +[075 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value is not a string: +[076 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.library setting to +[077 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively.unmarshalJSON -> DEBU Unmarshal JSON: value cannot be unmarshalled: invalid character 'D' looking for beginning of value +[078 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey.getKeysRecursively...getKeysRecursively -> DEBU Found real value for peer.handlers.validators.vscc.name setting to string DefaultValidation +[079 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/common/viperutil] main.Execute.ExecuteC.execute.func1.serve.EnhancedExactUnmarshalKey -> DEBU map[peer.handlers:map[authFilters:[map[name:DefaultAuth] map[name:ExpirationCheck]] decorators:[map[name:DefaultDecorator]] endorsers:map[escc:map[name:DefaultEndorsement library:]] validators:map[vscc:map[library: name:DefaultValidation]]]] +[07a 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] main.Execute.ExecuteC.execute.func1.serve.InitGossipService.InitGossipServiceCustomDeliveryFactory.Do.func1.NewGossipComponent.NewGossipService -> INFO Creating gossip service with self membership of {peer0.org1.example.com:7051 [] [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] peer0.org1.example.com:7051 } +[07b 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[07c 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=9b22d204-6345-4312-8bb3-3d4f787fef61,syscc=true,proposal=0x0,canname=cscc:1.2.0) +[07d 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode cscc:1.2.0 is being launched +[07e 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=cscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +[07f 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: cscc:1.2.0 +[081 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[080 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[082 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: 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} @@ -202,47 +199,50 @@ fv5YS9/ysd8jy4a+pg== CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -[086 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock -[087 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock -[088 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 -[089 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) -[08b 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 -[08c 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[08d 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 -[08e 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[08a 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 -[08f 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[090 05-31 05:21:31.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -[091 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -[092 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 -[093 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED -[094 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" -[095 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" -[096 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -[097 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -[098 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -[099 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -[09a 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" -[09b 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -[09c 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -[09d 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[09e 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac9e52b]Received message INIT from peer -[09f 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bac9e52b] Handling ChaincodeMessage of type: INIT(state:ready) -[0a0 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bac9e52b] Received INIT, initializing chaincode -[0a1 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[0a2 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac9e52b] Init get response status: 200 -[0a3 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bac9e52b] Init succeeded. Sending COMPLETED -[0a4 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [bac9e52b] send state message COMPLETED -[0a5 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bac9e52b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[0a6 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [bac9e52b] notifying Txid:bac9e52b-fdda-4850-b356-7a81267fa193, channelID: -[0a7 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[0a8 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed -[0a9 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=b3005759-3be8-4081-bf72-5919d6f15118,syscc=true,proposal=0x0,canname=lscc:1.2.0) -[0aa 05-31 05:21:31.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched -[0ab 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -[0ac 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 -[0ad 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0ae 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +[083 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(cscc-1.2.0) lock +[084 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (cscc-1.2.0) lock +[085 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for cscc-1.2.0 +[086 06-12 02:14:12.08 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(cscc-1.2.0) +[087 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> INFO Gossip instance peer0.org1.example.com:7051 started +[088 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] Connect -> DEBU Skipping connecting to myself +[089 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for cscc-1.2.0 +[08a 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[08b 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] -> DEBU Entering discovery sync with interval 4s +[08c 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for cscc-1.2.0 +[08d 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[08e 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=cscc:1.2.0 +[08f 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[090 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +[091 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +[092 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode cscc:1.2.0 +[093 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"cscc:1.2.0" , sending back REGISTERED +[094 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"cscc:1.2.0" +[095 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"cscc:1.2.0" +[096 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +[097 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +[098 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +[099 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +[09a 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"cscc:1.2.0" +[09b 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +[09c 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +[09d 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[09e 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b22d204]Received message INIT from peer +[09f 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9b22d204] Handling ChaincodeMessage of type: INIT(state:ready) +[0a0 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [9b22d204] Received INIT, initializing chaincode +[0a1 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[0a2 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b22d204] Init get response status: 200 +[0a3 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9b22d204] Init succeeded. Sending COMPLETED +[0a4 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [9b22d204] send state message COMPLETED +[0a5 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [9b22d204] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[0a6 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [9b22d204] notifying Txid:9b22d204-6345-4312-8bb3-3d4f787fef61, channelID: +[0a7 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[0a8 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/(github.com/hyperledger/fabric/core/scc/cscc) deployed +[0a9 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=b4516f62-6406-4371-bcc0-18ebca862eb2,syscc=true,proposal=0x0,canname=lscc:1.2.0) +[0aa 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode lscc:1.2.0 is being launched +[0ab 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=lscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +[0ac 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: lscc:1.2.0 +[0ad 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[0ae 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: 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} @@ -251,46 +251,46 @@ fv5YS9/ysd8jy4a+pg== CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -[0af 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock -[0b0 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock -[0b1 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 -[0b2 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) -[0b3 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 -[0b4 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 -[0b5 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0b6 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0b7 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 -[0b8 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0b9 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -[0ba 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -[0bb 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 -[0bc 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED -[0bd 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" -[0be 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" -[0bf 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -[0c0 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -[0c1 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -[0c2 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -[0c3 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" -[0c4 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -[0c5 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[0c6 05-31 05:21:31.64 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[0c7 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3005759]Received message INIT from peer -[0c8 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b3005759] Handling ChaincodeMessage of type: INIT(state:ready) -[0c9 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b3005759] Received INIT, initializing chaincode -[0ca 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3005759] Init get response status: 200 -[0cb 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b3005759] Init succeeded. Sending COMPLETED -[0cc 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b3005759] send state message COMPLETED -[0cd 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b3005759] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[0ce 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b3005759] notifying Txid:b3005759-3be8-4081-bf72-5919d6f15118, channelID: -[0cf 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[0d0 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed -[0d1 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=4dd8aaca-8756-46b5-9f80-0e8dfccee94d,syscc=true,proposal=0x0,canname=qscc:1.2.0) -[0d2 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched -[0d3 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -[0d4 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 -[0d5 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[0d6 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +[0af 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(lscc-1.2.0) lock +[0b0 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (lscc-1.2.0) lock +[0b1 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for lscc-1.2.0 +[0b2 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(lscc-1.2.0) +[0b4 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for lscc-1.2.0 +[0b3 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for lscc-1.2.0 +[0b6 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0b5 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0b7 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=lscc:1.2.0 +[0b8 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0b9 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +[0ba 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +[0bb 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode lscc:1.2.0 +[0bc 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"lscc:1.2.0" , sending back REGISTERED +[0bd 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"lscc:1.2.0" +[0be 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +[0bf 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"lscc:1.2.0" +[0c0 06-12 02:14:12.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +[0c1 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +[0c3 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +[0c2 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"lscc:1.2.0" +[0c4 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +[0c5 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[0c6 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[0c7 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4516f62]Received message INIT from peer +[0c8 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b4516f62] Handling ChaincodeMessage of type: INIT(state:ready) +[0c9 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b4516f62] Received INIT, initializing chaincode +[0ca 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4516f62] Init get response status: 200 +[0cb 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4516f62] Init succeeded. Sending COMPLETED +[0cc 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b4516f62] send state message COMPLETED +[0cd 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b4516f62] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[0ce 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b4516f62] notifying Txid:b4516f62-6406-4371-bcc0-18ebca862eb2, channelID: +[0cf 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[0d0 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/(github.com/hyperledger/fabric/core/scc/lscc) deployed +[0d1 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=8532ea0b-309c-4884-b19e-a88e563c5a3e,syscc=true,proposal=0x0,canname=qscc:1.2.0) +[0d2 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode qscc:1.2.0 is being launched +[0d3 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=qscc:1.2.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +[0d4 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: qscc:1.2.0 +[0d5 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[0d6 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: 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} @@ -299,1263 +299,1434 @@ fv5YS9/ysd8jy4a+pg== CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -[0d7 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock -[0d8 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock -[0d9 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 -[0da 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) -[0db 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 -[0dc 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[0dd 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 -[0de 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] -[0df 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 -[0e0 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER -[0e1 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -[0e2 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -[0e3 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 -[0e4 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED -[0e5 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" -[0e6 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" -[0e7 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer -[0e8 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) -[0e9 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer -[0ea 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) -[0eb 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" -[0ec 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -[0ed 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -[0ee 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[0ef 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4dd8aaca]Received message INIT from peer -[0f0 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4dd8aaca] Handling ChaincodeMessage of type: INIT(state:ready) -[0f1 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [4dd8aaca] Received INIT, initializing chaincode -[0f2 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[0f3 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4dd8aaca] Init get response status: 200 -[0f4 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4dd8aaca] Init succeeded. Sending COMPLETED -[0f5 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [4dd8aaca] send state message COMPLETED -[0f6 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [4dd8aaca] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[0f7 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [4dd8aaca] notifying Txid:4dd8aaca-8756-46b5-9f80-0e8dfccee94d, channelID: -[0f8 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[0f9 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed -[0fa 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes -[0fb 05-31 05:21:31.65 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] -[0fc 05-31 05:21:31.66 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 -[0fd 05-31 05:21:31.66 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated -[0fe 05-31 05:21:31.66 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] -[0ff 05-31 05:21:31.66 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] -[100 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:33174 -[101 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33174 -[102 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33174 -[103 05-31 05:21:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33174 -[104 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:33176 -[105 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33176 -[106 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33176 -[107 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33176 -[108 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33174 disconnected -[109 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -[10a 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33176 disconnected -[10b 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing -[10c 05-31 05:21:32.53 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[10d 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55302 -[10e 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42231e030 -[10f 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[110 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[111 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[112 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[113 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[114 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4222b3810, header 0xc42231e450 -[115 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" -[116 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][c9de6a52] processing txid: c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a -[117 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][c9de6a52] Entry chaincode: name:"cscc" -[118 05-31 05:21:34.85 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a] Entry chaincode: name:"cscc" version: 1.2.0 -[119 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a,syscc=true,proposal=0xc4222b3810,canname=cscc:1.2.0) -[11a 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -[11b 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[11c 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c9de6a52]Received message TRANSACTION from peer -[11d 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c9de6a52] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[11e 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c9de6a52] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[11f 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain -[120 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block -[121 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel -[122 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] -[123 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist -[124 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists -[125 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage -[126 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files -[127 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() -[128 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 -[129 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 -[12a 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found -[12b 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc42236c980)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) -[12c 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] -[12d 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: -[12e 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false -[12f 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() -[130 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. -[131 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] -[132 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[133 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] -[134 05-31 05:21:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[135 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[136 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -[137 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -[138 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -[139 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -[13a 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[13b 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -[13c 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[13d 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[13e 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator -[13f 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[140 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[141 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[142 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage -[143 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] -[144 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0xc2, 0x1e, 0x64, 0xf2, 0xd9, 0x85, 0xf0, 0xf7, 0x6d, 0x68, 0x53, 0xa1, 0x96, 0x61, 0x4a, 0xbd, 0xd0, 0xa2, 0x78, 0x7b, 0x4d, 0xb0, 0x42, 0x49, 0x2a, 0xcc, 0x56, 0x48, 0xa7, 0x2, 0x5, 0x73} txOffsets= -txId= locPointer=offset=38, bytesLength=12077 +[0d7 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(qscc-1.2.0) lock +[0d8 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (qscc-1.2.0) lock +[0d9 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] Do.Do.Start.getInstance -> DEBU chaincode instance created for qscc-1.2.0 +[0da 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(qscc-1.2.0) +[0db 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode-support started for qscc-1.2.0 +[0dc 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[0dd 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/container/inproccontroller] -> DEBU chaincode started for qscc-1.2.0 +[0de 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU in proc [chaincode -peer.address=peer0.org1.example.com:7052] +[0df 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc -> DEBU starting chat with peer using name=qscc:1.2.0 +[0e0 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] StartInProc.chatWithPeer -> DEBU Registering.. sending REGISTER +[0e1 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +[0e2 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +[0e3 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode qscc:1.2.0 +[0e4 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"qscc:1.2.0" , sending back REGISTERED +[0e5 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"qscc:1.2.0" +[0e6 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"qscc:1.2.0" +[0e7 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message REGISTERED from peer +[0e8 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: REGISTERED(state:created) +[0e9 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU []Received message READY from peer +[0ea 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [] Handling ChaincodeMessage of type: READY(state:established) +[0eb 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"qscc:1.2.0" +[0ec 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +[0ed 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +[0ee 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[0ef 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8532ea0b]Received message INIT from peer +[0f0 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8532ea0b] Handling ChaincodeMessage of type: INIT(state:ready) +[0f1 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8532ea0b] Received INIT, initializing chaincode +[0f2 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[0f3 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8532ea0b] Init get response status: 200 +[0f4 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8532ea0b] Init succeeded. Sending COMPLETED +[0f5 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8532ea0b] send state message COMPLETED +[0f6 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8532ea0b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[0f7 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8532ea0b] notifying Txid:8532ea0b-309c-4884-b19e-a88e563c5a3e, channelID: +[0f8 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/chaincode] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[0f9 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/scc] main.Execute.ExecuteC.execute.func1.serve.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/(github.com/hyperledger/fabric/core/scc/qscc) deployed +[0fa 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Deployed system chaincodes +[0fb 06-12 02:14:12.10 UTC] [github.com/hyperledger/fabric/core/cclifecycle] main.Execute.ExecuteC.execute.func1.serve.NewLifeCycle.Enumerate.func4.InstalledCCs -> DEBU Returning [] +[0fc 06-12 02:14:12.11 UTC] [github.com/hyperledger/fabric/discovery] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService.NewService -> INFO Created with config TLS: true, authCacheMaxSize: 1000, authCachePurgeRatio: 0.750000 +[0fd 06-12 02:14:12.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve.registerDiscoveryService -> INFO Discovery service activated +[0fe 06-12 02:14:12.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Starting peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +[0ff 06-12 02:14:12.11 UTC] [github.com/hyperledger/fabric/peer/node] main.Execute.ExecuteC.execute.func1.serve -> INFO Started peer with ID=[name:"peer0.org1.example.com" ], network ID=[dev], address=[peer0.org1.example.com:7051] +[100 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:35340 +[101 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35340 +[102 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35340 +[103 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35340 +[104 06-12 02:14:13.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +[105 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35340 disconnected +[106 06-12 02:14:13.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[107 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:35342 +[108 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35342 +[109 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35342 +[10a 06-12 02:14:13.28 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35342 +[10b 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:14642057695148649786 tag:EMPTY mem_req:}!5\367|\246\324|\372]$\231\325\362" > > > , Envelope: 1090 bytes, Signature: 0 bytes +[10c 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[10d 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:14642057695148649786 tag:EMPTY mem_req:}!5\367|\246\324|\372]$\231\325\362" > > > , Envelope: 1090 bytes, Signature: 0 bytes +[10e 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[10f 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]}, deadMembers={[]} +[110 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[111 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +[112 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[113 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[114 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[115 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 14642057695148649786, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2163 bytes, Signature: 0 bytes to 1 peers +[116 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:}!5\367|\246\324|\372]$\231\325\362" > > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\003\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\212\256UZq\001\274f\256\345\035\371\354$\357\366\223\"\033\3011\026&\376\243\353p\370\225\271\341\010\002 R\243$\314\353\246U\2320;\020\006\234\032\354\320\031Nr~\004>\305\201\370\210?\235}\014\236\250" secret_envelope: > +[117 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 14642057695148649786, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2163 bytes, Signature: 0 bytes +[118 06-12 02:14:13.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[119 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[11a 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[11b 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[11c 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11d 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\004\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\335C\333\343\226}\031y\264\247\254Fu2da\2107\30766\206D\324\221\367+\307\220\020\214v\002 4m\263\0334y\316d\233\021\210u\264\t\014\273\243g\010\025\n\001\323\014\205\365=\215\217T\303\251" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes to 1 peers +[11e 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\004\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\335C\333\343\226}\031y\264\247\254Fu2da\2107\30766\206D\324\221\367+\307\220\020\214v\002 4m\263\0334y\316d\233\021\210u\264\t\014\273\243g\010\025\n\001\323\014\205\365=\215\217T\303\251" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +[11f 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[120 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes +[121 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 51 bytes, Signature: 0 bytes +[122 06-12 02:14:16.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[123 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2153 bytes, Signature: 0 bytes +[124 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[125 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2153 bytes, Signature: 0 bytes +[126 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[127 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[128 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[129 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[12a 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[12b 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[12c 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[12d 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +[12e 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[12f 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[130 06-12 02:14:16.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[131 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44168 +[132 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42238fb90 +[133 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[134 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[135 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[136 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[137 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[138 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42239eff0, header 0xc42238ffb0 +[139 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +[13a 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][1a04dc88] processing txid: 1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c +[13b 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1a04dc88] Entry chaincode: name:"cscc" +[13c 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c] Entry chaincode: name:"cscc" version: 1.2.0 +[13d 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c,syscc=true,proposal=0xc42239eff0,canname=cscc:1.2.0) +[13e 06-12 02:14:16.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +[13f 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[140 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a04dc88]Received message TRANSACTION from peer +[141 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1a04dc88] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[142 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1a04dc88] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[143 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: JoinChain +[144 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Creating ledger [businesschannel] with genesis block +[145 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU newBlockfileMgr() initializing file-based block storage for ledger: businesschannel +[146 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] +[147 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] does not exist +[148 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/ledgersData/chains/chains/businesschannel/] exists +[149 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> INFO Getting block information from block storage +[14a 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Retrieving checkpoint info from block files +[14b 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() +[14c 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles.retrieveLastFileSuffix -> DEBU retrieveLastFileSuffix() - biggestFileNum = -1 +[14d 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU Last file number found = -1 +[14e 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.constructCheckpointInfoFromBlockFiles -> DEBU No block file found +[14f 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr -> DEBU Info constructed by scanning the blocks dir = (*fsblkstorage.checkpointInfo)(0xc422407d20)(latestFileChunkSuffixNum=[0], latestFileChunksize=[0], isChainEmpty=[true], lastBlockNumber=[0]) +[150 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenBlockStore.newFsBlockStore.newBlockfileMgr.newBlockIndex -> DEBU newBlockIndex() - indexItems:[[BlockHash BlockNum TxID BlockNumTranNum BlockTxID TxValidationCode]] +[151 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.Open.OpenStore -> DEBU Pvtdata store opened. Initial state: isEmpty [true], lastCommittedBlock [0], batchPending [false] +[152 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Creating KVLedger ledgerID=businesschannel: +[153 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger -> DEBU Register state db for chaincode lifecycle events: false +[154 06-12 02:14:16.12 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Entering recoverDB() +[155 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.openInternal.newKVLedger.recoverDBs -> DEBU Block storage is empty. +[156 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [0] +[157 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[158 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [0] +[159 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[15a 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[15b 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +[15c 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +[15d 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +[15e 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +[15f 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[160 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:1 channel_group: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +[161 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[162 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +[163 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [0] Transaction index [0] TxId [] marked as valid by state validator +[164 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[165 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[166 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[167 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] to storage +[168 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [0] +[169 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=0, blockHash=[]byte{0x81, 0xc5, 0xbd, 0x2f, 0xfe, 0x1f, 0xf2, 0xa7, 0x99, 0x11, 0xeb, 0x89, 0x2a, 0xfe, 0x78, 0x3e, 0xbf, 0xeb, 0x8f, 0x89, 0xbe, 0x14, 0xc1, 0x3d, 0xfa, 0x19, 0xe2, 0x63, 0x95, 0x7d, 0xd8, 0xa6} txOffsets= +txId= locPointer=offset=38, bytesLength=12078 ] -[145 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx ID: [] to index -[146 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12077] for tx number:[0] ID: [] to blockNumTranNum index -[147 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12121], isChainEmpty=[false], lastBlockNumber=[0] -[148 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] -[149 05-31 05:21:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] -[14b 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] -[14c 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} -[14d 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] -[14e 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage -[14f 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished -[14a 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) -[150 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database -[151 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] -[152 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[153 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[154 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -[155 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[156 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] -[157 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database -[158 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions -[159 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[15a 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] -[15b 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block -[15c 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [a3f67830-c91a-41d2-8554-c6703ce1d8fd] -[15d 05-31 05:21:34.88 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY -[15e 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [a3f67830-c91a-41d2-8554-c6703ce1d8fd] -[15f 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[160 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[161 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[162 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[163 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[164 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[165 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[166 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[167 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[168 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[169 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[16a 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[16b 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[16c 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[16d 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[16e 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[16f 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[170 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[171 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[172 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[173 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[174 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[175 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[176 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are -[177 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[178 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[179 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[17a 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[17b 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[17c 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[17d 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[17e 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[17f 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[180 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[181 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[182 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[183 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[184 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[185 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[186 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[187 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[188 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[189 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[18a 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[18b 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[18c 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[18d 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[18e 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[18f 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[190 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[191 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[192 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[193 05-31 05:21:34.89 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[194 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[195 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[196 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[197 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[198 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[199 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[19a 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[19b 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[19c 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[19d 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[19e 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[19f 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[1a0 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[1a1 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[1a2 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[1a3 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[1a4 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[1a5 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[1a6 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[1a7 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[1a8 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[1a9 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[1aa 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[1ab 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[1ac 05-31 05:21:34.90 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[1ad 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[1ae 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[1af 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[1b0 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[1b1 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] -[1b2 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist -[1b3 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists -[1b4 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.joinChain.InitChain -> DEBU Init chain businesschannel -[1b5 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain -[1b6 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[1b7 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a7c56643-66c5-49f1-9e8c-9816e020a405] -[1b8 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=a7c56643-66c5-49f1-9e8c-9816e020a405,syscc=true,proposal=0x0,canname=cscc:1.2.0) -[1b9 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 -[1ba 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[1bb 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7c56643]Received message INIT from peer -[1bc 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a7c56643] Handling ChaincodeMessage of type: INIT(state:ready) -[1bd 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a7c56643] Received INIT, initializing chaincode -[1be 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[1bf 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC -[1c0 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7c56643] Init get response status: 200 -[1c1 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a7c56643] Init succeeded. Sending COMPLETED -[1c2 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a7c56643] send state message COMPLETED -[1c3 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a7c56643] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[1c5 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a7c56643] notifying Txid:a7c56643-66c5-49f1-9e8c-9816e020a405, channelID:businesschannel -[1c4 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[1c6 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[1c7 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed -[1c8 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [a7c56643-66c5-49f1-9e8c-9816e020a405] -[1c9 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[1ca 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8bb8b044-c0aa-4124-9017-f042cfa39122] -[1cb 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=8bb8b044-c0aa-4124-9017-f042cfa39122,syscc=true,proposal=0x0,canname=lscc:1.2.0) -[1cc 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[1cd 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[1ce 05-31 05:21:34.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bb8b044]Received message INIT from peer -[1cf 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8bb8b044] Handling ChaincodeMessage of type: INIT(state:ready) -[1d0 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8bb8b044] Received INIT, initializing chaincode -[1d1 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bb8b044] Init get response status: 200 -[1d2 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8bb8b044] Init succeeded. Sending COMPLETED -[1d3 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8bb8b044] send state message COMPLETED -[1d4 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8bb8b044] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[1d5 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8bb8b044] notifying Txid:8bb8b044-c0aa-4124-9017-f042cfa39122, channelID:businesschannel -[1d6 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[1d7 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed -[1d8 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8bb8b044-c0aa-4124-9017-f042cfa39122] -[1d9 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[1da 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [0215bd07-f908-40e8-8cdf-b59ae3929c6a] -[1db 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=0215bd07-f908-40e8-8cdf-b59ae3929c6a,syscc=true,proposal=0x0,canname=qscc:1.2.0) -[1dc 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -[1dd 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[1de 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0215bd07]Received message INIT from peer -[1df 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [0215bd07] Handling ChaincodeMessage of type: INIT(state:ready) -[1e0 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [0215bd07] Received INIT, initializing chaincode -[1e1 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC -[1e2 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0215bd07] Init get response status: 200 -[1e3 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [0215bd07] Init succeeded. Sending COMPLETED -[1e4 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [0215bd07] send state message COMPLETED -[1e5 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [0215bd07] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[1e6 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [0215bd07] notifying Txid:0215bd07-f908-40e8-8cdf-b59ae3929c6a, channelID:businesschannel -[1e7 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[1e8 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed -[1e9 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [0215bd07-f908-40e8-8cdf-b59ae3929c6a] -[1ea 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [9fbac08c-0497-4039-87c8-ce95a448d9d1] -[1eb 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] -[1ec 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [9fbac08c-0497-4039-87c8-ce95a448d9d1] -[1ed 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -[1ee 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Entry -[1ef 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.CreateBlockEvents -> DEBU Exit -[1f0 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Entry -[1f1 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event processor timeout > 0 -[1f2 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Event sent successfully -[1f3 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.joinChain.Send -> DEBU Exit -[1f4 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c9de6a52] Transaction completed. Sending COMPLETED -[1f5 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [c9de6a52] send state message COMPLETED -[1f6 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c9de6a52] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[1f7 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c9de6a52] notifying Txid:c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a, channelID: -[1f8 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[1f9 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][c9de6a52dc20ae9eaeaf6830c3ad3030709d9c38e829bc8ce0c8c17c3b36dc1a] Exit -[1fa 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][c9de6a52] Exit -[1fb 05-31 05:21:34.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55302 -[1fc 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting, peers found 0 -[1fd 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[1fe 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[1ff 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[200 05-31 05:21:35.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[201 05-31 05:21:36.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[202 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[203 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.beLeader -> INFO [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Becoming a leader -[204 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/core/deliverservice] leaderElection.beLeader.func1.StartDeliverForChannel -> DEBU This peer will pass blocks from orderer service to other peers for channel businesschannel -[205 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[206 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true -[207 05-31 05:21:40.92 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[208 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 -[209 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... -[20a 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering -[20b 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel -[20c 05-31 05:21:40.93 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting -[20d 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [0] -[20e 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [0] -[20f 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[210 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[212 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc420221960 env 0xc42210ef90 txn 0 -[211 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [0] -[214 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [0] -[213 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42210ef90 -[215 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -[216 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[217 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -[218 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -[219 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -[21a 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -[21b 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc4221e3000, header channel_header:"\010\001\032\006\010\340\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\325\006\245\027\353`\2200A\255\315\233\374\263 L\212'tt\354]\305]" -[21c 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -[21d 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[21e 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[21f 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[220 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[221 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[222 05-31 05:21:40.94 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[223 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[224 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[225 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[226 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[227 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[228 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[229 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[22a 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[22b 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[22c 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP -[22d 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins -[22e 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers -[22f 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[230 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[231 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[232 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[233 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[234 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[235 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[236 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[237 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[238 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[239 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[23a 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[23b 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[23c 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[23d 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[23e 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[23f 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[240 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[241 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[242 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[243 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[244 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[245 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[246 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[247 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[248 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[249 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[24a 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[24b 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[24c 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[24d 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[24e 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[24f 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are -[250 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[251 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[252 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[253 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[254 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[255 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[256 05-31 05:21:40.95 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[257 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[258 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[259 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[25a 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[25b 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[25c 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[25d 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[25e 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[25f 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[260 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[261 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[262 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[263 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[264 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[265 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[266 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[267 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[268 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[269 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[26a 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[26b 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[26c 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[26d 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[26e 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[26f 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[270 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[271 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[272 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[273 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[274 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[275 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[276 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[277 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[278 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[279 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[27a 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[27b 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[27c 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[27d 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[27e 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[27f 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[280 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[281 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[282 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[283 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[284 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[285 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[286 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[287 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[288 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[289 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[28a 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[28b 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[28c 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[28d 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[28e 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[28f 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[290 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself -[291 05-31 05:21:40.96 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[292 05-31 05:21:40.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[293 05-31 05:21:40.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[294 05-31 05:21:40.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[295 05-31 05:21:40.97 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[296 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[297 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc420221960 env 0xc42210ef90 txn 0 -[298 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[299 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[29a 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[29b 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] -[29c 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[29d 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] -[29e 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[29f 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[2a0 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -[2a1 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -[2a2 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -[2a3 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -[2a4 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[2a5 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -[2a6 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[2a7 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[2a8 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator -[2a9 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[2aa 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[2ab 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[2ac 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage -[2ad 05-31 05:21:40.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] -[2ae 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0xb, 0x15, 0x74, 0xf2, 0x5c, 0x99, 0x28, 0x95, 0x1, 0xd7, 0x8a, 0x82, 0x2e, 0x8c, 0x80, 0x51, 0xbe, 0xff, 0x92, 0xb1, 0xb5, 0x58, 0x12, 0xa5, 0x7c, 0x17, 0x9a, 0x2a, 0xb5, 0x56, 0x83, 0x2f} txOffsets= +[16a 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx ID: [] to index +[16b 06-12 02:14:16.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=38, bytesLength=12078] for tx number:[0] ID: [] to blockNumTranNum index +[16c 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[12122], isChainEmpty=[false], lastBlockNumber=[0] +[16d 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [0] +[16e 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [0] +[16f 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [0] with 1 transaction(s) +[171 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger started: Purging expired private data till block number [0] +[172 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData.retrieveExpiryEntries -> DEBU retrieveExpiryEntries(): startKey=[]byte{0x3, 0x0, 0x0}, endKey=[]byte{0x3, 0x1, 0x1, 0x0} +[173 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] purgeExpiredData.retrieveExpiryEntries.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x3, 0x1, 0x1, 0x0}] +[170 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to state database +[174 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] purgeExpiredData -> DEBU [0] Entries purged from private data storage +[176 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] -> INFO Purger finished +[175 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [0] +[177 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[178 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x0, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] +[179 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [0] +[17a 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +[17b 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[17c 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +[17d 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[17e 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [1] +[17f 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x1, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] +[181 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [1] +[180 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [0] transactions to history database +[182 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [0] with [1] transactions +[183 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[184 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger.Create.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [0] +[185 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/ledgermgmt] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.CreateLedger -> INFO Created ledger [businesschannel] with genesis block +[186 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [cfb61aec-c300-459d-acb8-68d03c4d3963] +[187 06-12 02:14:16.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.retrievePersistedConf.GetState.getState.GetState.GetState -> DEBU GetState(). ns=, key=resourcesconfigtx.CHANNEL_CONFIG_KEY +[188 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.retrievePersistedChannelConfig.Done -> DEBU Done with transaction simulation / query execution [cfb61aec-c300-459d-acb8-68d03c4d3963] +[189 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[18a 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[18b 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[18c 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[18d 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[18e 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[18f 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[190 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[191 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[192 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[193 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[194 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[195 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[196 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[197 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[198 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[199 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[19a 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[19b 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[19c 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[19d 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[19e 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[19f 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1a0 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[1a1 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[1a2 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[1a3 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[1a4 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[1a5 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[1a6 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are +[1a7 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[1a8 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[1a9 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[1aa 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[1ab 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[1ac 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[1ad 06-12 02:14:16.15 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[1ae 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[1af 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[1b0 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[1b1 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[1b2 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[1b3 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[1b4 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[1b5 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[1b6 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[1b7 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[1b8 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[1b9 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[1ba 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[1bb 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[1bc 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[1bd 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[1be 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[1bf 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[1c0 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[1c1 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[1c2 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[1c3 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[1c4 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[1c5 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[1c6 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[1c7 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[1c8 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[1c9 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[1ca 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[1cb 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[1cc 06-12 02:14:16.16 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[1cd 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[1ce 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/configtx] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[1cf 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/capabilities] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[1d0 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[1d1 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[1d2 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[1d3 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[1d4 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[1d5 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/common/channelconfig] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[1d6 06-12 02:14:16.17 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[1d7 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[1d8 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[1d9 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[1da 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.NewBundleSource.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[1db 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing -> DEBU CreateDirIfMissing [/var/hyperledger/production/transientStore/] +[1dc 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU Before creating dir - [/var/hyperledger/production/transientStore/] does not exist +[1dd 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/common/ledger/util] Invoke.InvokeNoShim.joinChain.CreateChainFromBlock.createChain.OpenStore.NewStoreProvider.NewProvider.Open.CreateDirIfMissing.logDirStatus -> DEBU After creating dir - [/var/hyperledger/production/transientStore/] exists +[1de 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/peer] Invoke.InvokeNoShim.joinChain.InitChain -> DEBU Init chain businesschannel +[1df 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/peer/node] Invoke.InvokeNoShim.joinChain.InitChain.func6 -> DEBU Deploying system CC, for chain +[1e0 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[1e1 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[1e2 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/gossip/election] -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[1e3 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8ead4aeb-78ca-4850-9f5b-e558a3c48dd7] +[1e4 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=cscc,version=1.2.0,txid=8ead4aeb-78ca-4850-9f5b-e558a3c48dd7,syscc=true,proposal=0x0,canname=cscc:1.2.0) +[1e5 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +[1e6 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[1e7 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ead4aeb]Received message INIT from peer +[1e8 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8ead4aeb] Handling ChaincodeMessage of type: INIT(state:ready) +[1e9 06-12 02:14:16.18 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8ead4aeb] Received INIT, initializing chaincode +[1ea 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Init -> INFO Init CSCC +[1eb 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ead4aeb] Init get response status: 200 +[1ec 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8ead4aeb] Init succeeded. Sending COMPLETED +[1ed 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8ead4aeb] send state message COMPLETED +[1ee 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8ead4aeb] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[1ef 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8ead4aeb] notifying Txid:8ead4aeb-78ca-4850-9f5b-e558a3c48dd7, channelID:businesschannel +[1f0 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[1f1 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode cscc/businesschannel(github.com/hyperledger/fabric/core/scc/cscc) deployed +[1f2 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [8ead4aeb-78ca-4850-9f5b-e558a3c48dd7] +[1f3 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[1f4 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c5d1c56f-3e3b-417b-a6e6-029d3f78d616] +[1f5 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=c5d1c56f-3e3b-417b-a6e6-029d3f78d616,syscc=true,proposal=0x0,canname=lscc:1.2.0) +[1f6 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[1f7 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[1f8 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5d1c56f]Received message INIT from peer +[1f9 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c5d1c56f] Handling ChaincodeMessage of type: INIT(state:ready) +[1fa 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c5d1c56f] Received INIT, initializing chaincode +[1fb 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5d1c56f] Init get response status: 200 +[1fc 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c5d1c56f] Init succeeded. Sending COMPLETED +[1fd 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [c5d1c56f] send state message COMPLETED +[1fe 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c5d1c56f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[1ff 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c5d1c56f] notifying Txid:c5d1c56f-3e3b-417b-a6e6-029d3f78d616, channelID:businesschannel +[200 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[201 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode lscc/businesschannel(github.com/hyperledger/fabric/core/scc/lscc) deployed +[202 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [c5d1c56f-3e3b-417b-a6e6-029d3f78d616] +[203 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[204 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.GetContext.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [97e17010-1054-416a-a28e-09ab022854d3] +[205 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=97e17010-1054-416a-a28e-09ab022854d3,syscc=true,proposal=0x0,canname=qscc:1.2.0) +[206 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +[207 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[208 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [97e17010]Received message INIT from peer +[209 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [97e17010] Handling ChaincodeMessage of type: INIT(state:ready) +[20a 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [97e17010] Received INIT, initializing chaincode +[20b 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Init -> INFO Init QSCC +[20c 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [97e17010] Init get response status: 200 +[20d 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [97e17010] Init succeeded. Sending COMPLETED +[20e 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [97e17010] send state message COMPLETED +[20f 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [97e17010] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[210 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [97e17010] notifying Txid:97e17010-1054-416a-a28e-09ab022854d3, channelID:businesschannel +[211 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/chaincode] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[212 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/scc] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC -> INFO system chaincode qscc/businesschannel(github.com/hyperledger/fabric/core/scc/qscc) deployed +[213 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.DeploySysCCs.deploySysCC.Done -> DEBU Done with transaction simulation / query execution [97e17010-1054-416a-a28e-09ab022854d3] +[214 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [78f11887-9a5f-497a-a08f-0235dc0611c8] +[215 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [] +[216 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.initMetadataForChannel.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [78f11887-9a5f-497a-a08f-0235dc0611c8] +[217 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/core/cclifecycle] Invoke.InvokeNoShim.joinChain.InitChain.func6.NewChannelSubscription.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +[218 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Entry +[219 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.CreateBlockEvents -> DEBU Exit +[21a 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Entry +[21b 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event processor timeout > 0 +[21c 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Event sent successfully +[21d 06-12 02:14:16.19 UTC] [github.com/hyperledger/fabric/events/producer] Invoke.InvokeNoShim.joinChain.Send -> DEBU Exit +[21e 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1a04dc88] Transaction completed. Sending COMPLETED +[21f 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [1a04dc88] send state message COMPLETED +[220 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1a04dc88] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[221 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1a04dc88] notifying Txid:1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c, channelID: +[222 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[223 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1a04dc8807214255f555a38658384a2ef73ea37b34d730ac128b0de705554e1c] Exit +[224 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1a04dc88] Exit +[225 06-12 02:14:16.20 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44168 +[226 06-12 02:14:17.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[227 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to peer1.org1.example.com:7051 +[228 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers +[229 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +[22a 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[22b 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 14114666230949712832, Envelope: 942 bytes, Signature: 0 bytes +[22c 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 14114666230949712832, Envelope: 942 bytes, Signature: 0 bytes +[22d 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 106 67 67 65 99 67 103 65 119 73 66 65 103 73 82 65 79 51 85 114 78 82 115 80 53 106 75 77 75 47 120 84 74 43 54 106 108 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 103 119 77 84 77 119 77 68 99 48 77 68 73 50 87 104 99 78 77 106 103 119 77 84 73 52 77 68 99 48 77 68 73 50 10 87 106 66 98 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 102 77 66 48 71 65 49 85 69 65 120 77 87 99 71 86 108 99 106 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 10 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 78 73 116 103 106 85 116 105 107 55 88 99 114 47 84 115 56 118 114 108 70 85 82 85 67 78 111 83 55 114 99 10 50 72 118 107 106 67 53 100 72 56 69 55 70 88 97 117 70 119 76 101 81 106 65 82 65 112 80 56 85 70 52 79 112 116 70 82 87 120 120 70 104 48 66 71 109 76 72 101 86 43 113 57 111 120 54 106 84 84 66 76 77 65 52 71 10 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 72 103 68 65 77 66 103 78 86 72 82 77 66 65 102 56 69 65 106 65 65 77 67 115 71 65 49 85 100 73 119 81 107 77 67 75 65 73 72 103 109 56 119 57 72 69 72 47 114 10 57 52 113 57 70 79 101 101 71 111 75 55 83 108 43 116 112 69 56 84 106 79 69 103 50 53 79 120 65 106 78 72 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 100 50 81 72 76 10 112 75 80 79 118 116 87 106 88 69 66 111 55 104 72 51 108 66 117 51 120 97 76 78 66 107 75 112 52 66 115 72 56 97 115 86 57 119 73 103 85 110 82 89 43 47 53 70 114 66 49 52 84 83 49 43 67 56 79 55 115 113 49 120 10 70 105 47 75 52 86 85 107 99 114 116 50 47 74 72 76 101 50 77 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +[22e 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[22f 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +[230 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[231 06-12 02:14:17.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[232 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44176 +[233 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc420435a40 +[234 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[235 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[236 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[237 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[238 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[239 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4201bc9b0, header 0xc420435da0 +[23a 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"cscc" +[23b 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][10062d85] processing txid: 10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f +[23c 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][10062d85] Entry chaincode: name:"cscc" +[23d 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f] Entry chaincode: name:"cscc" version: 1.2.0 +[23e 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=cscc,version=1.2.0,txid=10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f,syscc=true,proposal=0xc4201bc9b0,canname=cscc:1.2.0) +[23f 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: cscc:1.2.0 +[240 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[241 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10062d85]Received message TRANSACTION from peer +[242 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [10062d85] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[243 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [10062d85] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[244 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/scc/cscc] Invoke -> DEBU Invoke function: GetChannels +[245 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [10062d85] Transaction completed. Sending COMPLETED +[246 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [10062d85] send state message COMPLETED +[247 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [10062d85] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[248 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [10062d85] notifying Txid:10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f, channelID: +[249 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[24a 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][10062d85555575d98444b23445d8529da46ccea9fa0eb746d410aab385a5615f] Exit +[24b 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][10062d85] Exit +[24c 06-12 02:14:17.11 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44176 +[24d 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] waitForMembershipStabilization -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting, peers found 1 +[24e 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[24f 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[250 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.propose -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[251 06-12 02:14:17.18 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[252 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[253 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[254 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[255 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[256 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:c\254\377*\322\367\215\303\202\215\236R\010\276#\203\233\002 hSk\014O\231\371\251E\217\222\310\323\027\236V\210\344<\024\001U\264\265\"\027\013>\352\245\247\350" > > > , Envelope: 1079 bytes, Signature: 0 bytes +[257 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[258 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:c\254\377*\322\367\215\303\202\215\236R\010\276#\203\233\002 hSk\014O\231\371\251E\217\222\310\323\027\236V\210\344<\024\001U\264\265\"\027\013>\352\245\247\350" > > > , Envelope: 1079 bytes, Signature: 0 bytes +[259 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[25a 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[25b 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[25c 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[25d 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +[25e 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[25f 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[260 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[261 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[262 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes to 1 peers +[263 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:c\254\377*\322\367\215\303\202\215\236R\010\276#\203\233\002 hSk\014O\231\371\251E\217\222\310\323\027\236V\210\344<\024\001U\264\265\"\027\013>\352\245\247\350" > > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\006\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 o/\376\252)\343K\304\227}\267\020\360\372\371\361\206\305\017\340\335\001\273\037\025!E\313\016S\232\256\002 *\360\025[*\344<\n\216\271\004@K\370]\223\001\325\304\301\322b\244S\267\002\371b2di\205" secret_envelope: > +[264 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +[265 06-12 02:14:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[266 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44184 +[267 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4203ee2a0 +[268 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[269 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[26a 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[26b 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[26c 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[26d 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42049e3c0, header 0xc4203ee6c0 +[26e 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[26f 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][e01fcd58] processing txid: e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8 +[270 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][e01fcd58] Entry chaincode: name:"qscc" +[271 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8] Entry chaincode: name:"qscc" version: 1.2.0 +[272 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=qscc,version=1.2.0,txid=e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8,syscc=true,proposal=0xc42049e3c0,canname=qscc:1.2.0) +[273 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +[274 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[275 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e01fcd58]Received message TRANSACTION from peer +[276 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [e01fcd58] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[277 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [e01fcd58] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[278 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[279 06-12 02:14:17.83 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo +[27a 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [e01fcd58] Transaction completed. Sending COMPLETED +[27b 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [e01fcd58] send state message COMPLETED +[27c 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [e01fcd58] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[27d 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [e01fcd58] notifying Txid:e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8, channelID: +[27e 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[27f 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][e01fcd584e29d7c3482dccb216cb2d48551674b1419989c28a8e1c8c08b9eca8] Exit +[280 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][e01fcd58] Exit +[281 06-12 02:14:17.84 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44184 +[282 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes +[283 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes +[284 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[285 06-12 02:14:18.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[286 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[287 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[288 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[289 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[28a 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[28b 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[28c 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[28d 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +[28e 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[28f 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[290 06-12 02:14:18.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[291 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[292 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[293 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[294 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[295 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\007\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\366<\272\016(\r\037\332\314\214{d\207\320\251\201\035B\230\261E-L\000\357\005g\277\031\230y\243\002 \033\212(\242\334\316%\r\021\204\310\004\357R\374UW\016\272\024}\204\332\333\006,\013\222\236\032[\234" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes to 1 peers +[296 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\007\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\366<\272\016(\r\037\332\314\214{d\207\320\251\201\035B\230\261E-L\000\357\005g\277\031\230y\243\002 \033\212(\242\334\316%\r\021\204\310\004\357R\374UW\016\272\024}\204\332\333\006,\013\222\236\032[\234" secret_envelope: > > , Envelope: 1078 bytes, Signature: 0 bytes +[297 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[298 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +[299 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +[29a 06-12 02:14:20.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29b 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +[29c 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29d 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2151 bytes, Signature: 0 bytes +[29e 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[29f 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[2a0 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a1 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2a2 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[2a3 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[2a4 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[2a5 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +[2a6 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2a7 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a8 06-12 02:14:20.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a9 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 1 peers +[2ab 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2ac 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2aa 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 1 peers +[2ad 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[2ae 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2af 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 1 items, Envelope: 199 bytes, Signature: 0 bytes +[2b0 06-12 02:14:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b1 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2b2 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2b3 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b4 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2b5 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b6 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[2b7 06-12 02:14:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b8 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2b9 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2ba 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2bb 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2bc 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35342 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\352rK+\301\240\351\0074i\ry\350\3639P\250;\272\203\236\200\323\305@q\\" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +[2bd 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2be 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352rK+\301\240\351\0074i\ry\350\3639P\250;\272\203\236\200\323\305@q\\" secret_envelope: > > , Envelope: 1079 bytes, Signature: 0 bytes +[2bf 06-12 02:14:21.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2c0 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[2c1 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[2c2 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[2c3 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +[2c4 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2c5 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2c6 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2c7 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[2c8 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2152 bytes, Signature: 0 bytes to 1 peers +[2c9 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\352rK+\301\240\351\0074i\ry\350\3639P\250;\272\203\236\200\323\305@q\\" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\010\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\311TD\016\242\307\342\231o\022\213>\243pK\236\372\023>\340G\257\005\001\001FeA\032\351\005\245\002 \020\t\021H\3351p\256\2074\321Q)\342\336+\230\272\324\005>\367\310sM\004\320\352'\016\204C" secret_envelope: > +[2ca 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2152 bytes, Signature: 0 bytes +[2cb 06-12 02:14:21.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2cc 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[2cd 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +[2ce 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2cf 06-12 02:14:22.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2d0 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[2d1 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection.beLeader -> INFO [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Becoming a leader +[2d2 06-12 02:14:22.19 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 +[2d3 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] leaderElection -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[2d4 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[2d5 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[2d6 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Connected to orderer.example.com:7050 +[2d7 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect -> DEBU Establishing gRPC stream with orderer.example.com:7050 ... +[2d8 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Entering +[2d9 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect.func1.RequestBlocks -> DEBU Starting deliver with block [1] for channel businesschannel +[2da 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.connect.afterConnect -> DEBU Exiting +[2db 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[2dc 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[2dd 06-12 02:14:22.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2de 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [1], peers number [1] +[2df 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [1], peers number [1] +[2e0 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[2e1 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[2e2 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc42254c7c0 env 0xc4222c1da0 txn 0 +[2e3 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4222c1da0 +[2e4 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [2], peers number [1] +[2e5 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +[2e6 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[2e7 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +[2e8 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +[2e9 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +[2ea 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +[2ec 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [2], peers number [1] +[2eb 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422a63000, header channel_header:"\010\001\032\006\010\372\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\2500H\275\023\024[\257\200E\237{m\216\350\034\276\032\252X\343S\003\375" +[2ee 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes to 1 peers +[2ef 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes to 1 peers +[2f0 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 14028 bytes, seq: 2}, Envelope: 14058 bytes, Signature: 0 bytes +[2f1 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2f2 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 13970 bytes, seq: 1}, Envelope: 14000 bytes, Signature: 0 bytes +[2f3 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2ed 06-12 02:14:22.21 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +[2f4 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[2f5 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[2f6 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[2f7 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[2f8 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[2f9 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[2fa 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[2fb 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[2fc 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[2fd 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[2fe 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[2ff 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[300 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[301 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[302 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[303 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org1MSP +[304 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org1MSP with mod_policy Admins +[305 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org1MSP/AnchorPeers +[306 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[307 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[308 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[309 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[30a 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[30b 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[30c 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[30d 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[30e 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[30f 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[310 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[311 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[312 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[313 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[314 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[315 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[316 06-12 02:14:22.22 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[317 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[318 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[319 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[31a 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[31b 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[31c 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[31d 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[31e 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[31f 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[320 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[321 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[322 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[323 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[324 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[325 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[326 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[327 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[328 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[329 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[32a 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[32b 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[32c 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[32d 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[32e 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[32f 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[330 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[331 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[332 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[333 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[334 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[335 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[336 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are +[337 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[338 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[339 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[33a 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[33b 06-12 02:14:22.23 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[33c 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[33d 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[33e 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[33f 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[340 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[341 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[342 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[343 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[344 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[345 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[346 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[347 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[348 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[349 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[34a 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[34b 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[34c 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[34d 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[34e 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[34f 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[350 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[351 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[352 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[353 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[354 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[355 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[356 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[357 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[358 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[359 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[35a 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[35b 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[35c 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[35d 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[35e 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[35f 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[360 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[361 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[362 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[363 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[364 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[365 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[366 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[367 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself +[368 06-12 02:14:22.24 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[369 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[36a 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[36b 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[36c 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[36d 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +[36f 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[370 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[371 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[372 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [1] +[373 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[374 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [1] +[375 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[376 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[377 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +[378 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +[379 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +[37a 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +[37b 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[37c 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:2 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +[37d 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[37e 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +[37f 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [1] Transaction index [0] TxId [] marked as valid by state validator +[380 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[381 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[382 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[383 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] to storage +[36e 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc42254c7c0 env 0xc4222c1da0 txn 0 +[384 06-12 02:14:22.25 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [1] +[385 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=1, blockHash=[]byte{0x71, 0x5a, 0x51, 0xe9, 0xa2, 0xaf, 0xec, 0xef, 0x2d, 0x90, 0x9d, 0xf1, 0x4a, 0x14, 0x48, 0x4f, 0xc, 0x23, 0xa9, 0xe9, 0xf2, 0xac, 0x62, 0xe, 0xce, 0x9a, 0x5e, 0x31, 0xff, 0x8c, 0x6, 0xcb} txOffsets= txId= locPointer=offset=70, bytesLength=12094 ] -[2af 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx ID: [] to index -[2b0 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12191, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index -[2b1 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] -[2b2 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] -[2b3 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] -[2b4 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) -[2b5 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database -[2b6 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[2b7 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[2b8 05-31 05:21:40.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -[2b9 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[2ba 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] -[2bb 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database -[2bc 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions -[2bd 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[2be 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] -[2bf 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[2c0 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[2c1 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[2c2 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[2c3 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[2c4 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[2c5 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[2c6 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[2c7 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[2c8 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[2c9 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[2ca 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[2cb 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b47e00 env 0xc422ba1230 txn 0 -[2cc 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc422ba1230 -[2cd 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -[2ce 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[2cf 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -[2d0 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -[2d1 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -[2d2 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -[2d3 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422c00000, header channel_header:"\010\001\032\006\010\342\214\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\211\217\305\371\334Y:\270=c\033\236\353\320g\353\256\231\201\266G\240\357\370" -[2d4 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -[2d5 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[2d6 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[2d7 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[2d8 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[2d9 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[2da 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[2db 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[2dc 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[2dd 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[2de 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[2df 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[2e0 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[2e1 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[2e2 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[2e3 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[2e4 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP -[2e5 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins -[2e6 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers -[2e7 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to -[2e8 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to -[2e9 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to -[2ea 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2eb 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2ec 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2ed 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2ee 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2ef 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2f0 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2f1 05-31 05:21:41.00 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2f2 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2f3 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2f4 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[2f5 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2f6 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2f7 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[2f8 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[2f9 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[2fa 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[2fb 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[2fc 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[2fd 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[2fe 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[2ff 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[300 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[301 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[302 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[303 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[304 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[305 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[306 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[307 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[308 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[309 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[30a 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[30b 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[30c 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[30d 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[30e 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[30f 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[310 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[311 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[312 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[313 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[314 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[315 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[316 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[317 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[318 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[319 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[31a 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[31b 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[31c 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[31d 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[31e 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[31f 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[320 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[321 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[322 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[323 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[324 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[325 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[326 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[327 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[328 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[329 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[32a 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[32b 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[32c 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[32d 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[32e 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[32f 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[330 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[331 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[332 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[333 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[334 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[335 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[336 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[337 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[338 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[339 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[33a 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[33b 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[33c 05-31 05:21:41.01 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[33d 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[33e 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[33f 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[340 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[341 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[342 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[343 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[344 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[345 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[346 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[347 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[348 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[349 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself -[34a 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -[34b 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -[34c 05-31 05:21:41.02 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[34d 05-31 05:21:41.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -[34e 05-31 05:21:41.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -[34f 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -[350 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[351 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[352 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[353 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[354 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[355 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b47e00 env 0xc422ba1230 txn 0 -[356 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[357 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[358 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[359 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] -[35a 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[35b 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] -[35c 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[35d 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[35e 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -[35f 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -[360 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -[361 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -[362 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[363 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -[364 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[365 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[366 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator -[367 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[368 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[369 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[36a 05-31 05:21:41.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage -[36b 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] -[36c 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:2109433561894600604 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\013\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 W\267I\367R\037/>\016U\223\244\317WY\223\020\315\312B<{\234\216\266_\010f\245?P\311\002 >\350\202\203;\323:\347\353S\344\361&\220\364\244\373I!\223(\206\005bX+\251\317\217\037\273\301" > > , Envelope: 982 bytes, Signature: 0 bytes to 1 peers -[36d 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:2109433561894600604 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\013\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 W\267I\367R\037/>\016U\223\244\317WY\223\020\315\312B<{\234\216\266_\010f\245?P\311\002 >\350\202\203;\323:\347\353S\344\361&\220\364\244\373I!\223(\206\005bX+\251\317\217\037\273\301" > > , Envelope: 982 bytes, Signature: 0 bytes -[36e 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[36f 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x1c, 0x89, 0x5b, 0x8a, 0xa8, 0xc6, 0x73, 0x3c, 0xac, 0x1f, 0xe1, 0x55, 0x12, 0x70, 0xf, 0x84, 0xef, 0xfb, 0xa4, 0xcc, 0xbe, 0x67, 0x8, 0xce, 0x57, 0xdf, 0x28, 0x5b, 0xd, 0x99, 0x90, 0xd4} txOffsets= -txId= locPointer=offset=70, bytesLength=12152 +[386 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx ID: [] to index +[387 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=12192, bytesLength=12094] for tx number:[0] ID: [] to blockNumTranNum index +[388 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[26081], isChainEmpty=[false], lastBlockNumber=[1] +[389 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [1] +[38a 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [1] +[38b 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [1] with 1 transaction(s) +[38c 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to state database +[38d 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[38e 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +[38f 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[390 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +[391 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[392 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [2] +[393 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [1] transactions to history database +[395 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [1] with [1] transactions +[396 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[394 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x2, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] +[397 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [2] +[398 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [1] +[399 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[39a 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[39b 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[39c 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[39d 06-12 02:14:22.26 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[39e 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[39f 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[3a0 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[3a1 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[3a2 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[3a3 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[3a4 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[3a5 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422db8720 env 0xc4225fd0e0 txn 0 +[3a6 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4225fd0e0 +[3a7 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +[3a8 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[3a9 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +[3aa 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +[3ab 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +[3ac 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +[3ad 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc422e71000, header channel_header:"\010\001\032\006\010\374\330\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030 \211=\226\252&\376\000\325\257M\340r\275\323\342I^IDn\017\311\343" +[3ae 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +[3af 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3b0 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3b1 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[3b2 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[3b3 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3b4 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3b5 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3b6 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3b7 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3b8 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[3b9 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[3ba 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[3bb 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3bc 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[3bd 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[3be 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org2MSP +[3bf 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Org2MSP with mod_policy Admins +[3c0 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org2MSP/AnchorPeers +[3c1 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3c2 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3c3 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3c4 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3c5 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3c6 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3c7 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[3c8 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3c9 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3ca 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3cb 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to +[3cc 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to +[3cd 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to +[3ce 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3cf 06-12 02:14:22.27 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3d0 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3d1 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[3d2 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[3d3 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[3d4 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[3d5 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[3d6 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[3d7 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[3d8 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[3d9 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3da 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[3db 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[3dc 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[3dd 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[3de 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[3df 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[3e0 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3e1 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3e2 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3e3 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[3e4 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[3e5 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[3e6 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[3e7 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[3e8 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3e9 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3ea 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3eb 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[3ec 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[3ed 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[3ee 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[3ef 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[3f0 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[3f1 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[3f2 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[3f3 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[3f4 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[3f5 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[3f6 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[3f7 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[3f8 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[3f9 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[3fa 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[3fb 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[3fc 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[3fd 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[3fe 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[3ff 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[400 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[401 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[402 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[403 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[404 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[405 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[406 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[407 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[408 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[409 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[40a 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[40b 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[40c 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[40d 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[40e 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[40f 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[410 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[411 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[412 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[413 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[414 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[415 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[416 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[417 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[418 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[419 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[41a 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[41b 06-12 02:14:22.28 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[41c 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[41d 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[41e 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[41f 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[420 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[421 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[422 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[423 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself +[424 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +[425 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +[426 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[427 06-12 02:14:22.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +[428 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +[429 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +[42a 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:13978198190710968351 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\017" signature:"0E\002!\000\260B\351F\351\300(\034d\034\352\205I\301\323\276)\231\037)\212\352u\270\300\206\214\025\347\364\305A\002 4x0|\305\334F\263B0)\2021\205\243J4\334\235N\255\307\n\253\231\313\363~\202(p\352" > > , Envelope: 177 bytes, Signature: 0 bytes to 1 peers +[42b 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:13978198190710968351 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\017" signature:"0E\002!\000\260B\351F\351\300(\034d\034\352\205I\301\323\276)\231\037)\212\352u\270\300\206\214\025\347\364\305A\002 4x0|\305\334F\263B0)\2021\205\243J4\334\235N\255\307\n\253\231\313\363~\202(p\352" > > , Envelope: 177 bytes, Signature: 0 bytes +[42c 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[42d 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[42e 06-12 02:14:22.30 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[42f 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[430 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[431 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +[432 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422db8720 env 0xc4225fd0e0 txn 0 +[433 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[434 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[435 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[436 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [2] +[437 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[438 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [2] +[439 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[43a 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[43b 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +[43c 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +[43d 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +[43e 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +[43f 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[440 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:3 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +[441 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[442 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +[443 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [2] Transaction index [0] TxId [] marked as valid by state validator +[444 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[445 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[446 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[447 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] to storage +[448 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [2] +[449 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +[44a 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:35384 +[44b 06-12 02:14:22.31 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35384 +[44c 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35384 +[44d 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35384 +[44e 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +[44f 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35342 disconnected +[450 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing +[451 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[452 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +[453 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35384 disconnected +[454 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[455 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +[456 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=2, blockHash=[]byte{0x11, 0x61, 0x9f, 0x74, 0x2a, 0x75, 0xba, 0x72, 0x46, 0x54, 0x9e, 0xb0, 0xdc, 0xb3, 0x98, 0xed, 0xeb, 0xfa, 0xa0, 0xae, 0xea, 0x73, 0x9a, 0x0, 0x40, 0x67, 0xea, 0x20, 0x7a, 0xc0, 0xec, 0x73} txOffsets= +txId= locPointer=offset=70, bytesLength=12151 ] -[370 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx ID: [] to index -[371 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12152] for tx number:[0] ID: [] to blockNumTranNum index -[372 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40097], isChainEmpty=[false], lastBlockNumber=[2] -[373 05-31 05:21:41.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] -[374 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] -[375 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) -[376 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database -[377 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[378 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[379 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -[37a 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -[37b 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[37c 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -[37e 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -[37f 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -[380 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[381 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database -[382 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions -[383 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[37d 05-31 05:21:41.07 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] -[384 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 2109433561894600604, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 2110 bytes, Signature: 0 bytes -[385 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 2109433561894600604, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 2110 bytes, Signature: 0 bytes -[386 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[387 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 2109433561894600604, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 2110 bytes, Signature: 0 bytes -[388 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[389 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: -[38a 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity -[38b 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[38c 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -[38d 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] -[38e 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[38f 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[390 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[391 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[393 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[394 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[395 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[396 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[397 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[398 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[392 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes -[399 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[39a 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -[39b 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes]}, deadMembers={[]} -[39c 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes -[39d 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -[39e 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[39f 05-31 05:21:41.08 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[3a0 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:33210 -[3a1 05-31 05:21:41.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33210 -[3a2 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33210 -[3a3 05-31 05:21:41.18 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33210 -[3a4 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -[3a5 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33210 disconnected -[3a6 05-31 05:21:41.19 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[3a7 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:33212 -[3a8 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33212 -[3a9 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33212 -[3aa 05-31 05:21:41.20 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33212 -[3ab 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:8484881097075392753 tag:EMPTY mem_req: > > , Envelope: 1087 bytes, Signature: 0 bytes -[3ac 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[3ad 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:8484881097075392753 tag:EMPTY mem_req: > > , Envelope: 1087 bytes, Signature: 0 bytes -[3ae 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[3af 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]}, deadMembers={[]} -[3b0 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[3b1 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -[3b2 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[3b4 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[3b5 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 8484881097075392753, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2160 bytes, Signature: 0 bytes to 1 peers -[3b6 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\014\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0E\002!\000\336H%\310N\316\010\3763\220q,\271\236\377\263\265\257K@\"\257\340H\320\t\363\3756\350%f\002 \0355\210\021\035|\324ge\321\321\335\333\244C\2400^!0pG\302\334\016\362\255,1\327t\356" secret_envelope: > -[3b7 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 8484881097075392753, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2160 bytes, Signature: 0 bytes -[3b8 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[3b3 05-31 05:21:41.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[3b9 05-31 05:21:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:33218 -[3ba 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:13494080481624671681 tag:EMPTY mem_req:\367\364\330\274\334\257)Q%\232\341\252\002 p\341F\316\302\205\010\304\330\022U\336\004\002\350\004\325\361\246\203\\]\211\213wI\361\356\305\220\023\375" secret_envelope: > > , Envelope: 1090 bytes, Signature: 0 bytes -[3bb 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[3bc 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:13494080481624671681 tag:EMPTY mem_req:\367\364\330\274\334\257)Q%\232\341\252\002 p\341F\316\302\205\010\304\330\022U\336\004\002\350\004\325\361\246\203\\]\211\213wI\361\356\305\220\023\375" secret_envelope: > > , Envelope: 1090 bytes, Signature: 0 bytes -[3bd 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[3be 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[3bf 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" -[3c0 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" -[3c1 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[3c2 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[3c3 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[3c4 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[3c5 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[3c6 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 13494080481624671681, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2162 bytes, Signature: 0 bytes to 1 peers -[3c7 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\367\364\330\274\334\257)Q%\232\341\252\002 p\341F\316\302\205\010\304\330\022U\336\004\002\350\004\325\361\246\203\\]\211\213wI\361\356\305\220\023\375" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\r\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 \"\327\031Q*b\216\343\034\217\007;\231\r\n+\315R\336\311h\023\273tN\231\223\377co\314_\002 \025>\244\251T\177\261\353\036\341\316\340lF\262\232Gy\230\220;\304L\215Y\323\357H\351~\320\365" secret_envelope:j\211\253\027\316\010\260\\5wv\274\320\270c\241\236\3734Y\225\006>\002 k[\216\024\235\022i\210eJ7\032K\347\333\303\001\027\261\340e\215\320\304b\247\240\221\311gJ\t" > > -[3c8 05-31 05:21:41.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 13494080481624671681, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 2162 bytes, Signature: 0 bytes -[3c9 05-31 05:21:41.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[3ca 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:52868 -[3cb 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:52868 -[3cc 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:52868 -[3cd 05-31 05:21:41.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:52868 -[3ce 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -[3cf 05-31 05:21:41.45 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:52868 disconnected -[3d0 05-31 05:21:41.46 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[3d1 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:36220 -[3d2 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36220 -[3d3 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36220 -[3d4 05-31 05:21:41.49 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36220 -[3d5 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[3d6 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -[3d7 05-31 05:21:41.50 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing -[3d8 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:52870 -[3d9 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:52870 -[3da 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:52870 -[3db 05-31 05:21:41.51 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:52870 -[3dc 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -[3dd 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36220 disconnected -[3de 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[3df 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[3e0 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[3e1 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[3e2 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[3e3 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[3e4 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[3e5 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[3e6 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[3e7 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[3e8 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[3e9 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[3ea 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[3eb 05-31 05:21:41.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[3ec 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[3ed 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[3ee 05-31 05:21:41.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[3ef 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:52870 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:6652470269808512777 tag:EMPTY mem_req: > , Envelope: 175 bytes, Signature: 0 bytes -[3f0 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[3f1 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:6652470269808512777 tag:EMPTY mem_req: > , Envelope: 175 bytes, Signature: 0 bytes -[3f2 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[3f3 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[3f4 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]}, deadMembers={[]} -[3f5 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[3f6 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting -[3f7 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[3f8 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[3f9 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[3fa 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 6652470269808512777, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 2270 bytes, Signature: 0 bytes to 1 peers -[3fb 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\016\"\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" signature:"0D\002 f\301\314\300\215F-\310j\306\014\333e\220o\001\222\032OX/\342\024 \273\3548]a-.~\002 5\004\252\014\374k\340^\207\302\354\203\330\2523v\207b=\310\200\371\300\340{\250)\001\204\241\340\177" > -[3fc 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 6652470269808512777, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 2270 bytes, Signature: 0 bytes -[3fd 05-31 05:21:41.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[3fe 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:36226 -[400 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36226 -[3ff 05-31 05:21:41.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -[402 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -[403 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -[404 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -[405 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[401 05-31 05:21:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:36230 -[406 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36230 -[407 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36230 -[408 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36230 -[409 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36226 -[40a 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36226 -[40b 05-31 05:21:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36230 disconnected -[40c 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -[40d 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[40e 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing -[40f 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -[410 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36226 disconnected -[411 05-31 05:21:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[412 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:52878 -[413 05-31 05:21:41.62 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:52878 -[415 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:52878 -[416 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:52878 -[414 05-31 05:21:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:52870 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -[417 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[418 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -[419 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[41a 05-31 05:21:41.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[41e 05-31 05:21:41.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[41f 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[420 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[421 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[422 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[423 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[424 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[425 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[426 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes to 1 peers -[428 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes -[429 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[42a 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[42b 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[42c 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[42d 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[41b 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[42e 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -[42f 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:52870 disconnected -[430 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[431 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[432 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[41c 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -[41d 05-31 05:21:41.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:52878 disconnected -[433 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[427 05-31 05:21:41.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\020" signature:"0E\002!\000\323\025\231TM`p\225\n\236\300\265\036\2745\207Y\245WP\\<\332.\377\251s\237E\201\307\260\002 VeL\323\363\272\342*\001\246\017!#=\337\365`i\356'#\210\304\241\371\363A\360\272F\024Y" > -[434 05-31 05:21:41.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[435 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[436 05-31 05:21:41.69 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing -[437 05-31 05:21:41.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[438 05-31 05:21:41.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.2:7051 -[439 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:7051 -[43a 05-31 05:21:41.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:7051 -[43b 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -[43c 05-31 05:21:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[43d 05-31 05:21:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:7051 -[43e 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -[43f 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -[440 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -[441 05-31 05:21:41.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[442 05-31 05:21:41.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:36240 -[443 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36240 -[444 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36240 -[445 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36240 -[446 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -[447 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[448 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing -[449 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -[44a 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36240 disconnected -[44b 05-31 05:21:41.79 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[44c 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[44d 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[44e 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[450 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[451 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[452 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[453 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[454 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[455 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[456 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes in aliveMembership -[457 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[458 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[459 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[44f 05-31 05:21:41.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[45a 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[45b 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[45c 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[45d 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[45e 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[45f 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[460 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[461 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[462 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[463 05-31 05:21:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[464 05-31 05:21:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[465 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:36244 -[466 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36244 -[467 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36244 -[468 05-31 05:21:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36244 -[469 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[46a 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[46b 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[46c 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -[46d 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[46e 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[46f 05-31 05:21:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -[470 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -[471 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -[472 05-31 05:21:41.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[473 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55318 -[474 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42378aab0 -[475 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[476 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[477 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[478 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[479 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[47a 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc423717c70, header 0xc42378ae10 -[47b 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[47c 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][62cb79fd] processing txid: 62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed -[47d 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][62cb79fd] Entry chaincode: name:"lscc" -[47e 05-31 05:21:42.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled -[47f 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed] Entry chaincode: name:"lscc" version: 1.2.0 -[480 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed,syscc=true,proposal=0xc423717c70,canname=lscc:1.2.0) -[481 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[482 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[483 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [62cb79fd]Received message TRANSACTION from peer -[484 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [62cb79fd] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[485 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [62cb79fd] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[486 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -[487 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} -[488 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] -[489 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [5b7fecf3-1ad3-40f4-9752-165c3b66b320] -[48a 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[48b 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [5b7fecf3-1ad3-40f4-9752-165c3b66b320] -[48c 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. -[48d 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer -[48e 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [62cb79fd] Transaction completed. Sending COMPLETED -[48f 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [62cb79fd] send state message COMPLETED -[490 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [62cb79fd] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[491 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [62cb79fd] notifying Txid:62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed, channelID: -[492 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[493 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][62cb79fd2f46bf898c67aa0a75df0d505d4d138b78d19198a85f793aad43f7ed] Exit -[494 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][62cb79fd] Exit -[495 05-31 05:21:42.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55318 -[496 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[497 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[498 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[499 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[49a 05-31 05:21:42.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[49b 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[49c 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[49d 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[49e 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[49f 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[4a0 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[4a1 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[4a2 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[4a3 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[4a4 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[4a5 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[4a6 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[4a7 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[4a8 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[4a9 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[4aa 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\021" signature:"0E\002!\000\352\335\214\227\253z\023\213T\350\264\202\277\226\t\263A\370\236\250\215l\335\366\031^\211\212?\202!\311\002 U\210y]\254*\302]\017\357\325j\356 -[4ab 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[4ac 05-31 05:21:42.82 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4ad 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[4ae 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[4af 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4b0 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[4b1 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4b2 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[4b3 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4b4 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes -[4b5 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4b6 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 3 peers -[4b7 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4b8 05-31 05:21:42.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4b9 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4ba 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4bb 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 1 items, Envelope: 199 bytes, Signature: 0 bytes -[4bc 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes -[4be 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4bf 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4c0 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4c1 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes -[4c2 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4bd 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4c3 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4c4 05-31 05:21:42.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4c5 05-31 05:21:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4c6 05-31 05:21:42.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4c7 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[4c8 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4c9 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[4ca 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[4cb 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[4cc 05-31 05:21:43.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4cd 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4ce 05-31 05:21:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4cf 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4d0 05-31 05:21:43.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4d1 05-31 05:21:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> WARN Failed reading messge from 172.18.0.4:33218, reason: Timed out waiting for connection message from 172.18.0.4:33218 -[4d2 05-31 05:21:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> ERRO Authentication failed: Timed out waiting for connection message from 172.18.0.4:33218 -[4d3 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[4d4 05-31 05:21:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4d5 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4d6 05-31 05:21:43.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4d7 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4d8 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes -[4d9 05-31 05:21:43.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4da 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[4db 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[4dc 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[4dd 05-31 05:21:43.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4de 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[4df 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4e0 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[4e1 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[4e2 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[4e3 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[4e4 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[4e5 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[4e6 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[4e7 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[4e8 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[4e9 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[4ea 05-31 05:21:43.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[4eb 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[4ec 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\022" signature:"0D\002 N\007\240>2`7\023\305\212A\221\253S9\324\260\0070j\370\327\331\352\220\3778\023Z\032\273\370\002 \036\026\235\013\005\325\034\364\204Q\363w\304\002\025|\273\251i\312\370\203`\364\2509\213\370QX\245S" secret_envelope: > -[4ed 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[4ee 05-31 05:21:43.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4ef 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[4f0 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[4f1 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[4f2 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[4f3 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[4f4 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[4f5 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[4f6 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4f7 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[4f8 05-31 05:21:43.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4f9 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[4fa 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[4fb 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -[4fc 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -[4fd 05-31 05:21:43.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[4fe 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -[4ff 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[500 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -[501 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes -[502 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[503 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[504 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[505 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes -[506 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 50 bytes, Signature: 0 bytes -[507 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[508 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -[509 05-31 05:21:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes -[50a 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[50b 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[50c 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[50d 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -[50e 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[50f 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -[510 05-31 05:21:43.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[511 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\023" signature:"0D\002 4\322\224\305\200\346\371O'j\207\025\210\017\003\331\035\274\216\002\222\037\321\371x\302\342\230\242\316\"\022\002 %\306 \230\006*n}\316\263\253\036\244m7p\336b\027\n\006a\360\215>\264#\003OQ\355=" > > , Envelope: 165 bytes, Signature: 0 bytes -[512 05-31 05:21:43.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[513 05-31 05:21:43.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[514 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[515 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[516 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[518 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[517 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[51a 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[519 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[51b 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[51c 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[51d 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[51e 05-31 05:21:43.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[51f 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[520 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[521 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[522 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[524 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 486 bytes, Signature: 0 bytes -[523 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[525 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[526 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[527 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[529 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 486 bytes, Signature: 0 bytes -[528 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[52a 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[52b 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[52c 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[52d 05-31 05:21:43.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[52e 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[52f 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 19 but got ts: inc_num:1527744091508552400 seq_num:18 -[530 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[531 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[532 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[533 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[534 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[535 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[536 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[537 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[538 05-31 05:21:43.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[539 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[53a 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[53b 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[53c 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[53e 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[53d 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 486 bytes, Signature: 0 bytes -[53f 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[540 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[541 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 24 but got ts: inc_num:1527744091840124700 seq_num:22 -[542 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[543 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[544 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[545 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[546 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[547 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[548 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[549 05-31 05:21:43.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[54a 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[54b 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[54c 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[54d 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[54e 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[54f 05-31 05:21:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[550 05-31 05:21:43.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -[551 05-31 05:21:43.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -[552 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 51 bytes, Signature: 0 bytes -[553 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[554 05-31 05:21:43.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[555 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[556 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[557 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[558 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[559 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[55a 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[55b 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[55c 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[55d 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[55e 05-31 05:21:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[55f 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[560 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[562 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[561 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[564 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[565 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[563 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[566 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[567 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\207\021~\006x.\270T" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\024" signature:"0E\002!\000\236.\240\300\272b\245\003\251\233\357E\032\252\276\302j\0021\365H\344P\357\223\017\242\241\275\246n\025\002 \023\211\214y\233+'+\\\242\255\030:\244f\003*JaS\314\2618\262U\030\271\217\314I\204\375" > -[568 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[569 05-31 05:21:43.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[56a 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -[56b 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 50 bytes, Signature: 0 bytes -[56c 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[56d 05-31 05:21:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[56e 05-31 05:21:44.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to peer1.org2.example.com:7051 -[56f 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes to 1 peers -[570 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to peer1.org1.example.com:7051 -[571 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes to 1 peers -[573 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes -[572 05-31 05:21:44.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 85 bytes, Signature: 0 bytes -[575 05-31 05:21:44.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[574 05-31 05:21:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[576 05-31 05:21:44.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 15808184565854768567, Envelope: 1861 bytes, Signature: 0 bytes -[577 05-31 05:21:44.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 15808184565854768567, Envelope: 1861 bytes, Signature: 0 bytes -[578 05-31 05:21:44.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 2, nonce: 15808184565854768567, Envelope: 1861 bytes, Signature: 0 bytes -[579 05-31 05:21:44.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 146 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 68 67 67 65 98 43 103 65 119 73 66 65 103 73 81 68 55 78 84 87 68 110 51 118 56 117 51 98 83 114 117 51 65 107 65 57 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 83 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 120 86 104 55 77 65 117 65 106 86 121 98 110 114 88 100 97 74 75 81 75 56 75 81 108 49 54 108 113 56 107 70 10 52 67 89 67 83 53 53 104 114 114 77 106 122 121 120 99 117 108 98 52 84 88 118 77 55 75 106 78 81 71 112 97 120 115 50 78 87 85 110 90 114 111 81 78 120 47 107 57 78 79 99 78 118 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 82 119 65 119 82 65 73 103 82 49 121 68 68 120 77 115 10 83 103 48 49 68 73 75 97 108 114 69 102 98 76 112 67 70 99 72 66 83 121 70 113 88 86 49 57 84 110 90 109 71 83 111 67 73 71 83 120 65 75 67 98 106 108 53 114 72 101 106 115 86 83 49 101 117 55 104 53 53 50 98 89 10 50 69 100 70 69 122 87 103 111 82 85 72 113 119 105 57 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -[57a 05-31 05:21:44.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 88 112 117 99 49 88 68 101 115 51 113 78 103 118 98 55 115 105 73 47 73 68 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 53 51 108 56 83 103 113 56 118 110 48 112 72 122 108 103 103 47 85 112 109 85 74 98 48 107 106 56 87 71 68 106 10 83 80 86 114 57 109 99 81 117 69 109 101 99 57 65 53 111 55 90 109 113 53 121 47 112 98 85 52 100 51 84 48 80 52 111 69 80 78 52 65 104 107 54 122 100 80 47 75 108 119 43 119 80 54 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 75 50 72 97 75 52 108 10 88 81 105 117 49 88 120 103 73 106 84 53 56 99 116 111 90 111 84 67 116 53 111 104 74 99 121 113 83 55 78 115 71 114 83 117 65 105 65 53 86 119 47 84 121 75 110 107 80 76 86 115 50 66 49 111 49 74 102 70 105 71 43 83 10 81 104 56 48 97 84 110 65 101 103 83 84 83 113 109 65 49 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -[57b 05-31 05:21:44.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[57c 05-31 05:21:44.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 5403497654771159045, Envelope: 940 bytes, Signature: 0 bytes -[57d 05-31 05:21:44.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 5403497654771159045, Envelope: 940 bytes, Signature: 0 bytes -[57e 05-31 05:21:44.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 49 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 106 67 67 65 99 67 103 65 119 73 66 65 103 73 82 65 79 51 85 114 78 82 115 80 53 106 75 77 75 47 120 84 74 43 54 106 108 99 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 119 99 122 69 76 10 77 65 107 71 65 49 85 69 66 104 77 67 86 86 77 120 69 122 65 82 66 103 78 86 66 65 103 84 67 107 78 104 98 71 108 109 98 51 74 117 97 87 69 120 70 106 65 85 66 103 78 86 66 65 99 84 68 86 78 104 98 105 66 71 10 99 109 70 117 89 50 108 122 89 50 56 120 71 84 65 88 66 103 78 86 66 65 111 84 69 71 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 120 72 68 65 97 66 103 78 86 66 65 77 84 69 50 78 104 10 76 109 57 121 90 122 69 117 90 88 104 104 98 88 66 115 90 83 53 106 98 50 48 119 72 104 99 78 77 84 103 119 77 84 77 119 77 68 99 48 77 68 73 50 87 104 99 78 77 106 103 119 77 84 73 52 77 68 99 48 77 68 73 50 10 87 106 66 98 77 81 115 119 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 10 85 50 70 117 73 69 90 121 89 87 53 106 97 88 78 106 98 122 69 102 77 66 48 71 65 49 85 69 65 120 77 87 99 71 86 108 99 106 69 117 98 51 74 110 77 83 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 66 90 10 77 66 77 71 66 121 113 71 83 77 52 57 65 103 69 71 67 67 113 71 83 77 52 57 65 119 69 72 65 48 73 65 66 78 73 116 103 106 85 116 105 107 55 88 99 114 47 84 115 56 118 114 108 70 85 82 85 67 78 111 83 55 114 99 10 50 72 118 107 106 67 53 100 72 56 69 55 70 88 97 117 70 119 76 101 81 106 65 82 65 112 80 56 85 70 52 79 112 116 70 82 87 120 120 70 104 48 66 71 109 76 72 101 86 43 113 57 111 120 54 106 84 84 66 76 77 65 52 71 10 65 49 85 100 68 119 69 66 47 119 81 69 65 119 73 72 103 68 65 77 66 103 78 86 72 82 77 66 65 102 56 69 65 106 65 65 77 67 115 71 65 49 85 100 73 119 81 107 77 67 75 65 73 72 103 109 56 119 57 72 69 72 47 114 10 57 52 113 57 70 79 101 101 71 111 75 55 83 108 43 116 112 69 56 84 106 79 69 103 50 53 79 120 65 106 78 72 77 65 111 71 67 67 113 71 83 77 52 57 66 65 77 67 65 48 103 65 77 69 85 67 73 81 67 100 50 81 72 76 10 112 75 80 79 118 116 87 106 88 69 66 111 55 104 72 51 108 66 117 51 120 97 76 78 66 107 75 112 52 66 115 72 56 97 115 86 57 119 73 103 85 110 82 89 43 47 53 70 114 66 49 52 84 83 49 43 67 56 79 55 115 113 49 120 10 70 105 47 75 52 86 85 107 99 114 116 50 47 74 72 76 101 50 77 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] -[57f 05-31 05:21:44.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[580 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55374 -[581 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42210f740 -[582 05-31 05:21:45.60 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[583 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[584 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[585 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[586 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[587 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42218b860, header 0xc42210faa0 -[588 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[589 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][82a11985] processing txid: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 -[58a 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -[58b 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[58c 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -[58d 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][82a11985] Entry chaincode: name:"lscc" -[58e 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled -[58f 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] Entry chaincode: name:"lscc" version: 1.2.0 -[590 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031,syscc=true,proposal=0xc42218b860,canname=lscc:1.2.0) -[591 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[592 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[593 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a11985]Received message TRANSACTION from peer -[594 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82a11985] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[595 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [82a11985] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[596 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [82a11985] Sending GET_STATE -[597 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[598 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] handling GET_STATE from chaincode -[599 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [82a11985] getting state for chaincode lscc, key exp02, channel businesschannel -[59a 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[59b 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [82a11985] No state associated with key: +[457 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx ID: [] to index +[458 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=26151, bytesLength=12151] for tx number:[0] ID: [] to blockNumTranNum index +[459 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[40098], isChainEmpty=[false], lastBlockNumber=[2] +[45a 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [2] +[45b 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +[45c 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +[45d 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[45e 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [2] +[45f 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [2] with 1 transaction(s) +[460 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to state database +[461 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[462 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +[463 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[464 06-12 02:14:22.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +[465 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[466 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [3] +[468 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x3, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] +[469 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [3] +[467 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [2] transactions to history database +[46a 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [2] with [1] transactions +[46b 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[46c 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [2] +[46d 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[46e 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[46f 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[470 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[471 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[472 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[473 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[474 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[475 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[476 06-12 02:14:22.33 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[477 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 13978198190710968351, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 1305 bytes, Signature: 0 bytes +[478 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 13978198190710968351, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 1305 bytes, Signature: 0 bytes +[479 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[47a 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 13978198190710968351, tag: EMPTY MembershipResponse with Alive: 3, Dead: 0, Envelope: 1305 bytes, Signature: 0 bytes +[47b 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[47c 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Don't have certificate for membership: timestamp: +[47d 06-12 02:14:22.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Alive message isn't authentic, someone must be spoofing membership: timestamp: 's identity +[47e 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[47f 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[480 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[481 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[482 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[483 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +[484 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes]}, deadMembers={[]} +[485 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes +[486 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +[487 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[488 06-12 02:14:22.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[489 06-12 02:14:22.41 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.6:35390 +[48a 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35390 +[48b 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35390 +[48c 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35390 +[48d 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +[48e 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35390 disconnected +[48f 06-12 02:14:22.42 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[490 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[491 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[492 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[493 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[494 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[495 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[496 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[497 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[498 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[499 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[49b 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes in aliveMembership +[49a 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:35394 +[49c 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[49d 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[49e 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[49f 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35394 +[4a0 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35394 +[4a1 06-12 02:14:22.44 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35394 +[4a2 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:12028204755272296861 tag:EMPTY mem_req:\213\251\257^\277\030^\347l\222/i\255*3\255j" > > > , Envelope: 1088 bytes, Signature: 0 bytes +[4a3 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[4a4 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:12028204755272296861 tag:EMPTY mem_req:\213\251\257^\277\030^\347l\222/i\255*3\255j" > > > , Envelope: 1088 bytes, Signature: 0 bytes +[4a5 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[4a6 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[4a7 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[4a8 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" +[4a9 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +[4aa 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[4ab 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[4ac 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[4ad 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[4ae 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[4b0 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[4af 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 12028204755272296861, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1355 bytes, Signature: 0 bytes to 1 peers +[4b1 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\213\251\257^\277\030^\347l\222/i\255*3\255j" > > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\020" signature:"0E\002!\000\235\2472\314c\020\236\275\241\217J\262\3543&vz+\reK\371L\341W4\315\031\344\\\240}\002 V\210w\361/\372\214\000\320\330F@D\331Q\241/\242\r\332y\027\242\326\326*\0235:{v\311" secret_envelope: > +[4b3 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[4b2 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 12028204755272296861, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 1355 bytes, Signature: 0 bytes +[4b4 06-12 02:14:22.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[4b5 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[4b6 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[4b7 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[4b8 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[4b9 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[4ba 06-12 02:14:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[4bb 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:59720 +[4bc 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59720 +[4bd 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59720 +[4be 06-12 02:14:22.65 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59720 +[4bf 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +[4c0 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59720 disconnected +[4c1 06-12 02:14:22.66 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[4c2 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:59724 +[4c3 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59724 +[4c4 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59724 +[4c5 06-12 02:14:22.67 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59724 +[4c6 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59724 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:3147502396417204607 tag:EMPTY mem_req:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > > , Envelope: 176 bytes, Signature: 0 bytes +[4c7 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[4c8 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:3147502396417204607 tag:EMPTY mem_req:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > > , Envelope: 176 bytes, Signature: 0 bytes +[4c9 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[4ca 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[4cb 06-12 02:14:22.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]}, deadMembers={[]} +[4cc 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Learned about a new alive member: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[4cd 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnNewMembers -> DEBU Exiting +[4ce 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[4cf 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[4d0 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[4d1 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:58578 +[4d2 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 3147502396417204607, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes to 1 peers +[4d3 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\021" signature:"0E\002!\000\267\246\357\rg\252\250\275\007\261\347/\246\210\035\177X\030\310.:!\245\352>S\337\266\311/UD\002 @QV +[4d5 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 3147502396417204607, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1464 bytes, Signature: 0 bytes +[4d4 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58578 +[4d6 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[4d7 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58578 +[4d8 06-12 02:14:22.69 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58578 +[4d9 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[4db 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +[4da 06-12 02:14:22.70 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing +[4dc 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +[4dd 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:58578 disconnected +[4de 06-12 02:14:22.72 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[4df 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:58584 +[4e0 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58584 +[4e1 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58584 +[4e2 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58584 +[4e3 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:59726 +[4e4 06-12 02:14:22.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59726 +[4e5 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59726 +[4e6 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59726 +[4e7 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +[4e8 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59724 disconnected +[4ea 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing +[4e9 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[4eb 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +[4ed 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[4ec 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59726 disconnected +[4ee 06-12 02:14:22.77 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing +[4ef 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58584 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:5946037328689966164 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +[4f0 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[4f1 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:5946037328689966164 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +[4f2 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[4f3 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[4f4 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[4f5 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[4f6 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[4f7 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[4f8 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[4f9 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[4fa 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[4fb 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[4fc 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 5946037328689966164, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes to 1 peers +[4fd 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\361\374\246\305\324\026I\"F\265_m,\000w=4y2\365\343B`\306\002 h\035z\312c\326\3559\014\002\203a\242W\366n\303\300\337\263\260\004M:B,\343b\242;\246\325" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\022" signature:"0E\002!\000\200@%\033\376g\344\220,?\036\365\262\212\334Nv\307,\337\267\256\030\307\240J\361\321`\327\257\231\002 i\"\373\213s \345\217\366R%\326B\360\202\301y\216\235\271\014 &\354\177\307\261\t\375\320P\225" > +[4fe 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 5946037328689966164, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 1465 bytes, Signature: 0 bytes +[4ff 06-12 02:14:22.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[500 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:58590 +[501 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58590 +[502 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58590 +[503 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58590 +[504 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +[505 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:58584 disconnected +[506 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:58590 disconnected +[508 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[507 06-12 02:14:22.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing +[509 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[50a 06-12 02:14:23.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[50b 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[50c 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[50d 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[50e 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[50f 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[510 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[511 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[512 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" > , Envelope: 889 bytes, Signature: 70 bytes in aliveMembership +[513 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[514 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[515 06-12 02:14:23.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[516 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[517 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[518 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[51a 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[519 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[51b 06-12 02:14:23.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[51c 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +[51d 06-12 02:14:23.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +[51e 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +[51f 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +[520 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[521 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[522 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[523 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[524 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[525 06-12 02:14:23.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[526 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:7051 +[527 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:7051 +[528 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:7051 +[529 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +[52a 06-12 02:14:23.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[52b 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44234 +[52c 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc423775110 +[52d 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[52e 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[52f 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[530 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[531 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[532 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4238400f0, header 0xc423775470 +[533 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[534 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [][1ca0a181] processing txid: 1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c +[535 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1ca0a181] Entry chaincode: name:"lscc" +[536 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled +[537 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c] Entry chaincode: name:"lscc" version: 1.2.0 +[538 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=,chaincode=lscc,version=1.2.0,txid=1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c,syscc=true,proposal=0xc4238400f0,canname=lscc:1.2.0) +[539 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[53a 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[53b 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ca0a181]Received message TRANSACTION from peer +[53c 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [1ca0a181] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[53d 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [1ca0a181] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[53e 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] Invoke.executeInstall.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +[53f 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU HandleChaincodeInstall() - chaincodeDefinition=&cceventmgmt.ChaincodeDefinition{Name:"exp02", Hash:[]uint8{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}, Version:"1.0"} +[540 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Handling chaincode install event for chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] +[541 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetQueryExecutorForLedger.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [b126576e-c068-4f90-845a-3a48f32fe2c2] +[542 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[543 06-12 02:14:23.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] Invoke.executeInstall.HandleChaincodeInstall.IsChaincodeDeployed.IsChaincodeDeployed.Done -> DEBU Done with transaction simulation / query execution [b126576e-c068-4f90-845a-3a48f32fe2c2] +[544 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] Invoke.executeInstall.HandleChaincodeInstall -> DEBU Channel [businesschannel]: Chaincode [Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}] is not deployed on channel hence not creating chaincode artifacts. +[545 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeInstall -> INFO Installed Chaincode [exp02] Version [1.0] to peer +[546 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [1ca0a181] Transaction completed. Sending COMPLETED +[547 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [1ca0a181] send state message COMPLETED +[548 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [1ca0a181] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[549 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [1ca0a181] notifying Txid:1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c, channelID: +[54a 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[54b 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [][1ca0a181d1896a4543dbca85f03d3d76c545e2cf04d7f5ddd47a9792a458771c] Exit +[54c 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [][1ca0a181] Exit +[54d 06-12 02:14:24.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44234 +[54e 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[54f 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[550 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[551 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[552 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[553 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[555 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[554 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[556 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[558 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[559 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +[55a 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 85 bytes, Signature: 0 bytes +[55b 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[55c 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +[55d 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +[55e 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 85 bytes, Signature: 0 bytes +[55f 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[557 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[560 06-12 02:14:24.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[561 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +[562 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +[563 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig: , Envelope: 84 bytes, Signature: 0 bytes +[564 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[565 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +[566 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[567 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[568 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes +[56a 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[569 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 272 bytes, Signature: 0 bytes +[56b 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[56c 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\023" signature:"0E\002!\000\317\215\270\347\314\035\023\267\305\035GhU\365\340\370%\026\336\313\006\227\022\004\3102\325w\rl\245\n\002 r\246\374j\336\214\036\356m\"TQ\246`=\201!\255\305\265\217WtO\223y\200?K\363\177h" > > , Envelope: 166 bytes, Signature: 0 bytes +[56d 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[56e 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[56f 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[570 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[571 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[572 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[573 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[574 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[575 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[576 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[577 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[578 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[579 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[57a 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[57b 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[57c 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[57d 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[57e 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[57f 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[580 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[581 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[582 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[583 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[584 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[585 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[586 06-12 02:14:24.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[587 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[588 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[589 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[58a 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[58b 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[58c 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[58d 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[58e 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[58f 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +[590 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[591 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +[592 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[593 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[594 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[595 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[596 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[597 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[598 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[599 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[59a 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[59b 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[59c 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[59d 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[59e 06-12 02:14:24.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[59f 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[5a0 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[5a1 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5a2 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[5a3 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[5a4 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[5a5 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 22 but got ts: inc_num:1528769651824440500 seq_num:21 +[5a6 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[5a7 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[5a8 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[5a9 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[5aa 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[5ab 06-12 02:14:24.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[5ac 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[5ad 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[5ae 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[5af 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[5b0 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[5b1 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[5b2 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[5b3 06-12 02:14:24.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[5b4 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[5b5 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[5b7 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[5b8 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[5b9 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[5b6 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[5ba 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[5bb 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[5bc 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[5bd 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[5be 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[5bf 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes to 3 peers +[5c0 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5c1 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[5c2 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5c3 06-12 02:14:24.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[5c4 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5c5 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[5c6 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +[5c7 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5c8 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes +[5c9 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 374 bytes, Signature: 0 bytes +[5ca 06-12 02:14:24.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +[5cb 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5cc 06-12 02:14:24.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 2 items, Envelope: 375 bytes, Signature: 0 bytes +[5cd 06-12 02:14:24.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5ce 06-12 02:14:24.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +[5cf 06-12 02:14:24.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +[5d0 06-12 02:14:24.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5d1 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[5d2 06-12 02:14:24.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5d3 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[5d4 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[5d5 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[5d6 06-12 02:14:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5d7 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5d8 06-12 02:14:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5d9 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5da 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5db 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5dc 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5dd 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5de 06-12 02:14:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5df 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[5e0 06-12 02:14:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[5e1 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[5e2 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[5e3 06-12 02:14:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5e4 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[5e5 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[5e6 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5e7 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[5e8 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[5e9 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[5ea 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[5eb 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[5ec 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[5ed 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[5ee 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[5ef 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[5f0 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[5f1 06-12 02:14:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[5f2 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[5f3 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\024" signature:"0D\002 \031\356a\3327T\376-\211\n\367d<\264\254\355\355C\313%\201\247\220\346\323\202\360\301[b\215\027\002 jv\211g1\257O\337\007\221\004\241/\037\375\305\360\371\336]&\276\025,\234\224\205y1{\351\335" > +[5f4 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[5f5 06-12 02:14:24.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[5f6 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[5f7 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[5f8 06-12 02:14:24.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5f9 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5fa 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5fb 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5fc 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5fd 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > , Envelope: 98 bytes, Signature: 71 bytes +[5fe 06-12 02:14:24.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[5ff 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[600 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[601 06-12 02:14:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[602 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +[603 06-12 02:14:24.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > , Envelope: 98 bytes, Signature: 70 bytes +[604 06-12 02:14:24.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[605 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to peer0.org2.example.com:7051 +[606 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes to 1 peers +[607 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] processIncomingDigests.SendReq -> DEBU Sending [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to peer1.org2.example.com:7051 +[608 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] processIncomingDigests.SendReq.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes to 1 peers +[609 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +[60a 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[60b 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY data_req: , Envelope: 50 bytes, Signature: 0 bytes +[60c 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[60d 06-12 02:14:25.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15720219427768055626, Envelope: 938 bytes, Signature: 0 bytes +[60e 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15720219427768055626, Envelope: 938 bytes, Signature: 0 bytes +[60f 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 7880972077944551976, Envelope: 941 bytes, Signature: 0 bytes +[610 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 15720219427768055626, Envelope: 938 bytes, Signature: 0 bytes +[611 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 146 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 68 67 67 65 98 43 103 65 119 73 66 65 103 73 81 68 55 78 84 87 68 110 51 118 56 117 51 98 83 114 117 51 65 107 65 57 122 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 83 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 120 86 104 55 77 65 117 65 106 86 121 98 110 114 88 100 97 74 75 81 75 56 75 81 108 49 54 108 113 56 107 70 10 52 67 89 67 83 53 53 104 114 114 77 106 122 121 120 99 117 108 98 52 84 88 118 77 55 75 106 78 81 71 112 97 120 115 50 78 87 85 110 90 114 111 81 78 120 47 107 57 78 79 99 78 118 113 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 82 119 65 119 82 65 73 103 82 49 121 68 68 120 77 115 10 83 103 48 49 68 73 75 97 108 114 69 102 98 76 112 67 70 99 72 66 83 121 70 113 88 86 49 57 84 110 90 109 71 83 111 67 73 71 83 120 65 75 67 98 106 108 53 114 72 101 106 115 86 83 49 101 117 55 104 53 53 50 98 89 10 50 69 100 70 69 122 87 103 111 82 85 72 113 119 105 57 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +[612 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[613 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 7880972077944551976, Envelope: 941 bytes, Signature: 0 bytes +[614 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: Channel: , nonce: 0, tag: EMPTY DataUpdate: Type: IDENTITY_MSG, items: 1, nonce: 7880972077944551976, Envelope: 941 bytes, Signature: 0 bytes +[615 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.handleMessage.HandleMessage.func2 -> INFO Learned of a new certificate: [10 7 79 114 103 50 77 83 80 18 150 6 45 45 45 45 45 66 69 71 73 78 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10 77 73 73 67 71 84 67 67 65 98 43 103 65 119 73 66 65 103 73 81 88 112 117 99 49 88 68 101 115 51 113 78 103 118 98 55 115 105 73 47 73 68 65 75 66 103 103 113 104 107 106 79 80 81 81 68 65 106 66 122 77 81 115 119 10 67 81 89 68 86 81 81 71 69 119 74 86 85 122 69 84 77 66 69 71 65 49 85 69 67 66 77 75 81 50 70 115 97 87 90 118 99 109 53 112 89 84 69 87 77 66 81 71 65 49 85 69 66 120 77 78 85 50 70 117 73 69 90 121 10 89 87 53 106 97 88 78 106 98 122 69 90 77 66 99 71 65 49 85 69 67 104 77 81 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 69 99 77 66 111 71 65 49 85 69 65 120 77 84 89 50 69 117 10 98 51 74 110 77 105 53 108 101 71 70 116 99 71 120 108 76 109 78 118 98 84 65 101 70 119 48 120 79 68 65 120 77 122 65 119 78 122 81 119 77 106 100 97 70 119 48 121 79 68 65 120 77 106 103 119 78 122 81 119 77 106 100 97 10 77 70 115 120 67 122 65 74 66 103 78 86 66 65 89 84 65 108 86 84 77 82 77 119 69 81 89 68 86 81 81 73 69 119 112 68 89 87 120 112 90 109 57 121 98 109 108 104 77 82 89 119 70 65 89 68 86 81 81 72 69 119 49 84 10 89 87 52 103 82 110 74 104 98 109 78 112 99 50 78 118 77 82 56 119 72 81 89 68 86 81 81 68 69 120 90 119 90 87 86 121 77 67 53 118 99 109 99 121 76 109 86 52 89 87 49 119 98 71 85 117 89 50 57 116 77 70 107 119 10 69 119 89 72 75 111 90 73 122 106 48 67 65 81 89 73 75 111 90 73 122 106 48 68 65 81 99 68 81 103 65 69 53 51 108 56 83 103 113 56 118 110 48 112 72 122 108 103 103 47 85 112 109 85 74 98 48 107 106 56 87 71 68 106 10 83 80 86 114 57 109 99 81 117 69 109 101 99 57 65 53 111 55 90 109 113 53 121 47 112 98 85 52 100 51 84 48 80 52 111 69 80 78 52 65 104 107 54 122 100 80 47 75 108 119 43 119 80 54 78 78 77 69 115 119 68 103 89 68 10 86 82 48 80 65 81 72 47 66 65 81 68 65 103 101 65 77 65 119 71 65 49 85 100 69 119 69 66 47 119 81 67 77 65 65 119 75 119 89 68 86 82 48 106 66 67 81 119 73 111 65 103 114 118 111 73 99 81 56 112 102 65 117 101 10 57 98 110 114 72 69 67 122 70 88 71 70 54 76 66 50 51 98 86 97 81 119 74 119 48 75 77 98 79 55 119 119 67 103 89 73 75 111 90 73 122 106 48 69 65 119 73 68 83 65 65 119 82 81 73 104 65 75 50 72 97 75 52 108 10 88 81 105 117 49 88 120 103 73 106 84 53 56 99 116 111 90 111 84 67 116 53 111 104 74 99 121 113 83 55 78 115 71 114 83 117 65 105 65 53 86 119 47 84 121 75 110 107 80 76 86 115 50 66 49 111 49 74 102 70 105 71 43 83 10 81 104 56 48 97 84 110 65 101 103 83 84 83 113 109 65 49 119 61 61 10 45 45 45 45 45 69 78 68 32 67 69 82 84 73 70 73 67 65 84 69 45 45 45 45 45 10] +[616 06-12 02:14:25.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[617 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[618 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[619 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[61a 06-12 02:14:25.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[61b 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[61c 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[61d 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[61e 06-12 02:14:25.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[61f 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[620 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[621 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[622 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[623 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[624 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[625 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[626 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[627 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[628 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +[629 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\025" signature:"0D\002 ?\010\314\215L\023\312y!\031\2105\365\026}\342\373\213(S\351\204\274!sG\005L\353\335\261\021\002 \016EE\270\327\035\324\034b\366\375)=\351\353\200\204\321\322\3165-\250\240\340/],\362\245w<" secret_envelope: > +[62a 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +[62b 06-12 02:14:25.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[62c 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44248 +[62d 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc4225710b0 +[62e 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[62f 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[630 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[631 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[632 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[633 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4231a9ae0, header 0xc422571410 +[634 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[635 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][bec9b07b] processing txid: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac +[636 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +[637 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[638 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +[639 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][bec9b07b] Entry chaincode: name:"lscc" +[63a 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.DisableJavaCCInst -> DEBU java chaincode enabled +[63b 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] Entry chaincode: name:"lscc" version: 1.2.0 +[63c 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac,syscc=true,proposal=0xc4231a9ae0,canname=lscc:1.2.0) +[63d 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[63e 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[63f 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bec9b07b]Received message TRANSACTION from peer +[640 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bec9b07b] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[641 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bec9b07b] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[642 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bec9b07b] Sending GET_STATE +[643 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[644 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] handling GET_STATE from chaincode +[645 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [bec9b07b] getting state for chaincode lscc, key exp02, channel businesschannel +[646 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[647 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [bec9b07b] No state associated with key: exp02. Sending RESPONSE with an empty payload -[59c 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] Completed GET_STATE. Sending RESPONSE -[59d 05-31 05:21:45.61 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a11985]Received message RESPONSE from peer -[59e 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82a11985] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[59f 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [82a11985] before send -[5a0 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [82a11985] after send -[5a1 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [82a11985] Received RESPONSE, communicated (state:ready) -[5a2 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [82a11985] GetState received payload RESPONSE -[5a3 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [82a11985] Sending PUT_STATE -[5a4 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -[5a5 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] handling PUT_STATE from chaincode -[5a6 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] Completed PUT_STATE. Sending RESPONSE -[5a7 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a11985]Received message RESPONSE from peer -[5a8 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [82a11985] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[5a9 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [82a11985] before send -[5aa 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [82a11985] after send -[5ab 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [82a11985] Received RESPONSE, communicated (state:ready) -[5ac 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [82a11985] Received RESPONSE. Successfully updated state -[5ad 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified -[5ae 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [82a11985] Transaction completed. Sending COMPLETED -[5af 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [82a11985] send state message COMPLETED -[5b0 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[5b1 05-31 05:21:45.62 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [82a11985] notifying Txid:82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, channelID:businesschannel -[5b2 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[5b3 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031,syscc=false,proposal=0xc42218b860,canname=exp02:1.0) -[5b4 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched -[5b5 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] -[5b6 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 -[5b7 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 -[5b8 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: +[648 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] Completed GET_STATE. Sending RESPONSE +[649 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bec9b07b]Received message RESPONSE from peer +[64a 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bec9b07b] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[64b 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [bec9b07b] before send +[64c 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [bec9b07b] after send +[64d 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bec9b07b] Received RESPONSE, communicated (state:ready) +[64e 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.getCCInstance.GetState.handleGetState -> DEBU [bec9b07b] GetState received payload RESPONSE +[64f 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [bec9b07b] Sending PUT_STATE +[650 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +[651 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] handling PUT_STATE from chaincode +[652 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] Completed PUT_STATE. Sending RESPONSE +[653 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bec9b07b]Received message RESPONSE from peer +[654 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [bec9b07b] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[655 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [bec9b07b] before send +[656 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [bec9b07b] after send +[658 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeData.PutState.handlePutState -> DEBU [bec9b07b] Received RESPONSE. Successfully updated state +[659 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/scc/lscc] Invoke.executeDeployOrUpgrade.executeDeploy.putChaincodeCollectionData -> DEBU No collection configuration specified +[65a 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [bec9b07b] Transaction completed. Sending COMPLETED +[65b 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [bec9b07b] send state message COMPLETED +[65c 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[65d 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [bec9b07b] notifying Txid:bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, channelID:businesschannel +[65e 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[65f 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac,syscc=false,proposal=0xc4231a9ae0,canname=exp02:1.0) +[660 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU chaincode exp02:1.0 is being launched +[661 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start.LaunchConfig -> DEBU launchConfig: executable:"chaincode",Args:[chaincode,-peer.address=peer0.org1.example.com:7052],Envs:[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},CORE_CHAINCODE_ID_NAME=exp02:1.0,CORE_PEER_TLS_ENABLED=true,CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key,CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt,CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt],Files:[/etc/hyperledger/fabric/client.crt /etc/hyperledger/fabric/client.key /etc/hyperledger/fabric/peer.crt] +[662 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container: exp02:1.0 +[663 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with args: chaincode -peer.address=peer0.org1.example.com:7052 +[664 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode] Start -> DEBU start container with env: 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} @@ -1564,17 +1735,18 @@ txId= locPointer=offset=70, bytesLength=12152 CORE_TLS_CLIENT_KEY_PATH=/etc/hyperledger/fabric/client.key CORE_TLS_CLIENT_CERT_PATH=/etc/hyperledger/fabric/client.crt CORE_PEER_TLS_ROOTCERT_FILE=/etc/hyperledger/fabric/peer.crt -[5b9 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock -[5ba 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock -[5bb 05-31 05:21:45.63 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 -[5bc 05-31 05:21:45.63 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) -[5bd 05-31 05:21:45.63 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) -[5be 05-31 05:21:45.63 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) -[5bf 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 -[5c0 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default -[5c1 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -[5c2 05-31 05:21:45.64 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 -[5c3 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU +[665 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU waiting for container(exp02-1.0) lock +[666 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container] lockContainer -> DEBU got container (exp02-1.0) lock +[667 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Cleanup container dev-peer0.org1.example.com-exp02-1.0 +[657 06-12 02:14:26.09 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [bec9b07b] Received RESPONSE, communicated (state:ready) +[668 06-12 02:14:26.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) +[669 06-12 02:14:26.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) +[66a 06-12 02:14:26.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) +[66b 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Start container dev-peer0.org1.example.com-exp02-1.0 +[66c 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer.getDockerHostConfig -> DEBU docker container hostconfig NetworkMode: latest_default +[66d 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +[66e 06-12 02:14:26.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 +[66f 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms] Do.Do.Start.Build.GenerateDockerBuild.generateDockerfile -> DEBU FROM hyperledger/fabric-baseos:amd64-0.4.8 ADD binpackage.tar /usr/local/bin LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ @@ -1583,9571 +1755,9578 @@ LABEL org.hyperledger.fabric.chaincode.id.name="exp02" \ org.hyperledger.fabric.version="1.2.0" \ org.hyperledger.fabric.base.version="0.4.8" ENV CORE_CHAINCODE_BUILDLEVEL=1.2.0 -[5c4 05-31 05:21:45.64 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' -[5c5 05-31 05:21:45.65 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental -[5c6 05-31 05:21:45.65 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 -[5c7 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5c8 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5c9 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[5ca 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[5cb 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5cc 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5cd 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[5ce 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[5cf 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[5d0 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[5d1 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[5d2 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[5d3 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[5d4 05-31 05:21:45.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[5d5 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[5d6 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[5d7 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5d8 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[5d9 05-31 05:21:45.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5da 05-31 05:21:45.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[5db 05-31 05:21:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5dc 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[5dd 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[5de 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5df 05-31 05:21:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[5e0 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[5e1 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true -[5e2 05-31 05:21:45.95 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[5e3 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers -[5e4 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5e5 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5e6 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[5e7 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[5e8 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5e9 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[5ea 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[5eb 05-31 05:21:45.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[5ec 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[5ed 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[5ee 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[5ef 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true -[5f0 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.stopBeingLeader -> INFO [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] Stopped being a leader -[5f1 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Entering -[5f3 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Entering -[5f4 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Recv.try.doAction.Disconnect -> DEBU Exiting -[5f5 05-31 05:21:45.97 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 -[5f6 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> WARN [businesschannel] Receive error: client is closing -[5f7 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Entering -[5f8 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] DeliverBlocks.Close -> DEBU Exiting -[5f2 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel.Stop.Close -> DEBU Exiting -[5f9 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/core/deliverservice] handleMessage.stopBeingLeader.func1.StopDeliverForChannel -> DEBU This peer will stop pass blocks from orderer service to other peers -[5fb 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] 1.Yield.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[5fa 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[5fc 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[5fd 05-31 05:21:45.97 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[5fe 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[5ff 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[600 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[601 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[602 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[603 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[604 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[605 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[606 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[607 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[608 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[609 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[60a 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[60b 05-31 05:21:46.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[60c 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[60d 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[60e 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[60f 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[610 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[611 05-31 05:21:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[612 05-31 05:21:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[613 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[615 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[616 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[614 05-31 05:21:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[617 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[618 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[61a 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[61b 05-31 05:21:46.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[619 05-31 05:21:46.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[61c 05-31 05:21:46.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[61d 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[61e 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[61f 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[620 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[621 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[622 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[623 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[624 05-31 05:21:46.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[625 05-31 05:21:46.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[626 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[627 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[628 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[629 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[62a 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[62b 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[62c 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[62d 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[62e 05-31 05:21:46.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[62f 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[630 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[631 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[632 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[633 05-31 05:21:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[634 05-31 05:21:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[635 05-31 05:21:46.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[636 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[637 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[638 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[639 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[63a 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[63b 05-31 05:21:46.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[63c 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[63d 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[63e 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[63f 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[640 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[641 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[642 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[643 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[644 05-31 05:21:46.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[645 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[646 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[647 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[648 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[649 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:A\005Y\017\314\327\372\333\324w1uK\352\331\206Zm\206<\260" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\026" signature:"0D\002 `@VlN\272sS\357\tN\021\244\201\027\323N=iG_\003\267\tM\215]\026\247\030\247?\002 cA\361\375&\005\245\227Qh\327\250\270\337AI\340\234\266\217\340\250vgf\305\220=J:\307\356" > -[64b 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[64c 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[64d 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[64e 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[64f 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[650 05-31 05:21:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[64a 05-31 05:21:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[651 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[655 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[656 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[652 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[653 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[654 05-31 05:21:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[658 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[657 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[659 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[65a 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[65b 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[65c 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[65f 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[65d 05-31 05:21:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[660 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[661 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[662 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[663 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[664 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[65e 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[665 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[666 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[667 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[668 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[669 05-31 05:21:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[66a 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[66b 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[66c 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[66d 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[66e 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[66f 05-31 05:21:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[670 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[671 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -[672 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 550 bytes, Signature: 0 bytes -[673 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[675 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[674 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[676 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[677 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[679 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 3 items, Envelope: 551 bytes, Signature: 0 bytes -[678 05-31 05:21:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[67a 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[67b 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[67c 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -[67d 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -[67e 05-31 05:21:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[67f 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[680 05-31 05:21:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[681 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[682 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[683 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[684 05-31 05:21:47.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[685 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[686 05-31 05:21:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[687 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[688 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[689 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[68a 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[68b 05-31 05:21:47.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\037.\366\300" > > > , Envelope: 271 bytes, Signature: 0 bytes -[68c 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[68d 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\037.\366\300" > > > , Envelope: 271 bytes, Signature: 0 bytes -[68e 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[68f 05-31 05:21:47.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[690 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[691 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[692 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[693 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[694 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[695 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[696 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[697 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[698 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[69a 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[69b 05-31 05:21:47.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[699 05-31 05:21:47.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\037.\366\300" > > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\027" signature:"0E\002!\000\311Q\005\311\324Y\031\300\024\017b\\\271&\211j\366\231\n\322\275\276\034\351/\t\"\263.\273U\332\002 P\327o!>\030\350]\306\375\265C\251\371Z\305\257\323<\004P\312-\264\363\272\225K\300Wb\037" secret_envelope: > -[69c 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[69d 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[69e 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[69f 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[6a0 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[6a1 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[6a2 05-31 05:21:47.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[6a3 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[6a4 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[6a5 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[6a6 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[6a7 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[6a8 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[6a9 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[6aa 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6ab 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[6ac 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[6ad 05-31 05:21:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6ae 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -[6af 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -[6b0 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 119 bytes, Signature: 0 bytes -[6b1 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6b2 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[6b3 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[6b4 05-31 05:21:47.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6b5 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[6b6 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[6b7 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[6b8 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -[6b9 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[6ba 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -[6bb 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[6bc 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\030" signature:"0E\002!\000\256rr\341\217\353\0165\241\337\317\0301\350\324\210^\335\003\257F\365\n=\303\213\014-5L7\007\002 \030\307\222\356\240\372~\212\342H\267\256\027\032\346\316\225\264\250\322c\017\204GF\230\037 \356\177o4" > > , Envelope: 166 bytes, Signature: 0 bytes -[6bd 05-31 05:21:47.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[6be 05-31 05:21:47.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[6bf 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6c0 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[6c1 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6c2 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[6c3 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6c4 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6c5 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[6c6 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6c7 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6c8 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6c9 05-31 05:21:47.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[6ca 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6cb 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[6ce 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[6cc 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[6cd 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[6cf 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[6d0 05-31 05:21:47.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[6d1 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[6d2 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[6d3 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[6d4 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6d5 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[6d6 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6d7 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[6d8 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[6d9 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6da 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[6db 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6dc 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6dd 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[6de 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[6df 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[6e0 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[6e1 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[6e2 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[6e3 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[6e4 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6e5 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[6e6 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6e7 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[6e8 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6e9 05-31 05:21:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[6ea 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6eb 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6ec 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[6ed 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[6ee 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 24 but got ts: inc_num:1527744091508552400 seq_num:23 -[6ef 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6f0 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[6f1 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[6f2 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[6f3 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[6f4 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[6f5 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[6f6 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[6f7 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[6f8 05-31 05:21:47.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[6f9 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[6fa 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[6fb 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[6fc 05-31 05:21:47.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6fd 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -[6fe 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[6ff 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > > , Envelope: 165 bytes, Signature: 0 bytes -[700 05-31 05:21:47.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[701 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[702 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[703 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[704 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[705 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[706 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[707 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[708 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[709 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[70a 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[70b 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:|\303\376\010\227o\215_y\002 \032~\271\335\203^\032\000\226H\3510\027\346\215u\3477\027/\336\261\302\357H\302k\014\253\322\346\224" > alive:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > alive:P\365\247\373\005fEI\333\215\365\211\2453\274\350\003_" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\031" signature:"0E\002!\000\275=\374\370\216M\331\311\026\223\033p\t\3010\232tg\231\275\373\221\265\276d\315(\367J\331\013\273\002 \017\356\243\272L\311\321\331\274\002F\261\224O\254c,\364:Y\311o\346f\305\206q\242\364\020\345\271" > -[70c 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[70d 05-31 05:21:47.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[70e 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[70f 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[710 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[711 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[712 05-31 05:21:50.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[713 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[714 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[715 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[716 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[717 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[718 05-31 05:21:50.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[719 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[71a 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[71b 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[71c 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[71d 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[71e 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[720 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[721 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -[722 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:U\r\315w!\002 j\253\222\334\000\342\032\\\375F\223\304\216a5s\033\326\247\353\374\276S\177\037H\356B\362!>R" > alive:P\365\247\373\005fEI\333\215\365\211\2453\274\350\003_" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\032" signature:"0D\002 .\004g'\026+\275\202\200!\0135\225\345_-\377\177\002\337I\361|8\265,,%\200\016\203\344\002 \013\374\302l\243M\007\233\330\355D\361\247UK\030\274\304}\314\307\n\tl \273\006\270,p\262 " > -[723 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[724 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[725 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[726 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[727 05-31 05:21:50.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[71f 05-31 05:21:50.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[728 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[72a 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[72b 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[72c 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[729 05-31 05:21:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[72e 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[72f 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[72d 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[730 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[731 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[732 05-31 05:21:50.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[733 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[734 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[735 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[737 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[736 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[739 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[73a 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[73b 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[73c 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[738 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[73e 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[73d 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[73f 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[740 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[741 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[742 05-31 05:21:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[743 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[744 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[745 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[746 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[747 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[748 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[749 05-31 05:21:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[74a 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[74b 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[74c 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[74d 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[74e 05-31 05:21:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[750 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[74f 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[751 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[752 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[753 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[754 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[755 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -[756 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -[757 05-31 05:21:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[758 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[759 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[75a 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[75b 05-31 05:21:50.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[75c 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[75d 05-31 05:21:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[75e 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[75f 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[760 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[761 05-31 05:21:51.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[762 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[763 05-31 05:21:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[764 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[765 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[766 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[767 05-31 05:21:51.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[768 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[769 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[76a 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[76b 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[76c 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[76d 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[76e 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[76f 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[770 05-31 05:21:51.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[771 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[772 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[773 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[774 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[775 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers -[777 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[776 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\033" signature:"0D\002 z\267\212\n\266?\3440\320:\273\342\374\330\301*[\265h\221\177O\367\355\244L[D\022\237ON\002 \024T\304\362\317];\263\260fK\253\226\261\035\267Es\373\033)\370g~\303\310sTOQ\312y" secret_envelope: > -[778 05-31 05:21:51.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[779 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[77a 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[77b 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[77c 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[77d 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[77e 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[77f 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[780 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[781 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[782 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[783 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[784 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[785 05-31 05:21:51.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[786 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[787 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[789 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[78a 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[788 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[78b 05-31 05:21:51.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[78c 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[78d 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[78e 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[78f 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[790 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[791 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[792 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[793 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[794 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[795 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[796 05-31 05:21:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[797 05-31 05:21:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[798 05-31 05:21:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[799 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[79a 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[79b 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[79c 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[79d 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[79f 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[7a0 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[7a1 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[79e 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[7a2 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[7a3 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[7a5 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[7a6 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[7a4 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[7a7 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[7a9 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[7aa 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[7ab 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[7ac 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[7ad 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[7a8 05-31 05:21:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[7ae 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[7af 05-31 05:21:51.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[7b0 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" secret_envelope:\242\034\250\365\3529\361\232+\335)\305|\377\036\002 %\007\313%/\021`\314\304\340\343\365\223;\342{h\364S\317%\027Oj\266\024)\260\333\335{n" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -[7b1 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[7b2 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 271 bytes, Signature: 0 bytes -[7b4 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[7b3 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[7b6 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -[7b5 05-31 05:21:51.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\034" signature:"0E\002!\000\373\013\202\202\235\t\220n\030\350~V<\357\355\203\224\367\204\007\311\254\276\377\220\336{O/\214\202\252\002 \"B\035\326\245B\032\212\216~\267\035H\357\345\257\216\343\203)\302\177\271Q\243\300\034nd\003\315\220" > > , Envelope: 166 bytes, Signature: 0 bytes -[7b8 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[7b7 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[7b9 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[7ba 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[7bc 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[7bd 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[7be 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[7bf 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[7c0 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[7c1 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[7c2 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[7c3 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[7c4 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[7c5 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[7c6 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[7bb 05-31 05:21:51.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[7c7 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[7c8 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[7c9 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[7ca 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[7cb 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[7cc 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[7cd 05-31 05:21:51.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[7ce 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[7cf 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[7d0 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[7d1 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[7d2 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[7d4 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[7d5 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -[7d3 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[7d6 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[7d7 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[7d8 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[7d9 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[7da 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[7db 05-31 05:21:51.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[7dc 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[7dd 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[7df 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[7de 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -[7e0 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[7e1 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[7e2 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[7e3 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[7e4 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[7e5 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[7e6 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[7e7 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[7e9 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -[7ea 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[7eb 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[7e8 05-31 05:21:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[7ed 05-31 05:21:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[7ee 05-31 05:21:51.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[7ec 05-31 05:21:51.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[7f0 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[7f1 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[7ef 05-31 05:21:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[7f2 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[7f3 05-31 05:21:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[7f4 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[7f5 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[7f7 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[7f8 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[7f6 05-31 05:21:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[7fa 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[7f9 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[7fb 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[7fc 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[7fd 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[7ff 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[7fe 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[800 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[801 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[802 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[803 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[804 05-31 05:21:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[805 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[806 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[807 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[808 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[809 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[80a 05-31 05:21:51.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[80b 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[80c 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[80d 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[80e 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[80f 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[810 05-31 05:21:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[811 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[812 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[813 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[814 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[815 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[816 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[817 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[818 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[819 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[81a 05-31 05:21:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[81b 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[81c 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[81d 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[81e 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[81f 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[821 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[820 05-31 05:21:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[822 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[823 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[826 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[825 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[824 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[827 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[829 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[828 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[82a 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[82b 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[82c 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[82d 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[82e 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[82f 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[830 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[831 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[832 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[833 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[834 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[835 05-31 05:21:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[836 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[837 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[838 05-31 05:21:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[839 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\036" signature:"0D\002 \013\317<|\204\034\261v\331E<\335\350\036u\221\265@\366\350j\373\270R\267\343\212(\342\233\237\331\002 \n\001r\246\234Pi\3446\200\370\001p\355Pi.\276\242f$Ud\333\323\260\321f\261\005F\333" > -[83a 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[83b 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[83c 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[83d 05-31 05:21:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[83e 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[83f 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[840 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[841 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[842 05-31 05:21:54.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[843 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[844 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[845 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[846 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[847 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[848 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[849 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[84a 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[84b 05-31 05:21:54.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[84c 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[84d 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[84e 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[84f 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[850 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[851 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[852 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[853 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[854 05-31 05:21:54.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\037" signature:"0E\002!\000\374\226A\261\227\263%\375^\216tZiX\335\232\023{\205\367\260b\r\324\025!\375W5fR\317\002 E\212\263\242\254}\310!\366\375\205\361\3514fz\335+\357F\022\220\20622\002\22614\304\315$" > -[855 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[856 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[857 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[858 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[859 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[85a 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[85b 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[85d 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[85e 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[85f 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[860 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[85c 05-31 05:21:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[861 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[862 05-31 05:21:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[863 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[864 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[865 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[866 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[867 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -[868 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -[869 05-31 05:21:54.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[86a 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[86b 05-31 05:21:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[86c 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[86d 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[86e 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[86f 05-31 05:21:55.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[870 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[871 05-31 05:21:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[872 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[873 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[874 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[875 05-31 05:21:55.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[876 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[878 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[877 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[879 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[87a 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[87b 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[87c 05-31 05:21:55.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[87d 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[87e 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[87f 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[880 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[881 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[882 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[883 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -[884 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\365\376\207\215\354#\301\316\256I\272B\325n\373\210\201U\271\3454\315\002 Z\232\020\014KIE\325\032o\376\340\222\356\031\301\262e\300\020\364i1O\262z\250\373\330\036,\231" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020 " signature:"0D\002 \\:\236\340\034\363\341S\335\352Or\202\367H\240\033\330f\204\237\200\273\330\036\305\222Q\224\302A,\002 j\251\217\206\243\227.G\326\317#\343=\365R\345V`q\335\360\365J\243\301I\263\313V\013\023S" secret_envelope:\242\315\033\316\207\022\254\366V}$\374\210g\374\227,\330\0132\273\366#\257\262y9\272\342" > > -[885 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -[886 05-31 05:21:55.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[887 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[888 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[889 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[88a 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[88b 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[88c 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[88d 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[88e 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[890 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[891 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[892 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[88f 05-31 05:21:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[893 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[895 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[896 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[894 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[897 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[898 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[899 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[89a 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[89b 05-31 05:21:55.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[89c 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[89d 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[89e 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[89f 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[8a0 05-31 05:21:55.65 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[8a1 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[8a2 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -[8a3 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[8a4 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[8a5 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -[8a6 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020!" signature:"0D\002 5\223+\224\236\265\210\202\016\017$*_\313\340\300\214yJW\210\344\032\034\374P\037\344\222\361\362\322\002 ^Q\270\\\277b\337\227\357\307D\377\335\325=\013\241]$Ky_\322\234RU\027o\366\255\266Q" > > , Envelope: 165 bytes, Signature: 0 bytes -[8a7 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[8a8 05-31 05:21:55.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[8a9 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[8aa 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[8ab 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[8ac 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8ad 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[8ae 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[8af 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8b0 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8b1 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[8b2 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[8b3 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[8b4 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[8b5 05-31 05:21:55.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[8b6 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[8b7 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[8b8 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8b9 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[8ba 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[8bc 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[8bb 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8bd 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[8be 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[8bf 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[8c0 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8c1 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8c2 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[8c3 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8c4 05-31 05:21:55.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8c5 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8c6 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[8c7 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 33 but got ts: inc_num:1527744091508552400 seq_num:32 -[8c8 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8c9 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8ca 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[8cb 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[8cc 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[8cd 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[8ce 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[8cf 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[8d0 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8d1 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[8d2 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[8d3 05-31 05:21:55.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[8d4 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8d5 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[8d6 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 38 but got ts: inc_num:1527744091840124700 seq_num:36 -[8d7 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8d8 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8d9 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[8da 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8db 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8dc 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8dd 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[8de 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 33 but got ts: inc_num:1527744091508552400 seq_num:32 -[8df 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8e0 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[8e1 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[8e2 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[8e3 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[8e4 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[8e5 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[8e6 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[8e7 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8e8 05-31 05:21:55.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[8e9 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8ea 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8eb 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[8ec 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[8ed 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8ee 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8ef 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[8f0 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[8f1 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[8f2 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[8f3 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[8f4 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[8f5 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[8f6 05-31 05:21:55.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[8f7 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8f8 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[8f9 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[8fa 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[8fb 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[8fd 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[8fe 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[8fc 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[900 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[8ff 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[901 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[903 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[905 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[902 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[904 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[906 05-31 05:21:55.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[907 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[908 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[909 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[90a 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[90b 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[90c 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[90d 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[90e 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[90f 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[910 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[911 05-31 05:21:55.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[912 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[913 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[914 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[915 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[916 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[917 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[918 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[919 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:/&\342\325#i\300\234\027\273" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\"" signature:"0E\002!\000\262\036\363\306D\323\200\2646\030p\262\375Fm\252W\202I4\267\261\3032\026#\377\377x\n\256\022\002 \"\017l\274\216.\023B}=\315\357\236\251\366\271*\261Y\000\230\213;\367\\\0218\252E\177\206^" > -[91a 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[91b 05-31 05:21:55.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[91c 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[91d 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[91e 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[91f 05-31 05:21:55.97 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[920 05-31 05:21:55.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[921 05-31 05:21:55.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[922 05-31 05:21:55.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[923 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[924 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[925 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[926 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[927 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[928 05-31 05:21:56.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[929 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[92a 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[92b 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[92c 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[92d 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[92e 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[92f 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[930 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[931 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[932 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[933 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[934 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[935 05-31 05:21:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[936 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[937 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[938 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[939 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[93a 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[93b 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[93c 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[93d 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[93e 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[93f 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[940 05-31 05:21:56.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[941 05-31 05:21:56.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[942 05-31 05:21:56.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[943 05-31 05:21:56.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[944 05-31 05:21:56.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[945 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[946 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[947 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[948 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[94a 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[94b 05-31 05:21:56.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[949 05-31 05:21:56.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[94c 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[94d 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[94e 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[94f 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[950 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[951 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[952 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[953 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[954 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[955 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[956 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[957 05-31 05:21:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[958 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[959 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[95a 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[95b 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[95d 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[95c 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[95f 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[95e 05-31 05:21:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[960 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[961 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[962 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[963 05-31 05:21:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[964 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[965 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[966 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[967 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[968 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[969 05-31 05:21:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[96a 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[96b 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[96c 05-31 05:21:58.82 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[96d 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[96e 05-31 05:21:58.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[96f 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[970 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[971 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[972 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[973 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[974 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[975 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[976 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[977 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[978 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[979 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[97a 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[97c 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[97d 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[97e 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020$" signature:"0E\002!\000\241d\003\260\024\235\231lc9R\362\274\t\000\367\367\207\362\203\334\022\323\332Z\314\366\312\334OM\021\002 m\002\361\326\362\360U\341\343\330V7?\306\201\351\272\331\016\031T\370\325\264l\310\017\000\241F\226\026" > -[97f 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[980 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[97b 05-31 05:21:58.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[981 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[982 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[983 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[984 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[985 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[986 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[987 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[988 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[989 05-31 05:21:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[98a 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[98b 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[98c 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[98d 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[98e 05-31 05:21:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[98f 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[990 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[991 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[992 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[993 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -[994 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -[995 05-31 05:21:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[996 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[997 05-31 05:21:59.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[998 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[999 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[99a 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[99b 05-31 05:21:59.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[99c 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[99d 05-31 05:21:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[99e 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[99f 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[9a0 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[9a1 05-31 05:21:59.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9a2 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[9a3 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9a4 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[9a5 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[9a6 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[9a7 05-31 05:21:59.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[9a8 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[9a9 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[9aa 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[9ab 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[9ac 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[9ad 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[9ae 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[9af 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -[9b1 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[9b0 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020%" signature:"0D\002 \003\322\234\204\2070i&\360\316\340\315R\360\256\342K}\375)'\002g\013R\351\207-\211\341?k\002 M<\221\221\3041N\336\330\361\n\216\000\004 \237]\32344\036\257\351\311\\\311U\235Q}\267$" secret_envelope: > -[9b2 05-31 05:21:59.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[9b3 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[9b4 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[9b6 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[9b7 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[9b5 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[9b8 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[9ba 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[9bb 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[9b9 05-31 05:21:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[9bc 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[9bd 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[9be 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[9bf 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[9c0 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9c2 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[9c3 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[9c4 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9c5 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[9c6 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[9c7 05-31 05:21:59.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9c1 05-31 05:21:59.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[9c8 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[9c9 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[9ca 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[9cb 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -[9cd 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -[9ce 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[9cf 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[9cc 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020&" signature:"0D\002 &C\300\345\006e\223.<\333\221\014\010z\342\006\247(0'v\370\327\207\\\035\315\370\222]\215\254\002 \014\252\234W\210P?|\236}3\264\377\222#\202\010\324\274\220\324@\031!z\367\202\004\202\246\327\324" > > , Envelope: 165 bytes, Signature: 0 bytes -[9d0 05-31 05:21:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[9d1 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[9d2 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[9d3 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[9d4 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9d5 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[9d6 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9d7 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[9d8 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[9d9 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[9db 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[9dc 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[9dd 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[9de 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[9df 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[9e0 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[9e1 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[9e2 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[9e3 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[9e4 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[9e5 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[9da 05-31 05:21:59.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[9e6 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[9e7 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[9e8 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[9e9 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[9ea 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[9eb 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[9ec 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[9ed 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[9ee 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[9ef 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[9f0 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[9f1 05-31 05:21:59.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[9f3 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9f2 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[9f4 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[9f5 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[9f6 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[9f7 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[9f8 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[9f9 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[9fa 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[9fb 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[9fc 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[9fe 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[9fd 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[9ff 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a00 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[a01 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 43 but got ts: inc_num:1527744091840124700 seq_num:41 -[a02 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[a03 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a04 05-31 05:21:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[a05 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a06 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[a07 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a08 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[a09 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 38 but got ts: inc_num:1527744091508552400 seq_num:37 -[a0a 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[a0b 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a0c 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[a0d 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[a0e 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[a0f 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[a10 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[a11 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[a12 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[a13 05-31 05:21:59.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a14 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[a15 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[a16 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[a17 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a18 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[a19 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a1a 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[a1b 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a1c 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[a1d 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[a1e 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[a1f 05-31 05:21:59.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[a20 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[a21 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[a22 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[a23 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a24 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[a25 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[a26 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020'" signature:"0D\002 \014K\323Sso\025\367\244]'\222\353X\373nP``\303%T\3119\300G\205\235|\026\340\366\002 7\323j=\203\202C\320\237\320U\0036\302\255\206\010\303l\235`\007\006\240\211\377\353\336\313\373_\203" > -[a27 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[a28 05-31 05:21:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a29 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a2a 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a2b 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[a2c 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a2d 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a2e 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a2f 05-31 05:22:00.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[a30 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[a31 05-31 05:22:00.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[a32 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[a33 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[a34 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[a35 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[a36 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a37 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[a38 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[a39 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a3a 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a3b 05-31 05:22:00.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a3c 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a3d 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a3e 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[a3f 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a41 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a42 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[a40 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a43 05-31 05:22:00.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a44 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a45 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a46 05-31 05:22:00.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a47 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[a48 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a49 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[a4a 05-31 05:22:00.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[a4b 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a4c 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[a4d 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a4e 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a4f 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a50 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[a51 05-31 05:22:01.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[a52 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[a53 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[a54 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[a55 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[a56 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[a57 05-31 05:22:01.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a58 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a59 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a5a 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[a5b 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a5d 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[a5e 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a5f 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[a5c 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a60 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a61 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a62 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a63 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a64 05-31 05:22:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[a65 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a66 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a67 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a68 05-31 05:22:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a69 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[a6a 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[a6b 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[a6d 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a6c 05-31 05:22:01.70 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[a6e 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a6f 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a71 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[a72 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a70 05-31 05:22:01.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a73 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a74 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[a75 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a76 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a77 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a78 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[a79 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[a7a 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[a7b 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[a7c 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[a7d 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[a7e 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[a7f 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a80 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[a81 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[a82 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a83 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a84 05-31 05:22:01.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a85 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a86 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a87 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a88 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[a89 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a8a 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a8b 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a8c 05-31 05:22:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a8d 05-31 05:22:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[a8e 05-31 05:22:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a8f 05-31 05:22:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[a90 05-31 05:22:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a91 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:10991477598238104586 tag:EMPTY mem_req:\270R\345;\301\030\275\311\272l\201\326fv\354\nh\335%t\267?\002 z\211\030\272r\361\375\235\365_\372\014.j\021e\241f\000\371\n\307\017\276z\250 T\343\262\\\r" > > > , Envelope: 1089 bytes, Signature: 0 bytes -[a92 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a93 05-31 05:22:02.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:10991477598238104586 tag:EMPTY mem_req:\270R\345;\301\030\275\311\272l\201\326fv\354\nh\335%t\267?\002 z\211\030\272r\361\375\235\365_\372\014.j\021e\241f\000\371\n\307\017\276z\250 T\343\262\\\r" > > > , Envelope: 1089 bytes, Signature: 0 bytes -[a94 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[a95 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[a96 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 10991477598238104586, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 441 bytes, Signature: 0 bytes to 1 peers -[a97 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020)" signature:"0D\002 &\322V\357\263\272`\214\334\343\221-Y\305\322\033r\310J\373\265_\007(\237\350\342\3279c^\222\002 [M\343\323GI{\342\215\211\303\302\377\254\261\366\327\366\320\177\377Ua\320\205%\314\n>\243\246\346" secret_envelope: > -[a98 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 10991477598238104586, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 441 bytes, Signature: 0 bytes -[a99 05-31 05:22:02.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[a9a 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[a9b 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[a9c 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[a9d 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[a9e 05-31 05:22:02.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[a9f 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[aa0 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[aa1 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[aa2 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[aa3 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[aa4 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[aa5 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[aa6 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[aa7 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[aa8 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[aa9 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[aaa 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[aab 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[aac 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[aad 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[aaf 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[ab0 05-31 05:22:02.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[aae 05-31 05:22:02.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020*" signature:"0E\002!\000\266\tP/3b\335~e\225\001\022\234BN\352\321\355x\223\341\346;\232g\251\371\177f\016CX\002 \013\032\027\0309u\360\231\321\272\207\266}FP\366\352YE\262\3712\026\001Q\022\361\037\007\027J\346" > -[ab1 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[ab2 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[ab3 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ab4 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[ab5 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ab6 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[ab7 05-31 05:22:02.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ab9 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[ab8 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[aba 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[abb 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[abc 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[abd 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[abe 05-31 05:22:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[abf 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[ac0 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[ac1 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[ac2 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ac3 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -[ac4 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -[ac5 05-31 05:22:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ac6 05-31 05:22:03.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[ac7 05-31 05:22:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ac8 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[ac9 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[aca 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[acb 05-31 05:22:03.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[acc 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[acd 05-31 05:22:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ace 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[acf 05-31 05:22:03.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[ad0 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[ad1 05-31 05:22:03.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ad2 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[ad3 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ad4 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[ad5 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[ad6 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[ad7 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[ad8 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[ad9 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[ada 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[adb 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[adc 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[add 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[ade 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[adf 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[ae1 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[ae2 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ae0 05-31 05:22:03.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020+" signature:"0E\002!\000\225`\265\\|K_w\\\345n\234\210+\376\204\020N]\240D\222\274G\243h\212\032-\3279\310\002 !\255\213\261\201a0\235[s\200\3463\245wfU<\242>&\221\016\035\215pmS\007E\3150" secret_envelope: > -[ae3 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[ae4 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[ae5 05-31 05:22:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ae6 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[ae7 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[ae8 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[ae9 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[aea 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[aec 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[aeb 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[aed 05-31 05:22:03.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[aef 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[aee 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[af0 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[af1 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[af2 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[af3 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[af4 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[af5 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[af6 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[af7 05-31 05:22:03.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[af8 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" secret_envelope:A\002\377\236\207j\\\211\257R\337\217\233\262\306\002 \006\241\320\375\313.\265\255/Pr\230\216s\311a\211~\031\324\177,\374)\347\317\3609^\031S\374" > > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -[af9 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[afa 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[afb 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[afe 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[afd 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 272 bytes, Signature: 0 bytes -[afc 05-31 05:22:03.66 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[b00 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[aff 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[b01 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -[b04 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[b02 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -[b05 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b06 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -[b07 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[b08 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[b09 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[b0a 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b0b 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[b0c 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[b0d 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[b0e 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[b0f 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[b10 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[b11 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[b12 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b13 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b14 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[b15 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[b16 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b17 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[b18 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b19 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[b1a 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[b1b 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[b1c 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[b1d 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[b1e 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[b1f 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b20 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b21 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[b22 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b23 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b24 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b25 05-31 05:22:03.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[b26 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 43 but got ts: inc_num:1527744091508552400 seq_num:42 -[b27 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b28 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b29 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[b2a 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[b2b 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[b2c 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[b2d 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[b2e 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[b2f 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b30 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b03 05-31 05:22:03.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020," signature:"0E\002!\000\340|\\\325\265d\004;C\221#\020\357y$B\016\242\222A\335[6\212\201\250\375\220\252\333\316;\002 a\3535\271i\327J6S\266\321t\326\200~\217\2469[\201\347\332\017\356\272-E\247\355\356\357-" > > , Envelope: 166 bytes, Signature: 0 bytes -[b31 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[b32 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[b33 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b34 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[b35 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b36 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[b37 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 46 but got ts: inc_num:1527744090808810100 seq_num:44 -[b38 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b39 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b3a 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[b3b 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b3c 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b3d 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b3e 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[b3f 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 43 but got ts: inc_num:1527744091508552400 seq_num:42 -[b40 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b41 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b42 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[b43 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[b44 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[b45 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[b46 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[b47 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[b48 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b49 05-31 05:22:03.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b4a 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[b4b 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[b4c 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[b4d 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b4e 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[b4f 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b50 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[b51 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b52 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[b53 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[b54 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[b55 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[b56 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[b57 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[b58 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b59 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b5a 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[b5b 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[b5c 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020-" signature:"0D\002 \002+\320S(\204\271\360\325\270\370\262\211\234\363\2008^?\337A'*\366\366+\177\225r\234\276<\002 \024\277/\322\246)t}\363\262\254\231\200+7\267}\007\277\324z\037\3042\314\310\033\237D\003\371\364" > -[b5d 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[b5e 05-31 05:22:03.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[b5f 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b60 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b61 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[b62 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b63 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b64 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b65 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[b66 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[b67 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[b68 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[b69 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[b6a 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[b6b 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b6c 05-31 05:22:05.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b6d 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[b6e 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[b6f 05-31 05:22:05.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b70 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[b71 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b72 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[b73 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b74 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b75 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b76 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b77 05-31 05:22:05.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[b78 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b79 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[b7a 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b7b 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[b7c 05-31 05:22:05.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b7d 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[b7e 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[b7f 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[b80 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[b81 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b82 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[b83 05-31 05:22:05.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[b84 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b85 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[b86 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b87 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b88 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b89 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[b8a 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[b8b 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[b8c 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[b8d 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[b8e 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[b8f 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[b90 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b91 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b92 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[b93 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[b94 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b95 05-31 05:22:06.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[b96 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[b97 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[b98 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b99 05-31 05:22:06.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[b9a 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b9b 05-31 05:22:06.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[b9c 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b9d 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[b9e 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[b9f 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ba0 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[ba1 05-31 05:22:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[ba2 05-31 05:22:06.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[ba3 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -[ba4 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[ba5 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[ba6 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[ba7 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ba8 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[ba9 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[baa 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[bab 05-31 05:22:06.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[bac 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[bad 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[bae 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[baf 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[bb0 05-31 05:22:06.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bb1 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bb2 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[bb4 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -[bb5 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bb7 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bb8 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[bb6 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bb9 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[bba 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[bbb 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[bbc 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[bb3 05-31 05:22:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bbd 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[bbf 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[bc0 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[bbe 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bc1 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[bc2 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bc3 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -[bc4 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bc5 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[bc6 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bc7 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bc8 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[bc9 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > > , Envelope: 166 bytes, Signature: 0 bytes -[bca 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bcb 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[bcc 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[bcd 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[bce 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[bcf 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[bd0 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[bd1 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[bd2 05-31 05:22:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[bd3 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bd4 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[bd5 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bd6 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[bd7 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[bd8 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\304c\002^#\274\313\351=\372\200\253\354g\370\\\273\341,`\221\002 4\017\210{[n\r\003\363\241\222G\254\224r\316\222\341\334\025\315R\352G\224\013\000UI:Yg" > alive:\206\316,\360\020\017\213RKz\227\337,\370\215\331\356\253\320\250\373\352\274M\207\204\335\237\306\214\022" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020/" signature:"0D\002 Yz\265[\362S{E\327n_Np\332AOP\007\023\324T\327\216m2\344\006A\035W\363^\002 -$\032\324\225k(\000\003\224&\337\263\307#\016\264\237\2721\0011\335\026\262\017\332\346\246f\273\016" > -[bd9 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[bda 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[bdb 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[bdc 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[bdd 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[bde 05-31 05:22:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[bdf 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[be0 05-31 05:22:06.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[be1 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[be2 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[be3 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[be4 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[be5 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[be6 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[be7 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[be8 05-31 05:22:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[be9 05-31 05:22:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bea 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[beb 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[bec 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bed 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[bee 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bef 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[bf0 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[bf1 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[bf2 05-31 05:22:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[bf3 05-31 05:22:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -[bf4 05-31 05:22:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes -[bf5 05-31 05:22:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bf6 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[bf7 05-31 05:22:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bf8 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[bf9 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[bfa 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[bfb 05-31 05:22:07.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bfc 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[bfd 05-31 05:22:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[bfe 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[bff 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[c00 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[c01 05-31 05:22:07.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c02 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[c03 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c04 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[c05 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[c06 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[c07 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[c08 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[c09 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[c0a 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[c0b 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[c0c 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c0d 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[c0e 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[c0f 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[c10 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0200" signature:"0D\002 ]\221\370(\373\227=\354\017\201\332fn4;!6A\237\016L\240\255\236&\235}8Vy8:\002 (\343\224\262\243\026\002\177(\366%\n\" \365\377\343\370\214]\245\206C\202#\311,\200\353\200[\366" secret_envelope: > -[c11 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[c12 05-31 05:22:07.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[c13 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[c14 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[c15 05-31 05:22:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c16 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[c17 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[c18 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[c19 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[c1a 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[c1b 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[c1c 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[c1d 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[c1e 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[c1f 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[c20 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[c21 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[c22 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[c23 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[c24 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c25 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[c26 05-31 05:22:07.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[c27 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c28 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[c29 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[c2a 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[c2b 05-31 05:22:07.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c2c 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[c2d 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[c2e 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[c2f 05-31 05:22:07.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -[c30 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[c31 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -[c32 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0201" signature:"0D\002 y\236\337\313\264\2459h\227kg\313\035\266\021\316\323W2^\\%\332\262\207\313\014\345NA\254\270\002 {)\036J\214\\\274m\233\363e{\020,5\036]\336\322\0064\006/\342\273\307\337\007\202E_\220" > > , Envelope: 165 bytes, Signature: 0 bytes -[c33 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[c34 05-31 05:22:07.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[c35 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[c36 05-31 05:22:07.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c38 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[c37 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[c39 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c3a 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[c3b 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c3c 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c3d 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[c3e 05-31 05:22:07.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[c3f 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[c40 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[c41 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[c42 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[c43 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[c44 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c45 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[c46 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[c47 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[c48 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[c49 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c4a 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c4b 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c4c 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[c4d 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c4e 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c4f 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c50 05-31 05:22:07.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[c51 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 48 but got ts: inc_num:1527744091508552400 seq_num:47 -[c52 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[c53 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[c54 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c55 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[c56 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[c57 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[c58 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[c59 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[c5a 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[c5b 05-31 05:22:07.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[c5c 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c5d 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[c5e 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[c5f 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c60 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[c61 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c62 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 53 but got ts: inc_num:1527744091840124700 seq_num:51 -[c63 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c64 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c65 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[c66 05-31 05:22:07.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c67 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c68 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[c69 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[c6a 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 48 but got ts: inc_num:1527744091508552400 seq_num:47 -[c6b 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c6c 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[c6d 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[c6e 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[c6f 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[c70 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[c71 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[c72 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[c73 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c74 05-31 05:22:07.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[c75 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[c76 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[c77 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[c78 05-31 05:22:07.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c79 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[c7a 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[c7b 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[c7c 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[c7d 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[c7e 05-31 05:22:07.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[c7f 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[c80 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[c81 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[c82 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[c83 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[c84 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[c85 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[c86 05-31 05:22:07.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[c87 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\363kN\324\356\002 o\227\367\266\244\301^\366\340(\204\256B\0340\322!f\314Pui\016\313\325\214\344\231W\260-p" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0202" signature:"0E\002!\000\367$/0\206;%6b\230\2124\250\302?a\376u3\353\030\300e%\01492\026\245$\344\217\002 \177\317\303\350\361\301bE\\\307\021\207\237\201\353\311V\324\033]\026L:!`\353\367\307\264\356\340n" > -[c88 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[c89 05-31 05:22:07.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[c8a 05-31 05:22:08.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -[c8b 05-31 05:22:08.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully -[c8c 05-31 05:22:08.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 -[c8d 05-31 05:22:08.79 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 -[c8e 05-31 05:22:09.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 -[c8f 05-31 05:22:09.80 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) -[c90 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized -[c91 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false -[c92 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created -[c93 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created -[c94 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 -[c95 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED -[c96 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" -[c97 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" -[c98 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" -[c99 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete -[c9a 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -[c9b 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[c9c 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -[c9d 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] handling PUT_STATE from chaincode -[c9e 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] Completed PUT_STATE. Sending RESPONSE -[c9f 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -[ca0 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] handling PUT_STATE from chaincode -[ca1 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [82a11985] Completed PUT_STATE. Sending RESPONSE -[ca2 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [82a11985] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[ca3 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [82a11985] notifying Txid:82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, channelID:businesschannel -[ca4 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[ca5 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] Exit -[ca6 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[ca7 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -[ca8 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][82a11985] Exit -[ca9 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][82a11985] Entry chaincode: name:"lscc" -[caa 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][82a11985] escc for chaincode name:"lscc" is escc -[cab 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, chaincode: lscc} -[cac 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, chaincode: lscc} -[cad 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][82a11985] Exit -[cae 05-31 05:22:09.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -[caf 05-31 05:22:09.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55374 -[cb0 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[cb1 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[cb2 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[cb3 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[cb4 05-31 05:22:10.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[cb5 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[cb6 05-31 05:22:10.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[cb7 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[cb8 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[cb9 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[cba 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[cbb 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[cbc 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[cbd 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[cbe 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[cbf 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[cc0 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[cc2 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[cc3 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[cc4 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\363kN\324\356\002 o\227\367\266\244\301^\366\340(\204\256B\0340\322!f\314Pui\016\313\325\214\344\231W\260-p" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0203" signature:"0D\002 \021i\346\232\350\337\0062H\242\325\200\026\202\003\376\242/\013\326[\316\034\236\331\003M\003\360\0169a\002 \014\257G\221\215\241O6\246k5M\304\215\013\212\302\323\274w\333@\035\272(E\341k\242\326m\307" > -[cc5 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[cc6 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[cc1 05-31 05:22:10.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[cc7 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[cc8 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[cc9 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[cca 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ccb 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[ccc 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[ccd 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[cce 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[ccf 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[cd0 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[cd1 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[cd2 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[cd3 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[cd4 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[cd5 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[cd6 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[cd7 05-31 05:22:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[cd8 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[cd9 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[cda 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[cdb 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[cdc 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[cdd 05-31 05:22:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[cde 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[cdf 05-31 05:22:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ce0 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[ce1 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ce2 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[ce3 05-31 05:22:10.93 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[ce4 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[ce5 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[ce6 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ce7 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[ce8 05-31 05:22:10.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ce9 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[cea 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[ceb 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[ced 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[cee 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[cec 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[cef 05-31 05:22:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -[cf0 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes -[cf1 05-31 05:22:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[cf2 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[cf3 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[cf4 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[cf5 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[cf6 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[cf7 05-31 05:22:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[cf8 05-31 05:22:10.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[cf9 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[cfa 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[cfb 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[cfd 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[cfe 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[cfc 05-31 05:22:11.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[cff 05-31 05:22:11.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[d00 05-31 05:22:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d01 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[d02 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[d03 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[d04 05-31 05:22:11.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d05 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[d06 05-31 05:22:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d07 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[d08 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[d09 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[d0a 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d0b 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:9200526324220404161 tag:EMPTY mem_req: > , Envelope: 982 bytes, Signature: 0 bytes -[d0c 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d0d 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:9200526324220404161 tag:EMPTY mem_req: > , Envelope: 982 bytes, Signature: 0 bytes -[d0e 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d0f 05-31 05:22:11.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[d10 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 9200526324220404161, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes to 1 peers -[d11 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\363kN\324\356\002 o\227\367\266\244\301^\366\340(\204\256B\0340\322!f\314Pui\016\313\325\214\344\231W\260-p" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0204" signature:"0E\002!\000\247\372fx\273j\000\037\200\230\327w\242-\222c\222/\354\241v\265\351U\025\2776\002\276\305\r\271\002 t4\345\223>O\310>\031\225\027\024\030\342\220 \033\213\237>\256\274\223\213\234x8U\033f\000x" > -[d12 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 9200526324220404161, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -[d13 05-31 05:22:11.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d14 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -[d15 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d16 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes -[d17 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[d18 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[d19 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[d1a 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[d1b 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[d1c 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[d1d 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[d1e 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[d1f 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d20 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[d21 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[d23 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[d24 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d22 05-31 05:22:11.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0205" signature:"0E\002!\000\270\200M3R\3319\226\305\323Uh+L\217\222\261\026\375;p\276\007\372\n\213\035\201\351\334\350\236\002 \024IK\240\261\t\221U\220v\276\364W\335\023\r\202\256\263Oq\202\267\204\344\310;\376D\353*\332" secret_envelope: > -[d25 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d26 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[d27 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d28 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d29 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d2a 05-31 05:22:11.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[d2b 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 52 but got ts: inc_num:1527744091508552400 seq_num:51 -[d2c 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[d2d 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d2e 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[d2f 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[d30 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d31 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d32 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d33 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d34 05-31 05:22:11.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d35 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d36 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[d37 05-31 05:22:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d38 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d39 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d3a 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d3b 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[d3c 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d3d 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d3e 05-31 05:22:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d3f 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -[d40 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -[d41 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d42 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:17217082114576918640 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes -[d43 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d44 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[d45 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[d46 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[d47 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d48 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes to 1 peers -[d49 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0206" signature:"0D\002 9tA\267\366\321NN\367\364\253\341\246\225\261\213Ca\326J\260\371Q\312\304\370\017\377\010\2228D\002 psF6\365]\376\346T\2631\345\377\026\206\346I1\245\356q\337\332\220\350o?3\304H\337\336" > -[d4a 05-31 05:22:11.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 17217082114576918640, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes -[d4b 05-31 05:22:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d4c 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[d4d 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[d4e 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[d4f 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[d50 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[d52 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[d51 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[d53 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[d54 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d56 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d55 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[d57 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[d58 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[d59 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d5a 05-31 05:22:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d5b 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:7208448587798055339 tag:EMPTY mem_req:\233[\010;\344\331\3768\344\301M\036\010\010\177\205" > > , Envelope: 983 bytes, Signature: 0 bytes -[d5c 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d5e 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[d5d 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:7208448587798055339 tag:EMPTY mem_req:\233[\010;\344\331\3768\344\301M\036\010\010\177\205" > > , Envelope: 983 bytes, Signature: 0 bytes -[d60 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d61 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[d5f 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[d62 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d63 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 7208448587798055339, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 657 bytes, Signature: 0 bytes to 1 peers -[d65 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 7208448587798055339, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 657 bytes, Signature: 0 bytes -[d66 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d64 05-31 05:22:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\366\322\277Br\2420l\206\357\334f\316\246`\373\221\203\022U\201\250\314\233" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0207" signature:"0D\002 4\2276w\326\335!\357\007\237\250\302\"\252\3253\031#\001\2505X\215\222D\367\246\340\026!7\370\002 jv\321\275\220\315\0309w\245\210\216\3220\245\360\256V\302yK\326\254\315\013\227V\305\313I\002&" > -[d67 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[d68 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[d69 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[d6a 05-31 05:22:11.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d6b 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers -[d6c 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[d6d 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[d6e 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -[d70 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 272 bytes, Signature: 0 bytes -[d71 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d72 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\0208" signature:"0E\002!\000\303\225\311\323[pl\025Z\241C6D>\3075=\272\346\2227\302\265\211Y\000\020\225\305,\273\210\002 \033\n\007\313\337\370\322\253\370\033\353\263\356\0202\273\352\r\026iK\201\3668\332\213b\366\245\277'O" > > , Envelope: 166 bytes, Signature: 0 bytes -[d73 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d74 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -[d75 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d76 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -[d77 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[d78 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[d79 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[d7a 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[d7b 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[d7c 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[d6f 05-31 05:22:11.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[d7d 05-31 05:22:11.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[d7e 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[d7f 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[d80 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[d81 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[d82 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[d83 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[d84 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[d86 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[d85 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d88 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d89 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[d87 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[d8a 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[d8b 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[d8c 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[d8d 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[d8e 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[d8f 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[d90 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 53 but got ts: inc_num:1527744091508552400 seq_num:52 -[d91 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[d92 05-31 05:22:11.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[d93 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[d94 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[d95 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[d96 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[d97 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[d98 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[d99 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[d9a 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[d9b 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -[d9d 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -[d9e 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers -[d9f 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -[da0 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[da1 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -[da2 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[da3 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 69 bytes -[da4 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[da5 05-31 05:22:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[d9c 05-31 05:22:11.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[da6 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[da7 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[da8 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 57 but got ts: inc_num:1527744091840124700 seq_num:55 -[da9 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[daa 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dab 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[dac 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dad 05-31 05:22:11.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[dae 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[daf 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[db0 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 53 but got ts: inc_num:1527744091508552400 seq_num:52 -[db1 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[db2 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[db3 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[db4 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[db5 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[db6 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[db7 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[db8 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[db9 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[dba 05-31 05:22:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[dbb 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dbc 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[dbd 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[dbe 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dbf 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dc0 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[dc1 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[dc2 05-31 05:22:11.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[dc3 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[dc4 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[dc5 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[dc6 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[dc7 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[dc8 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[dc9 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dca 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[dcb 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[dcc 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dcd 05-31 05:22:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[dce 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[dcf 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[dd0 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[dd1 05-31 05:22:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[dd2 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dd3 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dd4 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[dd5 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[dd6 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dd7 05-31 05:22:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[dd8 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[dd9 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[dda 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ddb 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[ddc 05-31 05:22:11.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[ddd 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 3}, Envelope: 5364 bytes, Signature: 0 bytes -[dde 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ddf 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[de0 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[de1 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422b47320 env 0xc423151b30 txn 0 -[de2 05-31 05:22:11.95 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423151b30 -[de3 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -[de4 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[de5 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -[de6 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[de7 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -[de8 05-31 05:22:11.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -[de9 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc422c1f500, header channel_header:"\010\003\032\014\010\351\214\276\330\005\020\260\324\272\241\002\"\017businesschannel*@82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030kX0\177Y\260\2740\\\337kGe\025\002\264\\5b\000]\203\332\253" -[dea 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[deb 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[dec 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[ded 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -[dee 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] -[def 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[df0 05-31 05:22:11.97 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc422e33000 -[df1 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[df3 05-31 05:22:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[df4 05-31 05:22:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[df5 05-31 05:22:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[df6 05-31 05:22:12.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[df2 05-31 05:22:11.98 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin -[df7 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[df8 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[df9 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[dfa 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[dfb 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[dfc 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[dfd 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[dff 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -[e00 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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}} -[e01 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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}} -[e02 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -[e03 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -[e04 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [89536da4-4dce-4e24-9add-ed78793d7113] -[e05 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[e06 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [89536da4-4dce-4e24-9add-ed78793d7113] -[e07 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -[e08 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: -[e09 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 appears to be valid -[e0a 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc422e33000 -[e0b 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422b47320 env 0xc423151b30 txn 0 -[e0c 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[e0d 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[e0e 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] -[e0f 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[e10 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] -[e11 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[e12 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[e13 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[e14 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) -[e15 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] marked as valid by state validator -[e16 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[e17 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[e18 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[e19 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc4230cfad0)} -[e1a 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] -[e1b 05-31 05:22:12.04 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -[e1c 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar -[e1d 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} -[e1e 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] -[e1f 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} -[e20 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc420385420})} -[e21 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage -[dfe 05-31 05:22:12.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[e22 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[e23 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[e24 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020:" signature:"0D\002 e%\277\241\324\320\271\360X\026\035\245~t`\373c6\207\025\023\255\332?\223\272\271qXGW\360\002 .\325d@3\335ml\336%\236|\227 In6/+W\234\352y\363\021KR~\353b\251\343" > -[e25 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[e27 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] -[e26 05-31 05:22:12.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e28 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0xf3, 0xc7, 0x4f, 0xbb, 0x87, 0x22, 0x1c, 0x17, 0x22, 0xe5, 0x99, 0xfa, 0x51, 0x89, 0x6e, 0x4f, 0xee, 0x11, 0xe1, 0x74, 0x74, 0x8f, 0xd0, 0xe3, 0xb8, 0xb3, 0x7d, 0x74, 0x4f, 0x3e, 0x8f, 0x87} txOffsets= -txId=82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 locPointer=offset=70, bytesLength=3459 +[670 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with ldflagsOpt: '-ldflags "-linkmode external -extldflags '-static'"' +[671 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/golang] generateDockerBuild.GenerateDockerBuild -> INFO building chaincode with tags: experimental +[672 06-12 02:14:26.10 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/util] generateDockerBuild.GenerateDockerBuild.DockerBuild -> DEBU Attempting build with image hyperledger/fabric-ccenv:amd64-1.2.0 +[673 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +[674 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_req: , Envelope: 51 bytes, Signature: 0 bytes +[675 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[676 06-12 02:14:26.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] -> DEBU Sending 1 IDENTITY_MSG items to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[677 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[678 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[679 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[67a 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[67b 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[67c 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[67d 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[67e 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[67f 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[680 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[681 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[682 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[683 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[684 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[685 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[686 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[687 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[688 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[689 06-12 02:14:26.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[68a 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[68b 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[68d 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[68e 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[68c 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[68f 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[690 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[691 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[692 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[693 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[694 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[695 06-12 02:14:26.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[696 06-12 02:14:27.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[697 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +[698 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[699 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[69a 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[69b 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[69d 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[69c 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[69e 06-12 02:14:27.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[69f 06-12 02:14:27.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6a0 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6a1 06-12 02:14:27.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6a2 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[6a3 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[6a4 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6a5 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6a6 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[6a7 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6a8 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[6a9 06-12 02:14:27.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[6aa 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[6ab 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[6ac 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6ae 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6ad 06-12 02:14:27.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6af 06-12 02:14:27.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6b0 06-12 02:14:27.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[6b1 06-12 02:14:27.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[6b2 06-12 02:14:27.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[6b3 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[6b4 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[6b5 06-12 02:14:27.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6b6 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6b7 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6b8 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[6b9 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[6ba 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6bb 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6bc 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[6bd 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[6be 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[6bf 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[6c0 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[6c1 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[6c2 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[6c3 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[6c4 06-12 02:14:27.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[6c5 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[6c6 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6c7 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6c8 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6c9 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6ca 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6cb 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6cc 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[6cd 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[6ce 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6cf 06-12 02:14:27.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[6d0 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6d1 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6d2 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[6d3 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[6d4 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[6d5 06-12 02:14:27.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[6d6 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[6d7 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[6d8 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[6d9 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[6da 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[6db 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[6dc 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[6dd 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[6de 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[6df 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[6e0 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[6e1 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[6e2 06-12 02:14:27.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[6e3 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[6e4 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[6e5 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[6e6 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[6e7 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[6e8 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[6e9 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[6ea 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\027" signature:"0E\002!\000\275\307\333!\322b\264\004\000\232\030d\314\327W\266&\212K\322\246\036\251S\334:_\231\014\324\341\027\002 \035\024\030S?\321#\275\026\261\324\337\325\253\237\022\027\000\332\321\035\005 \342\345\017\341x\343\371i\037" > +[6eb 06-12 02:14:27.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[6ec 06-12 02:14:27.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6ed 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[6ee 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[6ef 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[6f0 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[6f1 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[6f2 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[6f3 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[6f4 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6f6 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[6f8 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[6f9 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[6fa 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[6f5 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[6fb 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6f7 06-12 02:14:28.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[6fc 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[6fd 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[6fe 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[6ff 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +[702 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[703 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[704 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes +[705 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[701 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[706 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 272 bytes, Signature: 0 bytes +[707 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[700 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[708 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[709 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[70b 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\030" signature:"0E\002!\000\250\232\035(\3009\366\204\327\204v\022r\324\242\333\245\370\033\2059\024\nN\254\260\002/\313\026\004-\002 \037\335\355\r\244\273\375\344\003)\375K\376\243\337\232\234\345\224\202\222\356\334\251\266\374\341t9\314C)" > > , Envelope: 166 bytes, Signature: 0 bytes +[70c 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[70a 06-12 02:14:28.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[70d 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[70e 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[70f 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[710 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[711 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[712 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[713 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[715 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[714 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[716 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[717 06-12 02:14:28.11 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[718 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[719 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[71a 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[71b 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[71c 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[71d 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[71e 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[71f 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[720 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[721 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[722 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[723 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[724 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[725 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[726 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[727 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[728 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[729 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[72a 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[72b 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[72c 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[72d 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[72e 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[72f 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[730 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[732 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[733 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[731 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[734 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[735 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[736 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[737 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[738 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[739 06-12 02:14:28.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[73a 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[73b 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[73c 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[73d 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[73e 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[73f 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[740 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[742 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[741 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[743 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[744 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 27 but got ts: inc_num:1528769651824440500 seq_num:26 +[745 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[746 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[747 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[748 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[749 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[74a 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[74b 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[74c 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 25 but got ts: inc_num:1528769653227426900 seq_num:23 +[74d 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[74e 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[74f 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[750 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[751 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[752 06-12 02:14:28.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[753 06-12 02:14:28.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[754 06-12 02:14:28.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[755 06-12 02:14:28.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[756 06-12 02:14:28.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[757 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[758 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[75a 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[75b 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[75c 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[759 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[75d 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[75e 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[75f 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[761 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[762 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[760 06-12 02:14:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[763 06-12 02:14:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[764 06-12 02:14:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[765 06-12 02:14:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[766 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[767 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[768 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[769 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[76a 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +[76b 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 39 bytes, Signature: 0 bytes +[76c 06-12 02:14:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[76d 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[76e 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[76f 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[770 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[771 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[772 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[773 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[774 06-12 02:14:28.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[775 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[776 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +[777 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[778 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[779 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[77a 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[77b 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[77c 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[77d 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[77e 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[77f 06-12 02:14:28.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[780 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[781 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[782 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[783 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[784 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[785 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[786 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[787 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[788 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[789 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[78a 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[78b 06-12 02:14:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[78c 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[78d 06-12 02:14:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[78e 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[78f 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[790 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[791 06-12 02:14:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[792 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[793 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[794 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[795 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[796 06-12 02:14:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[797 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +[798 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +[799 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[79a 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > > , Envelope: 165 bytes, Signature: 0 bytes +[79b 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[79c 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[79d 06-12 02:14:28.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[79e 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[79f 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[7a0 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[7a1 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[7a2 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[7a3 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[7a4 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[7a5 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[7a6 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\031" signature:"0E\002!\000\265\264\034?\337C\345\323\224p\237\374\3327\233<\023\203\032\342Wk\021\300\213q\364\373\014\261=8\002 \n;\222F\337BP\363\3431\200'\375\234/e\211\350:\"\317a\014-\024\270\274\326\353\351K\372" > +[7a7 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[7a8 06-12 02:14:28.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[7a9 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[7aa 06-12 02:14:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[7ab 06-12 02:14:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7ac 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[7ad 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[7ae 06-12 02:14:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7af 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[7b0 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[7b1 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[7b2 06-12 02:14:29.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7b3 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[7b4 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7b5 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[7b6 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[7b7 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[7b8 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[7b9 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[7ba 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[7bb 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[7bc 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[7bd 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[7be 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[7bf 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[7c0 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +[7c1 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\032" signature:"0E\002!\000\206]\230\353\2615p\001\360\272&\271\225\252\247i%\037*\355\177\366\2552\223f\310\241\367\311$\327\002 \036\224\304\353Gm\217\232\260&\365<\"\344\020\207\025+>M\201\275\346\032\211\233\246\313W6&4" secret_envelope: > +[7c2 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[7c3 06-12 02:14:29.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[7c4 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7c5 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7c6 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[7c7 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7c8 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7c9 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7ca 06-12 02:14:31.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[7cb 06-12 02:14:31.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[7cc 06-12 02:14:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[7cd 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[7ce 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[7cf 06-12 02:14:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[7d0 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[7d1 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[7d2 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7d3 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[7d5 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[7d6 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7d7 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7d8 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[7d4 06-12 02:14:31.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[7d9 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[7da 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[7db 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7dd 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[7dc 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7de 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7df 06-12 02:14:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[7e0 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7e1 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7e3 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[7e2 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[7e4 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[7e5 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[7e7 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[7e8 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[7e9 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7ea 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[7eb 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7ec 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[7e6 06-12 02:14:31.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[7ed 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[7ee 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[7ef 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[7f0 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[7f1 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[7f2 06-12 02:14:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[7f3 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[7f4 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[7f5 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[7f6 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[7f8 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[7f9 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[7f7 06-12 02:14:31.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\312\177G\263\302ZK\205\327\326\224\315\330\362\367\013\373\357" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\033" signature:"0E\002!\000\320zmV}\301M\234\370|[\343\315\026\207\312\307\322)y\"\236\310\360\2462\252\271\335W\305\267\002 |\027x<\013W\027\332I\243\321\304\226\234\212@VXB:\272\255\316\376\027\313:PA\322\027$" > +[7fa 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[7fb 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[7fc 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[7fd 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[7fe 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[7ff 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[800 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[801 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[802 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[803 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[804 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[805 06-12 02:14:32.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[806 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[807 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[808 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[809 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[80a 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[80b 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[80c 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[80d 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[80e 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[80f 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[810 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[811 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[812 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[813 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[814 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[815 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes +[816 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[817 06-12 02:14:32.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[818 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[819 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[81a 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[81b 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[81c 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 271 bytes, Signature: 0 bytes +[81d 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[81e 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\035" signature:"0E\002!\000\231\364U\033f\264M\017\246\233\352o\r0tt\242\326\313\266\366\356\362\006e\255\236N\351\205\324\241\002 yP\300\014\370 b\311|@!\320\240\273L\031\372\021\247\353\273\233%}\242\255\325$5\366\374\315" > > , Envelope: 166 bytes, Signature: 0 bytes +[81f 06-12 02:14:32.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[820 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[821 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[822 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[823 06-12 02:14:32.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[824 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[825 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[827 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[826 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[828 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[829 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[82a 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[82b 06-12 02:14:32.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[82c 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[82d 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[82e 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[82f 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[830 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[831 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[832 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[833 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[834 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[835 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[836 06-12 02:14:32.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[837 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[838 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[839 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[83a 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[83b 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[83c 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[83d 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[83e 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[840 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[83f 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[841 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[842 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[843 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[844 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[845 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[846 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[847 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[848 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[849 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[84a 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[84b 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[84c 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[84d 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[84e 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[84f 06-12 02:14:32.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[850 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[851 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 30 but got ts: inc_num:1528769653227426900 seq_num:29 +[852 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[853 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[854 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[855 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[856 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[857 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[858 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[859 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 32 but got ts: inc_num:1528769652429776900 seq_num:31 +[85a 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[85b 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[85c 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[85d 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[85e 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[85f 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[860 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[861 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[862 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[863 06-12 02:14:32.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[864 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[865 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[866 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[867 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[868 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[869 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[86a 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[86b 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[86c 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[86d 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[86e 06-12 02:14:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[86f 06-12 02:14:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[870 06-12 02:14:32.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[871 06-12 02:14:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[872 06-12 02:14:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[873 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[874 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[875 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[876 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[877 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[878 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[879 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[87a 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[87c 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[87b 06-12 02:14:32.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[87d 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[87e 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[87f 06-12 02:14:32.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[880 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[881 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[882 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[883 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[884 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[885 06-12 02:14:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[886 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[887 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[888 06-12 02:14:32.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[889 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[88a 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[88b 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[88c 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[88d 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[88e 06-12 02:14:32.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[88f 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[890 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[891 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[893 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[894 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[892 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[895 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[896 06-12 02:14:32.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[897 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[898 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[899 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[89a 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[89b 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[89c 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[89d 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[89e 06-12 02:14:32.46 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[89f 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[8a0 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[8a2 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[8a3 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[8a1 06-12 02:14:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8a4 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +[8a5 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +[8a6 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8a7 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > > , Envelope: 165 bytes, Signature: 0 bytes +[8a8 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8a9 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[8aa 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[8ab 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[8ac 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[8ad 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[8ae 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[8af 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[8b0 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[8b1 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[8b2 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +[8b3 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > alive:\312" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\036" signature:"0D\002 .\206\205\273\017o\274r\264\010\251\267S\240S\225\036\360`\200\243\004T\016\376B\362`\034`\034=\002 \0375\340\333\303;\204\317\274\201\337\260\2042\017UN\307\307b\356\354\017\344\273\322\360\266S\024<\322" > +[8b4 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[8b5 06-12 02:14:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[8b6 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[8b7 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[8b8 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[8b9 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8ba 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[8bb 06-12 02:14:32.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[8bc 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[8bd 06-12 02:14:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[8be 06-12 02:14:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8bf 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[8c0 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[8c1 06-12 02:14:32.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8c2 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[8c3 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[8c4 06-12 02:14:33.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[8c5 06-12 02:14:33.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8c6 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8c7 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[8c8 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8c9 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8ca 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8cb 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[8cc 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[8cd 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[8ce 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[8cf 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[8d0 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[8d1 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[8d2 06-12 02:14:33.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[8d3 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +[8d4 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8d5 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > > , Envelope: 166 bytes, Signature: 0 bytes +[8d6 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[8d7 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[8d8 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[8d9 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[8da 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[8db 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[8dc 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[8dd 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[8de 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[8df 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[8e0 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +[8e1 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\037" signature:"0D\002 \177\345V\016e;!\350\254\021\207\313\267\201\304j/\361\361\3130n\261\237!\273(\0133\3545\274\002 \013\305\235\303\t\367~F[\r\307\2503w\344v\363\212\034\271\305\330\363j\277\346$\256\254\364\254\002 /\002^v\217\270\016*2\323R\343\3213.\232\277l\240\201Q\330\313\316\342\311Td\003\217\211q" > > +[8e2 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[8e4 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[8e3 06-12 02:14:33.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[8e5 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[8e8 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8e6 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8e9 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[8e7 06-12 02:14:33.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8ea 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8ec 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[8ed 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8ee 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8ef 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[8eb 06-12 02:14:33.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8f0 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8f1 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[8f2 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8f3 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[8f4 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[8f5 06-12 02:14:33.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[8f6 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[8f7 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[8f8 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[8f9 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[8fa 06-12 02:14:35.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8fb 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[8fc 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[8fd 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[8fe 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[8ff 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[900 06-12 02:14:35.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[901 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[902 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[903 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[904 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[905 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[906 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[907 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[908 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[909 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[90a 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\027\327j\361\323M\352\3726\246Qd\355\230\016\234\n\227\035\24671" > alive:9\2072x\241\361\305\267\004\375\350\203\335\3704\216\242l\327\271\261\3459\350\326\275\201\002 Y\0170\203I.\002\301\350$\273\031\324.\320\030/\303\022\314\r\231c\002R\025\2728\027\217\275:" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020 " signature:"0E\002!\000\345\233u\270Hh\277\n\372\006\312\224\267\037\323)\354\254~O.[\243\256\036\261^\2024\271\362\263\002 r\032\326\226\0073\201\250\202?;\016K}\304\377\2217\010A\006\345\315T\346\236\342\016z%\211V" > +[90b 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[90c 06-12 02:14:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[90d 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[90e 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[90f 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[910 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[911 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[912 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[913 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[914 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[915 06-12 02:14:36.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[916 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[917 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[918 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[919 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[91a 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[91b 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[91c 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[91d 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[91e 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[91f 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[920 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[921 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[922 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[923 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[924 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[925 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[926 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[927 06-12 02:14:36.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes +[928 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[929 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 271 bytes, Signature: 0 bytes +[92a 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[92b 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020!" signature:"0E\002!\000\247W\021x\300\014\304\237ZT\377+o6 \305\256Y\300r\310\033A\205}\247NA\226\263\346\020\002 ''\245\257\311\342d\214O,H\354|\367p\331\303n\354\360\302\242\006\264O7.\251u\331{1" > > , Envelope: 166 bytes, Signature: 0 bytes +[92c 06-12 02:14:36.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[92d 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[92e 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[92f 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[930 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[931 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[932 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[933 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[934 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[935 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[936 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[937 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[938 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[939 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[93a 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[93d 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[93e 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[93f 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[93b 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[93c 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[940 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[941 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[942 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[943 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[944 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[945 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[946 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[947 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[949 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[948 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[94a 06-12 02:14:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[94b 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[94c 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[94d 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[94e 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[94f 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[950 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[951 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[952 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[953 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[954 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[955 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[956 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[957 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[958 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[959 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[95a 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 37 but got ts: inc_num:1528769652429776900 seq_num:36 +[95b 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[95c 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[95d 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[95e 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 35 but got ts: inc_num:1528769653227426900 seq_num:34 +[95f 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[960 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[961 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[962 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[963 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[964 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[965 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[966 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[967 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[968 06-12 02:14:36.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[969 06-12 02:14:36.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[96a 06-12 02:14:36.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[96b 06-12 02:14:36.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[96c 06-12 02:14:36.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[96d 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[96e 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[96f 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[970 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[971 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[972 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[973 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[974 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[975 06-12 02:14:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[976 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[977 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[978 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[979 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[97a 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[97b 06-12 02:14:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[97c 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[97d 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[97e 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[97f 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[980 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[981 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[982 06-12 02:14:36.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[983 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[984 06-12 02:14:36.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[985 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[986 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[987 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[988 06-12 02:14:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[989 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[98a 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[98b 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[98c 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[98d 06-12 02:14:36.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[98e 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[98f 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[990 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[991 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[992 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[993 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[994 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[995 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[996 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[997 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[998 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[999 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[99a 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[99b 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[99c 06-12 02:14:36.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[99d 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\"" signature:"0E\002!\000\303\023S\355\013z;|\240`\006\260\335g\035\204\"\030\033\323my\025\026\344\001\rJr\303\236\216\002 gc\231({\2726\236\305\203\211\336\307\242\344\317\361\366\t'\261\352\313\366\245?\\\357\356\204\222\017" > +[99e 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[99f 06-12 02:14:36.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9a0 06-12 02:14:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[9a1 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[9a2 06-12 02:14:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[9a3 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[9a4 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[9a5 06-12 02:14:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[9a6 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9a7 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9a8 06-12 02:14:36.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[9aa 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9ab 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9ac 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[9ad 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[9ae 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[9af 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[9b0 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[9b1 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[9b2 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[9b3 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[9b4 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9a9 06-12 02:14:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[9b5 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9b6 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[9b7 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[9b8 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9b9 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[9ba 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[9bb 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[9bc 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9be 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9bd 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9bf 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9c0 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9c1 06-12 02:14:36.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[9c2 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[9c3 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9c4 06-12 02:14:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[9c5 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[9c6 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[9c7 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[9c8 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[9c9 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[9ca 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9cb 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9cc 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9cd 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9ce 06-12 02:14:37.09 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9cf 06-12 02:14:37.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9d0 06-12 02:14:37.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[9d1 06-12 02:14:37.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[9d2 06-12 02:14:37.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[9d3 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[9d4 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[9d5 06-12 02:14:37.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9d6 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[9d7 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[9d8 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[9d9 06-12 02:14:37.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[9da 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[9dc 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[9dd 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9de 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[9db 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[9df 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[9e0 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[9e1 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[9e2 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[9e3 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[9e4 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[9e5 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[9e6 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[9e7 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +[9e8 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020$" signature:"0D\002 |\360K\200\275\315\003\326\200\340\271a\210\371\006\351)6\220\034\314\345\215R\272(A1\205\"\240\373\002 > +[9e9 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +[9ea 06-12 02:14:37.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9eb 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9ec 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9ed 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[9ee 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[9ef 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9f0 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9f1 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[9f2 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[9f3 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[9f4 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[9f5 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[9f6 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[9f7 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[9f8 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[9f9 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[9fa 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[9fb 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9fc 06-12 02:14:37.44 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9fd 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[9ff 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[9fe 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a00 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a01 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[a02 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a04 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a05 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[a03 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a06 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[a07 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a08 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a09 06-12 02:14:37.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[a0a 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a0b 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[a0c 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a0d 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a0e 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a0f 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[a10 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[a11 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[a12 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[a13 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[a14 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[a15 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a16 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[a17 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[a18 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[a1a 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a19 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a1b 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a1c 06-12 02:14:38.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a1d 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a1e 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a1f 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[a20 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a21 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a22 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[a23 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a24 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a25 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[a26 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a27 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a28 06-12 02:14:38.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[a29 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[a2a 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[a2b 06-12 02:14:39.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[a2c 06-12 02:14:39.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[a2d 06-12 02:14:39.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a2e 06-12 02:14:39.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[a2f 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[a30 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a31 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[a32 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a33 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[a34 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[a35 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[a36 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[a37 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[a38 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[a39 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a3a 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[a3b 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[a3c 06-12 02:14:39.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[a3d 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:'H\205\214\025\274gU\n\312\271\372\271Q\351" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020%" signature:"0E\002!\000\332\354H\356K\365\254\025\314}\310\347\2142\230k\027\375\353+\217>f\231]\246`\360\324\220\306+\002 ZR:@hg\351\332/\354\214\326\345\241\002\024}2\014\375S\372\001\254\307\016\366\274C\220Qf" > +[a3e 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[a3f 06-12 02:14:39.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a40 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[a41 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[a42 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[a43 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[a44 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[a45 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[a46 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[a47 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a48 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[a49 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a4a 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[a4b 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a4c 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[a4d 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[a4e 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[a4f 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a50 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[a51 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[a52 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[a53 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a54 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[a55 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[a56 06-12 02:14:40.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a57 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[a58 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[a5a 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[a59 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +[a5b 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +[a5c 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a5d 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a5e 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020&" signature:"0D\002 h\177\006\034\352\235Y\257i\214/\314\364\210\267\234C\0075\325\2377$\262\251G#5\337\036\277\334\002 \035T\004\243\305\267\322}#\005\220P\2253\004\003\311\206\373\210>\306\254W\255H\343![\355<\002" > > , Envelope: 165 bytes, Signature: 0 bytes +[a5f 06-12 02:14:40.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[a60 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[a61 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[a62 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a63 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[a64 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a65 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[a66 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[a67 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[a68 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[a69 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[a6a 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[a6b 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a6c 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[a6d 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[a6e 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[a6f 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[a70 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[a71 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[a72 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[a73 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a74 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a75 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[a76 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a78 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[a77 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a79 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a7a 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[a7b 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[a7c 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[a7d 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[a7e 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[a7f 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[a80 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a81 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[a83 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a82 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[a84 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a85 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[a86 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a87 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a88 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[a89 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[a8a 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[a8b 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[a8c 06-12 02:14:40.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[a8d 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[a8e 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[a8f 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a90 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[a91 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 644 bytes, Signature: 0 bytes +[a92 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 644 bytes, Signature: 0 bytes +[a93 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[a94 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 644 bytes, Signature: 0 bytes +[a95 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a96 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[a97 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a98 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a99 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[a9a 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[a9b 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 41 but got ts: inc_num:1528769651824440500 seq_num:40 +[a9c 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[a9d 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[a9e 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[a9f 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} +[aa0 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[aa1 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[aa2 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[aa3 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[aa4 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[aa5 06-12 02:14:40.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[aa6 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[aa7 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[aa8 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[aa9 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[aaa 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[aab 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[aac 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[aad 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[aae 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[aaf 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ab0 06-12 02:14:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[ab1 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ab2 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[ab3 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[ab4 06-12 02:14:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ab5 06-12 02:14:40.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[ab6 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[ab7 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[ab8 06-12 02:14:40.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[ab9 06-12 02:14:40.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[aba 06-12 02:14:40.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[abb 06-12 02:14:40.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[abc 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[abd 06-12 02:14:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[abe 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[abf 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[ac0 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[ac1 06-12 02:14:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ac2 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ac3 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ac4 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ac5 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[ac6 06-12 02:14:40.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ac7 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[ac8 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[ac9 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[aca 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[acb 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[acc 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[acd 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[ace 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[acf 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[ad0 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership +[ad1 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[ad2 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[ad3 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[ad4 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[ad5 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[ad7 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[ad8 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[ad6 06-12 02:14:40.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\205\317\002cw\274\275E\276D\334\303\275yJb\006\307C\017\262b\325\002 C\261\004\201\021\206p8b\332f\033\242O\010;\270\234*\374\207\375\322\201\334ar\356\021;\021V" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020'" signature:"0D\002 \013\t\344\323pw\036_HH\331\327\236\222\312J;1\221a\236\230\022\020\014q\240\2466\021\"Y\002 \016\321\027\226\274B\221\032R\203\344@7\032\006\205\310a\345\370\275:VU\317\332\325\372\211\342\021\342" > +[ad9 06-12 02:14:40.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[ada 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[adb 06-12 02:14:40.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[adc 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[add 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[ade 06-12 02:14:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[adf 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ae0 06-12 02:14:41.24 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ae1 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[ae2 06-12 02:14:41.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ae3 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[ae4 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ae5 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[ae6 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[ae7 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[ae8 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[ae9 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[aea 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[aeb 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[aec 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[aed 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[aee 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[aef 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[af0 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +[af1 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020(" signature:"0D\002 J\250\037\346Dr1\210\021\340\312\235-\303\035Cj\031\022Eu,\006W\247j\325\201\t\005#\010\002 PEw\243\345\037\230v\267\256\276\n \342\272\2146\244\352\255\013dW\353\376r\231\366\367v8\017" secret_envelope: > +[af2 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +[af3 06-12 02:14:41.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[af4 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[af5 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[af6 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[af7 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[af8 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[af9 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[afa 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[afb 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes]} +[afc 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[afd 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[afe 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[aff 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[b00 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[b01 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b02 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +[b03 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes to 1 peers +[b04 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[b06 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b05 06-12 02:14:41.84 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[b07 06-12 02:14:41.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b08 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[b09 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[b0a 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[b0b 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b0c 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes +[b0d 06-12 02:14:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b0e 06-12 02:14:42.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[b0f 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +[b10 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[b11 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[b12 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b13 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b14 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b15 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b16 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b17 06-12 02:14:42.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b18 06-12 02:14:42.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[b19 06-12 02:14:42.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[b1a 06-12 02:14:42.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[b1b 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[b1c 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[b1d 06-12 02:14:42.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b1e 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b1f 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[b20 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b21 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b22 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b23 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[b24 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[b25 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[b26 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[b27 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[b28 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[b29 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[b2a 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b2b 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[b2c 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[b2d 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b2e 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b2f 06-12 02:14:42.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b30 06-12 02:14:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b31 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b32 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b33 06-12 02:14:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[b34 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b35 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b37 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b36 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b38 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b39 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[b3a 06-12 02:14:42.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b3b 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b3c 06-12 02:14:42.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b3d 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b3e 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[b3f 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b40 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b41 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b42 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[b43 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[b44 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[b45 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[b46 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[b47 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[b48 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[b49 06-12 02:14:43.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b4a 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b4b 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b4c 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[b4d 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[b4e 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[b4f 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b50 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b51 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b52 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b53 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b54 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b55 06-12 02:14:43.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b56 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b57 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b58 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[b59 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b5a 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b5b 06-12 02:14:43.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b5c 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[b5d 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[b5e 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[b5f 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[b60 06-12 02:14:43.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b61 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[b62 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[b63 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b64 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[b65 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[b66 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[b67 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[b68 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[b69 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[b6a 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 69 bytes in aliveMembership +[b6b 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[b6c 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[b6d 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[b6e 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[b6f 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[b70 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020*" signature:"0E\002!\000\204\262\310q\336NR:\"_@\331\306C\320\320YR7\202\263\000Kdx?\"m\207\325\265i\002 {?Z\024\275\314\300.\241ga\"\215\025\217\320\nc\031A\021\372\214\236\\\314~S<\332\346\023" > +[b71 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[b72 06-12 02:14:43.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b73 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[b74 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[b75 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[b76 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[b77 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[b78 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[b79 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[b7a 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b7b 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[b7c 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b7d 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[b7e 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b7f 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[b80 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[b81 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[b82 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b83 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[b84 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[b85 06-12 02:14:44.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[b86 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b87 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[b88 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[b89 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b8a 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +[b8b 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[b8c 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[b8d 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes +[b8e 06-12 02:14:44.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b8f 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 270 bytes, Signature: 0 bytes +[b90 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[b91 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b92 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[b94 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020+" signature:"0D\002 L\017;\371\226\270E\320\010B6K\264\335!B\037\277\310+q\256\367\021\010\331\0001\"H+g\002 z\223[\351\370D\020\301\007\256\177^\352\336\003)\324jZi%\357\351\321\265\262qi\335~\265\261" > > , Envelope: 165 bytes, Signature: 0 bytes +[b95 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[b93 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[b96 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[b97 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[b98 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[b99 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[b9a 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[b9b 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[b9c 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[b9d 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[b9e 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[b9f 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[ba0 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[ba1 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[ba2 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[ba3 06-12 02:14:44.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ba4 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[ba5 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[ba6 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[ba7 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[ba8 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[ba9 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[baa 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[bab 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[bac 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[bad 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[bae 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[baf 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[bb0 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[bb1 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[bb2 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[bb3 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[bb4 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[bb5 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[bb6 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[bb7 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[bb8 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[bb9 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[bba 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[bbb 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[bbc 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[bbd 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[bbe 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 46 but got ts: inc_num:1528769651824440500 seq_num:45 +[bbf 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[bc0 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[bc1 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[bc2 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[bc3 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[bc4 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[bc5 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[bc6 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[bc7 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[bc8 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[bc9 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[bca 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[bcb 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[bcc 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[bcd 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[bce 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[bcf 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[bd0 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[bd1 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[bd2 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[bd3 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[bd4 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[bd5 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[bd6 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[bd7 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[bd8 06-12 02:14:44.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[bd9 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[bda 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[bdb 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[bdc 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[bdd 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[bde 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[bdf 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[be0 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[be1 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[be2 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[be3 06-12 02:14:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[be4 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[be5 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[be6 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[be7 06-12 02:14:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[be8 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[be9 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[bea 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[beb 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[bec 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[bed 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[bee 06-12 02:14:44.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[bef 06-12 02:14:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[bf0 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[bf1 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[bf2 06-12 02:14:44.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[bf3 06-12 02:14:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[bf4 06-12 02:14:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[bf5 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[bf6 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[bf7 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[bf8 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[bf9 06-12 02:14:44.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[bfa 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[bfb 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[bfc 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[bfd 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[bfe 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[bff 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[c00 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[c01 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[c02 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[c03 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[c04 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[c05 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[c06 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c07 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[c08 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[c09 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020," signature:"0E\002!\000\371\320\211\343\024\001\307\356\365\013\021\217\016A\300)n\342F*\246\210Z\252\030QO\317z\266\374`\002 %.\027\370!{\212\344\330\340\244kC\357\n\304M/\351(\252\254\370ZN\033\2607\177uO\264" > +[c0a 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[c0b 06-12 02:14:44.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c0c 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[c0d 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[c0e 06-12 02:14:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c0f 06-12 02:14:44.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[c10 06-12 02:14:44.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[c11 06-12 02:14:44.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c12 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[c13 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[c14 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[c15 06-12 02:14:45.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c16 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[c17 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c18 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[c19 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c1a 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[c1b 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[c1c 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[c1d 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[c1e 06-12 02:14:45.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[c1f 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[c20 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[c21 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c22 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[c23 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +[c24 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020-" signature:"0D\002 F\000\345?\223\252\336yR[\303#\003\321\271\300\224\237\275\2175\346\236X\334\032\016\240\364QaC\002 ,\221\256\tFx\215;\255\231}\307g+d\000\342\0147\262\250.\231\306w\350\024\355`\306\227\242" secret_envelope:\r}3" > > +[c25 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +[c26 06-12 02:14:45.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c27 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c28 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c29 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[c2a 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c2b 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c2c 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c2d 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[c2e 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[c2f 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[c30 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[c31 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[c32 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[c33 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[c34 06-12 02:14:46.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c35 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c36 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[c37 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c38 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c39 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c3a 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c3b 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c3c 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[c3d 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c3e 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c3f 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c40 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[c41 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[c42 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c43 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c44 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[c45 06-12 02:14:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c46 06-12 02:14:47.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[c47 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[c48 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[c4a 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[c4b 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c49 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c4c 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c4d 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c4e 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c4f 06-12 02:14:47.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c50 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[c51 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[c52 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[c53 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[c54 06-12 02:14:47.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[c55 06-12 02:14:47.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c56 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c57 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c58 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[c59 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c5a 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c5b 06-12 02:14:47.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c5c 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[c5d 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[c5e 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[c5f 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[c60 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[c61 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[c62 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[c63 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c64 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[c65 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[c66 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c67 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c68 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c69 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c6a 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c6b 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[c6c 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c6d 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c6e 06-12 02:14:47.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c6f 06-12 02:14:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c70 06-12 02:14:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c71 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[c72 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c73 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c74 06-12 02:14:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c75 06-12 02:14:47.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.deployImage -> DEBU Created image: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +[c76 06-12 02:14:47.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU start-recreated image successfully +[c77 06-12 02:14:47.69 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Create container: dev-peer0.org1.example.com-exp02-1.0 +[c78 06-12 02:14:47.80 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start.createContainer -> DEBU Created container: dev-peer0.org1.example.com-exp02-1.0-207541cceae707183f8108fcfc8ad03b450411570fb69827d3d40dc2ffdddbb4 +[c79 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[c7a 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[c7b 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[c7c 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[c7d 06-12 02:14:47.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c7e 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +[c7f 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +[c80 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[c81 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > > , Envelope: 165 bytes, Signature: 0 bytes +[c82 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[c83 06-12 02:14:47.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[c84 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[c85 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[c86 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[c87 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[c88 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[c89 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[c8a 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[c8b 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[c8c 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +[c8d 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\2410c)\204\211\356\037\344\002 a\205\250\331\205\274\271@\253\231\347\255\345\311\325\367~\320z\004\355\227\246VV6c\2623}3\"" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020/" signature:"0D\002 G\330\315\033Z\312\264\252\352\270?\224\276\352\237f\337\272v \351\025\014&X/\335&\256\240\364e\002 ;o\271\301H\212\\\363\343U\020h\033\350\312\np9\350\"\206\330\365\256L\235\022\216\365I\252}" > +[c8e 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[c8f 06-12 02:14:47.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c90 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[c91 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[c92 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[c93 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[c94 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[c95 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[c96 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[c97 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c98 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[c99 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c9a 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[c9b 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[c9c 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[c9d 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[c9e 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[c9f 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ca0 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[ca2 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[ca1 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[ca3 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ca4 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[ca5 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[ca6 06-12 02:14:48.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ca7 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +[ca8 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[ca9 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[caa 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes +[cab 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[cac 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 270 bytes, Signature: 0 bytes +[cad 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[cae 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0200" signature:"0D\002 $I\002m\321_9\005\371\337\201B6j\230\371\314\307'\301\264tJ\007\310\260\013\217\231ueG\002 )!\\\016\310E\203\361\362\274\216\336\377\235\326{[A\235\365\014\361[S\377\307\234\274\013E\360\343" > > , Envelope: 165 bytes, Signature: 0 bytes +[caf 06-12 02:14:48.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[cb0 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[cb2 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[cb3 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[cb4 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[cb1 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[cb5 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[cb6 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[cb7 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[cb8 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[cb9 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[cba 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[cbb 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[cbc 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[cbd 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cbe 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[cbf 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[cc0 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[cc1 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[cc2 06-12 02:14:48.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[cc3 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[cc4 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[cc5 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cc6 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[cc7 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[cc8 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[cc9 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cca 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ccb 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[ccc 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[ccd 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[cce 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[ccf 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[cd0 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[cd1 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cd2 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[cd3 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[cd4 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[cd5 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[cd7 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[cd6 06-12 02:14:48.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[cd8 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 51 but got ts: inc_num:1528769651824440500 seq_num:50 +[cd9 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cda 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[cdb 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[cdc 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[cdd 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cde 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[cdf 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[ce0 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 48 but got ts: inc_num:1528769653227426900 seq_num:47 +[ce1 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[ce2 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[ce3 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[ce4 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[ce5 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[ce6 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[ce7 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[ce8 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[ce9 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cea 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[ceb 06-12 02:14:48.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[cec 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[cee 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[ced 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[cef 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[cf0 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cf1 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[cf2 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[cf3 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[cf4 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[cf5 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[cf6 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[cf7 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[cf8 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[cf9 06-12 02:14:48.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[cfa 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[cfb 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[cfc 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[cfd 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[cfe 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[cff 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[d00 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[d01 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[d02 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[d03 06-12 02:14:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[d04 06-12 02:14:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d05 06-12 02:14:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[d06 06-12 02:14:48.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d07 06-12 02:14:48.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[d08 06-12 02:14:48.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d09 06-12 02:14:48.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[d0a 06-12 02:14:48.20 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[d0b 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[d0c 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[d0d 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[d0e 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 40 bytes, Signature: 0 bytes +[d0f 06-12 02:14:48.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d10 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d11 06-12 02:14:48.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[d12 06-12 02:14:48.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d14 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d15 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d16 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[d17 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[d18 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[d19 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[d1a 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership +[d1b 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[d1c 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[d1d 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[d13 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d1e 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d1f 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[d20 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d21 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d22 06-12 02:14:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[d23 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d24 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d25 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[d26 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d27 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d28 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[d29 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[d2a 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[d2b 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d2d 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[d2c 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d2e 06-12 02:14:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[d2f 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[d30 06-12 02:14:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d31 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[d32 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[d33 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[d34 06-12 02:14:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d35 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[d36 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[d37 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[d38 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[d39 06-12 02:14:48.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d3a 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[d3b 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[d3c 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d3d 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[d3e 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d3f 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[d40 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[d41 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[d42 06-12 02:14:48.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[d43 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[d44 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[d45 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[d46 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[d47 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[d48 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[d49 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0201" signature:"0D\002 >\033>ZY\371\366(\023\r\244\244\255\364\220\256W\357\377\276\001\223\373\356\030P\260\367\023\264\r\367\002 #BL\177\0364+\275\335\313U\203\202\253~#q\351@\236\027y,\030c_\337s;\0323\366" > +[d4a 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[d4b 06-12 02:14:48.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[d4c 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/core/container/dockercontroller] Do.Do.Start -> DEBU Started container dev-peer0.org1.example.com-exp02-1.0 +[d4d 06-12 02:14:48.55 UTC] [github.com/hyperledger/fabric/core/container] unlockContainer -> DEBU container lock deleted(exp02-1.0) +[d4e 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[d4f 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[d50 06-12 02:14:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d51 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode/accesscontrol] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.authenticate)-fm.authenticate -> DEBU Chaincode exp02:1.0 's authentication is authorized +[d52 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream -> DEBU Current context deadline = 0001-01-01 00:00:00 +0000 UTC, ok = false +[d53 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [] Fabric side handling ChaincodeMessage of type: REGISTER in state created +[d54 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Received REGISTER in state created +[d55 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.Register -> DEBU registered handler complete for chaincode exp02:1.0 +[d56 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Got REGISTER for chaincodeID = name:"exp02:1.0" , sending back REGISTERED +[d57 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister -> DEBU Changed state to established for name:"exp02:1.0" +[d58 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU sending READY for chaincode name:"exp02:1.0" +[d59 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageCreatedState.HandleRegister.notifyRegistry.sendReady -> DEBU Changed to state ready for chaincode name:"exp02:1.0" +[d5a 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.Launch.Launch -> DEBU launch complete +[d5b 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +[d5c 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[d5d 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +[d5e 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] handling PUT_STATE from chaincode +[d5f 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] Completed PUT_STATE. Sending RESPONSE +[d60 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +[d61 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] handling PUT_STATE from chaincode +[d62 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [bec9b07b] Completed PUT_STATE. Sending RESPONSE +[d63 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [bec9b07b] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[d64 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [bec9b07b] notifying Txid:bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, channelID:businesschannel +[d65 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[d66 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] Exit +[d67 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[d68 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +[d69 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][bec9b07b] Exit +[d6a 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][bec9b07b] Entry chaincode: name:"lscc" +[d6b 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][bec9b07b] escc for chaincode name:"lscc" is escc +[d6c 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, chaincode: lscc} +[d6d 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, chaincode: lscc} +[d6e 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][bec9b07b] Exit +[d6f 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +[d70 06-12 02:14:48.62 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44248 +[d71 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[d72 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[d73 06-12 02:14:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d74 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[d75 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[d76 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[d77 06-12 02:14:49.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d78 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[d79 06-12 02:14:49.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[d7a 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[d7b 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[d7c 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[d7d 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[d7e 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[d7f 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[d80 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[d81 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[d82 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[d83 06-12 02:14:49.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[d84 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +[d85 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0202" signature:"0E\002!\000\3540\267\246@\305\253\203\335\321\221H\001\235R\330/\277\025\0312\004\311-i\030\265\326\021[\215)\002 $\337\354,\277j\204\324\2356,N\310\"\264\006 \341\031\254\000e\231]\355\266\"m\316k\027\025" secret_envelope: > +[d86 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[d87 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[d88 06-12 02:14:49.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[d89 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [3], peers number [3] +[d8a 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [3], peers number [3] +[d8b 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[d8c 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f85cc0 env 0xc4232406c0 txn 0 +[d8d 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4232406c0 +[d8e 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +[d8f 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[d90 06-12 02:14:50.66 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +[d91 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[d92 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +[d93 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +[d94 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc423730a80, header channel_header:"\010\003\032\013\010\202\331\374\330\005\020\260\356\353*\"\017businesschannel*@bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\332\361\274\335\212R\\r\347\321P,v\2430\263\2368j7\356\230\270\230" +[d95 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[d96 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[d97 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[d98 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +[d9a 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[d99 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] +[d9b 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[d9c 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc423996000 +[d9d 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac, seq 0 out of 1 in block 3 for channel businesschannel with validation plugin vscc with plugin +[d9e 06-12 02:14:50.67 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[d9f 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes to 1 peers +[da0 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5336 bytes, seq: 3}, Envelope: 5366 bytes, Signature: 0 bytes +[da1 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[da2 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +[da3 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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}} +[da4 06-12 02:14:50.68 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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}} +[da5 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +[da6 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +[da7 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [c9c4785e-075a-48fa-a7be-975cf531a956] +[da8 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[da9 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [c9c4785e-075a-48fa-a7be-975cf531a956] +[daa 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +[dab 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 3, namespace: lscc, tx 0 validation results is: +[dac 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac appears to be valid +[dad 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc423996000 +[dae 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f85cc0 env 0xc4232406c0 txn 0 +[daf 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[db0 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[db1 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [3] +[db2 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[db3 06-12 02:14:50.69 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [3] +[db4 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[db5 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[db6 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[db7 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=(*version.Height)(nil) and read version=(*version.Height)(nil) +[db8 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [3] Transaction index [0] TxId [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] marked as valid by state validator +[db9 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[dba 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[dbb 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[dbc 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> DEBU Channel [businesschannel]: Handling state updates in LSCC namespace - stateUpdates=[]*kvrwset.KVWrite{(*kvrwset.KVWrite)(0xc42317e6f0)} +[dbd 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates -> INFO Channel [businesschannel]: Handling LSCC state update for chaincode [exp02] +[dbe 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handling chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +[dbf 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/chaincode/platforms/ccmetadata] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.RetrieveChaincodeArtifacts.ExtractStatedbArtifactsForChaincode.ExtractStatedbArtifactsFromCCPackage.GetMetadataAsTarEntries -> DEBU Created metadata tar +[dc0 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/cclifecycle] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy.invokeHandler.HandleChaincodeDeploy -> DEBU Channel businesschannel got a new deployment: Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30} +[dc1 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/cceventmgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners.HandleStateUpdates.HandleChaincodeDeploy -> DEBU Channel [businesschannel]: Handled chaincode deploy event for chaincode [[Name=exp02, Version=1.0, Hash=[]byte{0x8, 0xca, 0x67, 0x5c, 0x39, 0xa8, 0xba, 0xe2, 0x63, 0x18, 0x47, 0xa5, 0x21, 0xfc, 0x92, 0xe1, 0x29, 0x69, 0xfe, 0x12, 0x2b, 0xd4, 0xa9, 0xdf, 0xa, 0x70, 0x7c, 0xf1, 0x5, 0x9e, 0x87, 0x30}]] +[dc2 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{} +[dc3 06-12 02:14:50.70 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.invokeNamespaceListeners -> DEBU Invoking listener for state changes:&{%!s(*confighistory.dbProvider=&{0xc4203813c0})} +[dc4 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] to storage +[dc5 06-12 02:14:50.71 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [3] +[dc6 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=3, blockHash=[]byte{0x85, 0xcf, 0x9e, 0x4c, 0xc1, 0xd7, 0xb8, 0xde, 0x8c, 0xf1, 0x23, 0x5e, 0x4b, 0x7f, 0x6f, 0x1d, 0xcc, 0x70, 0x69, 0xaa, 0x7e, 0x1a, 0x8e, 0x7b, 0x90, 0x1f, 0x84, 0xc8, 0xe2, 0xfb, 0xcd, 0x8} txOffsets= +txId=bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac locPointer=offset=70, bytesLength=3459 ] -[e29 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to index -[e2a 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40167, bytesLength=3459] for tx number:[0] ID: [82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031] to blockNumTranNum index -[e2b 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45420], isChainEmpty=[false], lastBlockNumber=[3] -[e2c 05-31 05:22:12.06 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] -[e2d 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] -[e2e 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) -[e2f 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database -[e30 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[e31 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[e32 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[e33 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[e34 05-31 05:22:12.07 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] -[e35 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[e36 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] -[e37 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database -[e38 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions -[e39 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [ed5299bb-fa3c-42f0-98ca-57467dcfadd7] -[e3a 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] -[e3b 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[e3c 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] -[e3d 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [ed5299bb-fa3c-42f0-98ca-57467dcfadd7] -[e3e 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] -[e3f 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked -[e40 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] -[e41 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[e42 05-31 05:22:12.08 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: 82a11985152794bd4a50b76eec7b318e9ab20c258978765953ab421265a5a031 -[e43 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[e44 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[e45 05-31 05:22:12.09 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[e46 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[e47 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[e48 05-31 05:22:12.10 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[e49 05-31 05:22:12.11 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[e4a 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[e4b 05-31 05:22:12.13 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[e4c 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[e4d 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[e4e 05-31 05:22:14.83 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[e4f 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[e50 05-31 05:22:14.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e51 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[e52 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[e53 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e54 05-31 05:22:14.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[e55 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[e56 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[e57 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[e58 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[e59 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[e5a 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[e5b 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[e5c 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[e5d 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[e5e 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[e5f 05-31 05:22:14.86 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -[e60 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020;" signature:"0D\002 W\333\232\241\313>3\204}\205\344/=\n \317=\301\353\366n\311H\220\204\310T\266\362\207\335\207\002 U\367CMV\262?\031\231\031\327s\217\262\036@e\366\314\324%\233o\243\266\225d:\263\255\213D" > -[e61 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[e62 05-31 05:22:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e63 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[e65 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[e64 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[e66 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e67 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e68 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[e69 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e6a 05-31 05:22:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -[e6c 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 741 bytes, Signature: 0 bytes -[e6d 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[e6e 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[e6f 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e70 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e6b 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes -[e71 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[e72 05-31 05:22:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e73 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e74 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 740 bytes, Signature: 0 bytes -[e75 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e76 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 741 bytes, Signature: 0 bytes -[e77 05-31 05:22:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e78 05-31 05:22:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[e79 05-31 05:22:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e7a 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[e7b 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[e7c 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[e7d 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[e7e 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -[e7f 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -[e80 05-31 05:22:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e81 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[e82 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e83 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[e84 05-31 05:22:15.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e85 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[e86 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[e87 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e88 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[e89 05-31 05:22:15.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e8a 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[e8b 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[e8c 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[e8d 05-31 05:22:15.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e8e 05-31 05:22:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[e8f 05-31 05:22:15.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e90 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[e91 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[e92 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[e93 05-31 05:22:15.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e94 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -[e95 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[e96 05-31 05:22:15.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes -[e97 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[e98 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[e99 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[e9a 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[e9b 05-31 05:22:15.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[e9c 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[e9d 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[e9e 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[e9f 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[ea0 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[ea1 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -[ea2 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -[ea3 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ea4 05-31 05:22:15.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\006\023D~N\241I\276y\204\002 (\374\217\033\223\013o\035\006\2218\357'\205#\340\340\006\310\223\026c_R\2260%\3264\265O\316" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020<" signature:"0E\002!\000\326\233\\\007%\004\365\326\205\250\023\277\366\266\177=c\242>P\322M\205\005\305&V*\256\237\037!\002 \016\"\365z\213\257+\327\031\276I\361\301\244\242\252nB\223\001\315\346\377-\372\331<\256\334\256\222*" secret_envelope: > -[ea5 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[ea6 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[ea7 05-31 05:22:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ea8 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[ea9 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[eaa 05-31 05:22:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[eab 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[eac 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[ead 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[eae 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[eaf 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[eb0 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[eb2 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[eb3 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[eb1 05-31 05:22:15.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[eb4 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[eb5 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[eb6 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[eb7 05-31 05:22:15.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[eb8 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[eb9 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[eba 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ebb 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[ebc 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[ebd 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ebe 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[ebf 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[ec0 05-31 05:22:15.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ec1 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[ec2 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[ec3 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -[ec5 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -[ec6 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ec7 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ec4 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[ec8 05-31 05:22:15.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020=" signature:"0D\002 2\323\222XV\261\225\006 6\007\212\362Pp^\266\214\\S\005\"\246\340\3370\260LRk\233\274\002 \002\033<\350\344Q\270o\313\313,`%\024xw\272\214m\333-\037g\010\"\205t\232j\033:\364" > > , Envelope: 165 bytes, Signature: 0 bytes -[ec9 05-31 05:22:15.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[eca 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[ecb 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[ecc 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ecd 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[ece 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[ecf 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[ed0 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[ed1 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[ed2 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[ed3 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[ed4 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[ed5 05-31 05:22:15.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[ed6 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[ed7 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[ed8 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[ed9 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[eda 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[edc 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[edb 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[edd 05-31 05:22:15.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[ede 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[edf 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[ee0 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[ee1 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[ee2 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[ee3 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[ee4 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[ee5 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[ee6 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[ee7 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[ee8 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ee9 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[eea 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[eeb 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[eec 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[eed 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[eee 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[eef 05-31 05:22:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[ef0 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[ef1 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[ef2 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[ef3 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[ef4 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[ef5 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[ef6 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[ef7 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[ef8 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ef9 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[efa 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[efb 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 60 but got ts: inc_num:1527744090808810100 seq_num:58 -[efc 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[efd 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[efe 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[eff 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f00 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[f01 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f02 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[f03 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 57 but got ts: inc_num:1527744091508552400 seq_num:56 -[f04 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[f05 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f06 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[f07 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[f08 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[f09 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[f0a 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[f0b 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[f0c 05-31 05:22:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[f0d 05-31 05:22:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f0e 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f0f 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f10 05-31 05:22:15.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[f11 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f12 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f13 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f14 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[f15 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[f16 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[f17 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[f18 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[f19 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[f1a 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[f1b 05-31 05:22:15.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f1c 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[f1d 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[f1e 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f1f 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f20 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f21 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f22 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[f23 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[f24 05-31 05:22:15.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[f25 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f26 05-31 05:22:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f27 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[f28 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f29 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f2a 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f2b 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f2c 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[f2d 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f2e 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f2f 05-31 05:22:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f30 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[f31 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f32 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[f33 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f34 05-31 05:22:15.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[f35 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[f36 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[f37 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[f38 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[f39 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[f3a 05-31 05:22:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[f3b 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f3c 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[f3d 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers -[f3e 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020>" signature:"0D\002 \"\272T\265L4\227B(\240\000_\355[\246\260\221\261\376:\365\032\337WY\320\274I\222\251k_\002 P\027\313\213.\375t\021\252\000e3O\220&\242\243l\n\322\213joG\210\306K\210\343\027}J" > -[f3f 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[f40 05-31 05:22:15.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f41 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[f42 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[f43 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[f44 05-31 05:22:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[f45 05-31 05:22:15.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f46 05-31 05:22:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[f47 05-31 05:22:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[f48 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f49 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[f4b 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f4a 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f4c 05-31 05:22:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f4d 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[f4e 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[f4f 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[f50 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[f51 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[f52 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[f53 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[f54 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f55 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[f56 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f57 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[f59 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f5a 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f58 05-31 05:22:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f5b 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f5c 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f5d 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[f5e 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f5f 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f61 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f60 05-31 05:22:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f62 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[f64 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f65 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f63 05-31 05:22:16.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f66 05-31 05:22:16.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[f67 05-31 05:22:16.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[f68 05-31 05:22:16.71 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[f69 05-31 05:22:16.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f6a 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f6b 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f6c 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f6d 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[f6e 05-31 05:22:16.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f6f 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f70 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[f71 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f72 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f73 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f74 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[f75 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f76 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[f77 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f78 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f79 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f7a 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[f7b 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f7c 05-31 05:22:16.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f7d 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f7e 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f7f 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[f80 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f81 05-31 05:22:16.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[f82 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[f84 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f83 05-31 05:22:16.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f85 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f86 05-31 05:22:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[f87 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f88 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f89 05-31 05:22:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[f8a 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f8b 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f8c 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[f8d 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[f8e 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[f8f 05-31 05:22:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[f90 05-31 05:22:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[f91 05-31 05:22:16.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[f92 05-31 05:22:16.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[f93 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f94 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[f95 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[f96 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f97 05-31 05:22:16.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f98 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f99 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[f9a 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f9c 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f9d 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[f9b 05-31 05:22:16.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[f9e 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[f9f 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[fa1 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[fa2 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[fa0 05-31 05:22:16.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fa3 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[fa4 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[fa5 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[fa6 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[fa7 05-31 05:22:18.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fa8 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[fa9 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[faa 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fab 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[fac 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[fad 05-31 05:22:18.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[fae 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[faf 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[fb0 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[fb1 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[fb2 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[fb3 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[fb4 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[fb5 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[fb6 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[fb7 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[fb8 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[fb9 05-31 05:22:18.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020@" signature:"0E\002!\000\232!h\302\321\320\226J\237\350t\003d\\w\010\304d\3156\262\3120\221::m\314\213\014\235\\\002 \021\030\267}\374@\031\266\315L\001\200\022\263\220s+X)9\351\217\201\211\024\000\202'\307\027JI" > -[fba 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[fbc 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[fbb 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[fbd 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[fbe 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[fbf 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[fc0 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[fc1 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[fc2 05-31 05:22:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[fc3 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fc4 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[fc5 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fc6 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[fc7 05-31 05:22:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fc8 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[fc9 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[fca 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[fcb 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[fcc 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -[fcd 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -[fce 05-31 05:22:18.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fcf 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[fd0 05-31 05:22:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fd1 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[fd2 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[fd3 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[fd4 05-31 05:22:19.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fd5 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[fd6 05-31 05:22:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fd7 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[fd8 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[fd9 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[fda 05-31 05:22:19.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fdb 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\277-DO\273" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[fdc 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fdd 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\277-DO\273" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[fde 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[fdf 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[fe0 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[fe1 05-31 05:22:19.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[fe2 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[fe3 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[fe4 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[fe5 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[fe6 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[fe7 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[fe8 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[fe9 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\277-DO\273" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020A" signature:"0D\002 ]n\240\032^\207\257\264G\230\277V\221\\\2075=\277?\030~\206\211\013\020\303|6\204\\\3114\002 &V\353\247<\242\345:N\367\302,\017/A\311a\333\226\327+V\372\313\013\344\253\377?S7\t" secret_envelope: > -[fea 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[feb 05-31 05:22:19.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[fec 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[fed 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[fee 05-31 05:22:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[fef 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[ff0 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[ff1 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[ff2 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[ff3 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[ff4 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[ff5 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[ff6 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ff7 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[ff9 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ff8 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[ffb 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[ffa 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[ffc 05-31 05:22:19.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[ffd 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[ffe 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[fff 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1000 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1001 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1002 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1003 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1004 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1005 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[1006 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[1007 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -[1008 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[1009 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[100a 05-31 05:22:19.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -[100c 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[100b 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020B" signature:"0E\002!\000\360\202\244\242\"\227\227\323\r(a\230]\255\017 \215\311V\217\007\307\367o\306*\214`W\231\225\020\002 YC\344\2320\236>N\364C\360\237\255\361\000\205j\250]\013\222\270\203\305g\304:\027 \214c\202" > > , Envelope: 166 bytes, Signature: 0 bytes -[100d 05-31 05:22:19.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[100e 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[100f 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1010 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1011 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1012 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1013 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1014 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1016 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1017 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[1018 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1019 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1015 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[101a 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[101b 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[101c 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[101d 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[101e 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[101f 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1020 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1021 05-31 05:22:19.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1022 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1023 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1024 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1025 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1026 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[1027 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1028 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1029 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[102a 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[102b 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[102c 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[102d 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[102e 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1030 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1031 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[102f 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1032 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[1033 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1034 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1035 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1036 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1037 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1038 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1039 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[103a 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 67 but got ts: inc_num:1527744091840124700 seq_num:65 -[103b 05-31 05:22:19.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[103c 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[103d 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[103e 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[103f 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1040 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1041 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1042 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 62 but got ts: inc_num:1527744091508552400 seq_num:61 -[1043 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1044 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1045 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1046 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1047 05-31 05:22:19.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1048 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1049 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[104a 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[104b 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[104c 05-31 05:22:19.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[104d 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[104e 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[104f 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1050 05-31 05:22:19.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1051 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1052 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1053 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1054 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1055 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1056 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1057 05-31 05:22:19.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1058 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1059 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[105a 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[105b 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[105c 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[105d 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[105e 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[105f 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:" signature:"0E\002!\000\221-G\234\026\362\000`\237| nW\307\021\321\352B\316\354\026\306<\262*\200@\367@\276\031z\002 4F{P\2532\257Re@\261\314iQ\320j7O!(Dqh\217rVc0\301\270^\n" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020C" signature:"0D\002 o \023E\215\005//\327\032\021h^7\300\341\006q\003\347\010\207\212kK[\000\205\253\332\303\006\002 27\213c\360\266\275\027\330gA-\332\324\270\017(q=\325\324P\223\020}n<\013\227\306\026\244" > -[1060 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1061 05-31 05:22:19.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1062 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1063 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1064 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1065 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1066 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1067 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1068 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1069 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[106a 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[106b 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[106c 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[106d 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[106e 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[106f 05-31 05:22:20.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1070 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1071 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1073 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1072 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1074 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1075 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1076 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1077 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1078 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1079 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[107a 05-31 05:22:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[107b 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[107c 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[107d 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[107e 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[107f 05-31 05:22:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1080 05-31 05:22:20.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[1081 05-31 05:22:20.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1082 05-31 05:22:20.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[1083 05-31 05:22:20.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[1084 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1085 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1086 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1087 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1089 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[108a 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1088 05-31 05:22:21.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[108b 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[108c 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[108d 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[108e 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[108f 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1090 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1091 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1092 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1093 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1095 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1094 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1096 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1097 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1099 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1098 05-31 05:22:21.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[109a 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[109b 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[109c 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[109d 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[109e 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[109f 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10a0 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[10a1 05-31 05:22:21.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[10a2 05-31 05:22:21.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[10a3 05-31 05:22:21.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[10a4 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[10a6 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10a7 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10a5 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[10a8 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[10a9 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10aa 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10ab 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10ac 05-31 05:22:21.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10ad 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10ae 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[10af 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10b0 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10b1 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10b2 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[10b3 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[10b4 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[10b5 05-31 05:22:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[10b6 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[10b7 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[10b8 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[10b9 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[10ba 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10bb 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[10bc 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10bd 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10be 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[10bf 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[10c0 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[10c1 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10c2 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10c3 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10c4 05-31 05:22:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10c5 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10c6 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10c7 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[10c8 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10c9 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[10ca 05-31 05:22:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[10cb 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[10cc 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[10cd 05-31 05:22:22.84 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[10ce 05-31 05:22:22.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[10cf 05-31 05:22:22.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10d0 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -[10d1 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -[10d2 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10d3 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > > , Envelope: 166 bytes, Signature: 0 bytes -[10d4 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[10d5 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[10d6 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[10d7 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[10d8 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[10d9 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[10da 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[10db 05-31 05:22:22.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[10dd 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[10dc 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[10de 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[10df 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\207F\371\346\211C\314\331\023\336J\362\006\337\231\002 \024\326$\332l\333a\n\370.xu\335\314\214D\333\356\220?\366\265\220\254\363\306p\357\277\205g\316" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020E" signature:"0D\002 4\r]_\321)\370~#\275\240\\#\320C@B\205s\021\312\376\274\327\024\003\373\244=\\\364\214\002 M\236\240\315\022\360\204_\003L\0041\n,;\327+\367\3002\345\365(g\023Us\246\262C\320\177" > -[10e0 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[10e1 05-31 05:22:22.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10e2 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[10e3 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[10e4 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[10e6 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10e7 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10e5 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[10e8 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10e9 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[10ea 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[10eb 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10ec 05-31 05:22:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[10ed 05-31 05:22:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10ee 05-31 05:22:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[10ef 05-31 05:22:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10f0 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[10f1 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[10f2 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[10f3 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[10f4 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -[10f5 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -[10f6 05-31 05:22:22.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10f7 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[10f8 05-31 05:22:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10f9 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[10fa 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[10fb 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[10fc 05-31 05:22:23.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10fd 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[10fe 05-31 05:22:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[10ff 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1100 05-31 05:22:23.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1101 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1102 05-31 05:22:23.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1103 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\31385\036#\252`\311\370h\366:~" > > > , Envelope: 271 bytes, Signature: 0 bytes -[1104 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1105 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\31385\036#\252`\311\370h\366:~" > > > , Envelope: 271 bytes, Signature: 0 bytes -[1106 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1107 05-31 05:22:23.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1108 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1109 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[110a 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[110b 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[110c 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[110d 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[110e 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[110f 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1110 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[1112 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[1111 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\31385\036#\252`\311\370h\366:~" > > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020F" signature:"0D\002 5J\204\010\321\033\355\237U\252F\025\370\265\276.w&\227K\024\203\222R\373\\\372\367\212\364\325\345\002 FWf=X=\302\340J\275\377C\330\376\340e$M!\n\020\330%R)\326\213\034\323\027\370\317" secret_envelope: > -[1113 05-31 05:22:23.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1114 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1115 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1116 05-31 05:22:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1117 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[1118 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1119 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[111a 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[111b 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[111c 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[111d 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[111e 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[111f 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1120 05-31 05:22:23.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1121 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1122 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1123 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1124 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1125 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1126 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1127 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1128 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1129 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[112a 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[112b 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[112c 05-31 05:22:23.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[112d 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers -[112e 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[112f 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1130 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -[1131 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1132 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 271 bytes, Signature: 0 bytes -[1133 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1134 05-31 05:22:23.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020G" signature:"0D\002 /\326W\367Ac\037f\335\347\325\344\330H\227vj\242\302^\345\370\3403\006\206P\315\250\332\350=\002 r\355n\313iZ\3160%\357\252\313\"\244p:\007\220\350\026\211\323j\303\276\304\242_fS\276\220" > > , Envelope: 165 bytes, Signature: 0 bytes -[1135 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1136 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1137 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1138 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1139 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[113a 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[113b 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[113c 05-31 05:22:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[113d 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[113e 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[113f 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1140 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1141 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1142 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1143 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1144 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1145 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1146 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1147 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1148 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1149 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[114a 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[114b 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[114c 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[114d 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[114e 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[114f 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1150 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1151 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1152 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1153 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1154 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1155 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 72 but got ts: inc_num:1527744091840124700 seq_num:70 -[1156 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1157 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1158 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1159 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[115a 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[115b 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[115c 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[115d 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[115e 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1160 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[115f 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1161 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1162 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1163 05-31 05:22:23.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1164 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1165 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[1167 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1166 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[1168 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1169 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[116a 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[116b 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[116c 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[116d 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[116e 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[116f 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1170 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[1171 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1172 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1173 05-31 05:22:23.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1174 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1175 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1176 05-31 05:22:23.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1177 05-31 05:22:23.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1178 05-31 05:22:23.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1179 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[117a 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[117b 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[117c 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[117d 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[117e 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[117f 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1180 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1181 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1182 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1183 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1184 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[1185 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[1186 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020H" signature:"0D\002 J\314N\330X\305\356\252L\255\272\273\227!\361\215\030\220\034B\005\250^W\276)\033y\217\371\2474\002 R\217,\352\273\370\332\000\371\n\347z]>o\305m\003\220\305\201\227\002\3447\261\264\360&~\035O" > -[1187 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1188 05-31 05:22:23.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1189 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[118a 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[118b 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[118d 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[118e 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[118c 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[118f 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1190 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1191 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1192 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1193 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1194 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1195 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1196 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1197 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1198 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1199 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[119a 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[119b 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[119d 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[119e 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[119c 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[119f 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11a0 05-31 05:22:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[11a1 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11a2 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11a3 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[11a4 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[11a5 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11a6 05-31 05:22:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[11a7 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[11a8 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[11a9 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[11aa 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[11ab 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[11ac 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[11ad 05-31 05:22:25.98 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[11ae 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11af 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[11b0 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[11b1 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11b2 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11b3 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[11b4 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[11b5 05-31 05:22:26.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[11b6 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[11b7 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[11b8 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[11b9 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[11ba 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[11bb 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[11bc 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[11be 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11bd 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11bf 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[11c0 05-31 05:22:26.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[11c1 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11c2 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[11c3 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[11c4 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11c5 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[11c6 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11c7 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11c8 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[11c9 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[11ca 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11cb 05-31 05:22:26.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[11cc 05-31 05:22:26.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[11cd 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[11ce 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[11cf 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[11d1 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11d0 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11d2 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[11d4 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[11d3 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[11d5 05-31 05:22:26.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[11d6 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[11d7 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[11d8 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[11d9 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[11da 05-31 05:22:26.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[11db 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[11dc 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[11dd 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[11de 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[11df 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[11e0 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[11e1 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[11e2 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[11e3 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[11e4 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[11e5 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[11e6 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[11e7 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[11e8 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[11e9 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[11eb 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[11ec 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[11ea 05-31 05:22:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020J" signature:"0E\002!\000\321\033~(\227\316\210\326\000Hy\177\240\372\211\273\035\037\303\035\337\177g\360J\252:\320\271\315\240\\\002 \013T5\234\322\007\000d\210\241\216\037\347\026,\225\327i1\316\336\300\237>\322\377\356\031/\211\321\327" > -[11ed 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[11ee 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[11ef 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[11f0 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[11f1 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[11f2 05-31 05:22:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[11f3 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[11f4 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[11f5 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[11f6 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[11f7 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[11f8 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[11f9 05-31 05:22:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[11fa 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[11fb 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[11fc 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[11fd 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[11fe 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[11ff 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[1200 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1201 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1202 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1203 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1204 05-31 05:22:26.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1205 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1206 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1207 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1208 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1209 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[120a 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[120b 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[120c 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[120d 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[120e 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[120f 05-31 05:22:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1210 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[1211 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[1212 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1213 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[1214 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[1215 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1216 05-31 05:22:26.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1217 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -[1218 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -[1219 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[121a 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[121b 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[121c 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[121d 05-31 05:22:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[121e 05-31 05:22:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[121f 05-31 05:22:26.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1220 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1221 05-31 05:22:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1222 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1223 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1224 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 1] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1225 05-31 05:22:27.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1226 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1227 05-31 05:22:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1228 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1229 05-31 05:22:27.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[122a 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[122b 05-31 05:22:27.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[122c 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[122d 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[122e 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[122f 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1230 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1231 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1232 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1233 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1234 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1235 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1236 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1237 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1238 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1239 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[123a 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[123b 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[123c 05-31 05:22:27.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\272\340\000\032\206\273\3745!'\321\240\027\201\031\020\211F\263\372O\000\002 \021\367(0\036\223\262\226\227\270C\020B\275\246\203\252'\276lN\235\271\237\264\016\252\204P\247\211z" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020K" signature:"0E\002!\000\306.\010\375o\"\211sK9\270\237\273\274\213v_\203\365Q\r\025\314\327\234\2221k(d\361e\002 \006n\341K\365\223_;-O\217g\355\325i\247\277\310\331\007\"\035\376Bh6\363\035\336ZE\024" secret_envelope: > -[123d 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[123e 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[123f 05-31 05:22:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1240 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[1241 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1242 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1243 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1245 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[1246 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1244 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1247 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1248 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[124a 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1249 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[124b 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[124c 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[124d 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[124e 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[124f 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1250 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1251 05-31 05:22:27.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1252 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1253 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1254 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1255 05-31 05:22:27.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1256 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1257 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1259 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[125a 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -[1258 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -[125b 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[125c 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[125d 05-31 05:22:27.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020L" signature:"0D\002 \\t6\003\263\223\3009\312\007_]\024\375\231)O\304\201\300\353\332\260\304\346\371\370-\332,XO\002 %\206\035\320\341w;\324 \340\302\352=%-2J%\377\276M*\323.\275\244\341j\273\203\354\310" > > , Envelope: 165 bytes, Signature: 0 bytes -[125f 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[125e 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1260 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1261 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1262 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1263 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1264 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1265 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1266 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1267 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1268 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1269 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[126a 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[126b 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[126c 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[126d 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[126e 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[126f 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1270 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1271 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1272 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1273 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1274 05-31 05:22:27.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1275 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[1276 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1277 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[1278 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1279 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[127a 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[127b 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[127c 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[127d 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[127e 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[127f 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1280 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1281 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[1282 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1283 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1284 05-31 05:22:27.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1285 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1286 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1288 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1289 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[128a 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[128b 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[128c 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[128d 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[128e 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[128f 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 72 but got ts: inc_num:1527744091508552400 seq_num:71 -[1290 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1291 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1292 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1293 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 77 but got ts: inc_num:1527744091840124700 seq_num:75 -[1294 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1295 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1296 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1297 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1298 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1299 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[129a 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[129b 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[129c 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[129d 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1287 05-31 05:22:27.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[129e 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[129f 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[12a0 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[12a1 05-31 05:22:27.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12a2 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[12a3 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12a4 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[12a5 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[12a6 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[12a7 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[12a8 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[12a9 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[12aa 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[12ab 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[12ac 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[12ad 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[12ae 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[12af 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[12b0 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020M" signature:"0D\002 y\261\345\036\332.\274\367\334\027\332u\322N\021\354#\320\370\234(\305\035\300\375\371\253l\322\\r\373\002 \033Y)\276i\023iX`\240N\271,\203\224b\2354\231xV\026f\365y\224\320\225\037\017){" > -[12b1 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[12b2 05-31 05:22:27.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[12b3 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[12b4 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[12b5 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[12b6 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[12b7 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[12b8 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[12b9 05-31 05:22:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[12ba 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[12bb 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[12bc 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[12bd 05-31 05:22:30.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[12be 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12bf 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[12c0 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12c1 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[12c2 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12c3 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -[12c4 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes -[12c5 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12c6 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[12c7 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12c8 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[12c9 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12ca 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[12cb 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[12cc 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[12cd 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12ce 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12cf 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12d0 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[12d1 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[12d2 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[12d3 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[12d4 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[12d5 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[12d6 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[12d7 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[12d8 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[12d9 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[12da 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[12db 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[12dc 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12dd 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[12de 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[12df 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[12e0 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12e1 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[12e2 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12e3 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12e4 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[12e5 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[12e6 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[12e7 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12e8 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[12e9 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12ea 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[12eb 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[12ec 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020N" signature:"0E\002!\000\266#\300\303\334\272\353\257\007.\266\273\007\273\262\325h\211O\324\022mN\276c&,\354fz\n\211\002 ]n\301\363b\272\023\304\222\355\317\224\036\305j\240\310\337\267\260\321\251%\350\350\324._F\271\027\266" > -[12ed 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[12ee 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[12ef 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[12f0 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[12f1 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12f2 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[12f3 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12f4 05-31 05:22:31.43 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[12f5 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[12f6 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[12f7 05-31 05:22:31.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12f8 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[12f9 05-31 05:22:31.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12fa 05-31 05:22:31.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[12fb 05-31 05:22:31.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12fc 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[12fd 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[12fe 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[12ff 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1300 05-31 05:22:31.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1301 05-31 05:22:31.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1302 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1303 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1304 05-31 05:22:31.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1305 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1306 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1307 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1308 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1309 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[130a 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[130b 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[130c 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[130d 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[130e 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[130f 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1310 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1311 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1312 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1313 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1314 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1315 05-31 05:22:31.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1316 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1317 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1318 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" secret_envelope:\230\306\026\311\322!\355\353k\211\363\234\340\260\235\306\251\322\310\222\313\002 \027}\203&\345\tgap\312\340\207\264\000\321Z\265O\010[\201\215\037@s\354q#\222\373-`" > > > , Envelope: 271 bytes, Signature: 0 bytes -[1319 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[131a 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" secret_envelope:\230\306\026\311\322!\355\353k\211\363\234\340\260\235\306\251\322\310\222\313\002 \027}\203&\345\tgap\312\340\207\264\000\321Z\265O\010[\201\215\037@s\354q#\222\373-`" > > > , Envelope: 271 bytes, Signature: 0 bytes -[131b 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[131c 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[131d 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[131e 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[131f 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1320 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1321 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1322 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1323 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1324 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1325 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1326 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1327 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1328 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1329 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[132a 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[132b 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -[132c 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:k\002 \"\266\367%I:\344\031\303)\327\363\215\234*3\320*9\232Sv\303\237M\355\260L\234\372\303\227" secret_envelope:\230\306\026\311\322!\355\353k\211\363\234\340\260\235\306\251\322\310\222\313\002 \027}\203&\345\tgap\312\340\207\264\000\321Z\265O\010[\201\215\037@s\354q#\222\373-`" > > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020O" signature:"0D\002 \016b\365c+\214D\225\266\016\241\373\006\212\222\211<\025x\303hN\031\230vT\007\204\002\245Ts\002 \014\207n,\023\350>\244\216^\375\342\206\025\243U\272\355*\222U\323\007\303\310\272\271\317;\003\360O" secret_envelope: > -[132d 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -[132e 05-31 05:22:31.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[132f 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1330 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1331 05-31 05:22:31.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1332 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[1333 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1334 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1335 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1336 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1338 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1337 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[1339 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[133a 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[133b 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[133c 05-31 05:22:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[133d 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[133e 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[133f 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1340 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1341 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1343 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1342 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1344 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1345 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1346 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1347 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1348 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1349 05-31 05:22:31.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[134a 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[134b 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[134c 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[134d 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[134e 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[134f 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1350 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -[1351 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1353 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -[1352 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020P" signature:"0D\002 \006\001\311Fy?s5W\226\236FW\002\315\030\356\177\026\351 \313\244B\277@\327.\005\367G\352\002 ,!\365Yu\036\315\370\373 > , Envelope: 165 bytes, Signature: 0 bytes -[1354 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1355 05-31 05:22:31.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1356 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1357 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1358 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1359 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[135a 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[135b 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[135c 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[135d 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[135e 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[135f 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1360 05-31 05:22:31.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1361 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1362 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1363 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1364 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1365 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1366 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1367 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1368 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1369 05-31 05:22:31.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[136a 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[136b 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[136c 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[136e 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[136d 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[136f 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1370 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1371 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1372 05-31 05:22:31.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1373 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1374 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1375 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1376 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1377 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1378 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1379 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 81 but got ts: inc_num:1527744091840124700 seq_num:79 -[137a 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[137b 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[137c 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[137d 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[137e 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[137f 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1380 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1381 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1382 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1383 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1384 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1385 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1386 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1387 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1388 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1389 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[138a 05-31 05:22:31.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[138b 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[138c 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[138d 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[138e 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[138f 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1390 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1391 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1392 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1393 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1394 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1395 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1396 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1397 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[1398 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1399 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[139a 05-31 05:22:31.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[139b 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[139c 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[139d 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[139e 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[139f 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[13a0 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[13a1 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[13a2 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[13a3 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[13a4 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[13a5 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[13a6 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[13a7 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[13a8 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[13a9 05-31 05:22:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[13ab 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[13ac 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[13aa 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[13ad 05-31 05:22:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[13ae 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[13af 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[13b0 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13b1 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[13b2 05-31 05:22:31.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[13b3 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[13b4 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[13b5 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[13b6 05-31 05:22:31.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13b7 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[13b8 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13b9 05-31 05:22:31.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[13ba 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[13bb 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[13bc 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[13bd 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[13be 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[13bf 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[13c0 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[13c1 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[13c2 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[13c3 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[13c4 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[13c5 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020R" signature:"0D\002 #\347|\337\221\221\006\262\"U\001\017\"4\0249%\316\355!\352\304\316\257%\325\313`y5\253\322\002 &\27453cQ\373\273 -[13c6 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[13c7 05-31 05:22:31.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[13c8 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[13c9 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[13ca 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[13cb 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[13cc 05-31 05:22:34.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13cd 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[13ce 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[13cf 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13d0 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[13d1 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[13d2 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[13d3 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[13d4 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[13d5 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[13d6 05-31 05:22:34.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[13d7 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[13d8 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[13da 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[13db 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[13dc 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020S" signature:"0D\002 sl\366\014h4\372\022\222\365?\357\357>\343\334\237`\326_\351\206\034\200\007'\200\243`\340\200\325\002 ~\301\270\325\211\nW9QZ\014r4\216\366\376\205P\222\005\207L\177\255L\307\354s\277\363?\014" > -[13dd 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[13de 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[13d9 05-31 05:22:34.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[13df 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[13e0 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[13e1 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[13e2 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[13e3 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[13e4 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[13e5 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[13e6 05-31 05:22:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13e7 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[13e8 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13e9 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[13ea 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[13eb 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 768 bytes, Signature: 0 bytes -[13ec 05-31 05:22:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13ed 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[13ee 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[13ef 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[13f0 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[13f1 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -[13f2 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes -[13f3 05-31 05:22:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13f4 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[13f5 05-31 05:22:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13f6 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[13f7 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[13f8 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[13f9 05-31 05:22:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13fa 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[13fb 05-31 05:22:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13fc 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[13fd 05-31 05:22:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[13fe 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[13ff 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1400 05-31 05:22:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1401 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1402 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1403 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1404 05-31 05:22:35.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1405 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\t\342\361'" > > > , Envelope: 270 bytes, Signature: 0 bytes -[1406 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1407 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\t\342\361'" > > > , Envelope: 270 bytes, Signature: 0 bytes -[1408 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1409 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[140a 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[140b 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[140c 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[140d 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[140e 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[140f 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1410 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1411 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers -[1412 05-31 05:22:35.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\t\342\361'" > > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020T" signature:"0D\002 z\221\3464\345\200\277\030;PC\373\363Fz\237\266\356K\232\367\037\314\323\246\217\252-\307X\254@\002 i*s\250\360\223\213\346\344\301\322Q\202\375\201[\021\310\210\341\367k\036\261\272\035\276o\230\227s\276" secret_envelope: > -[1413 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes -[1414 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1415 05-31 05:22:35.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1416 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1417 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1418 05-31 05:22:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1419 05-31 05:22:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[141a 05-31 05:22:35.67 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[141b 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[141c 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[141d 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[141e 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[141f 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1420 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1421 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1422 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1424 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1423 05-31 05:22:35.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1426 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1425 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1427 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1428 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1429 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[142a 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[142b 05-31 05:22:35.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[142c 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[142d 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[142e 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[142f 05-31 05:22:35.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -[1430 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1431 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1432 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1433 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1434 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -[1435 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1436 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020U" signature:"0D\002 pJ\2224\261\314#\017\277\301\257\363\300\013\377\r\017\262\016\274\227\276\206\320\232\227<\312\344P\202\242\002 d\204bVBEBq\213\230\312\362\204\332\204&\032o\214\004\270\245\352\265#x\334\270\240F\377G" > > , Envelope: 165 bytes, Signature: 0 bytes -[1437 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1438 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1439 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[143a 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[143c 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[143d 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[143b 05-31 05:22:35.71 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[143e 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[143f 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1440 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1441 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1442 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1443 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1444 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1445 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1446 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1447 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1448 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1449 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[144a 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[144b 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[144c 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[144d 05-31 05:22:35.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[144e 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[144f 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1450 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1451 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1452 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1453 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1454 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1456 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1457 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[1455 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1458 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1459 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[145a 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 84 but got ts: inc_num:1527744090808810100 seq_num:82 -[145b 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[145c 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[145d 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[145e 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[145f 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1460 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1461 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1462 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1463 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1464 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1465 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1466 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1467 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1468 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1469 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[146a 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[146b 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[146c 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[146d 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[146e 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[146f 05-31 05:22:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1470 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1471 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1472 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[1473 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1474 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[1475 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1476 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1477 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[1478 05-31 05:22:35.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1479 05-31 05:22:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[147a 05-31 05:22:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[147b 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[147c 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[147d 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[147e 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[147f 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1480 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1481 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1482 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1483 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1484 05-31 05:22:35.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1485 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1486 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1487 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1488 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1489 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[148a 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[148c 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[148b 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[148d 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[148e 05-31 05:22:35.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[148f 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1490 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1491 05-31 05:22:35.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1492 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1493 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1494 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1495 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1496 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1497 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1498 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1499 05-31 05:22:35.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[149a 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[149b 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[149c 05-31 05:22:35.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[149d 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[149e 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[149f 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[14a0 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[14a1 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[14a2 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[14a3 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[14a4 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[14a5 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[14a6 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[14a7 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[14a8 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[14a9 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[14aa 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[14ac 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[14ab 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\363\347}\202;\013\212\036\036\223\035\260" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020V" signature:"0D\002 G\332zY&u\255D9\204\016\336\004z\177o<\214q\261\241c\377\017R\253A6\006^\255\206\002 ?\353\222\331(\020\250\303\365\361G{I\206\2019\306\257\333]\247y\377\314VmU\372\256~\335\203" > -[14ad 05-31 05:22:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[14ae 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[14af 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[14b0 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[14b1 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[14b2 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[14b3 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[14b4 05-31 05:22:35.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[14b5 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5334 bytes, seq: 4}, Envelope: 5364 bytes, Signature: 0 bytes -[14b6 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[14b7 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[14b8 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[14b9 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc424237c00 env 0xc42421d470 txn 0 -[14ba 05-31 05:22:36.12 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42421d470 -[14bb 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -[14bc 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[14bd 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -[14be 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -[14bf 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -[14c0 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -[14c1 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc424296a80, header channel_header:"\010\003\032\n\010\202\215\276\330\005\020\274\277@\"\017businesschannel*@0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\r\324\245N\213\214\265\265\362\255\325($\005n\271l\355\313\222\352\253\317\343" -[14c2 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[14c3 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[14c4 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[14c5 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -[14c6 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] -[14c7 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[14c8 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc424290880 -[14c9 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin -[14ca 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[14cb 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC -[14cc 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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}} -[14cd 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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}} -[14ce 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 -[14cf 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc -[14d0 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [d7f12392-fe0e-4cf3-a0b4-02904f0cb760] -[14d1 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[14d2 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [d7f12392-fe0e-4cf3-a0b4-02904f0cb760] -[14d3 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 -[14d4 05-31 05:22:36.13 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated -[14d5 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated -[14d6 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c appears to be invalid: Chaincode exp02 is already instantiated -[14d7 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc424290880 -[14d8 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c returned error: Chaincode exp02 is already instantiated -[14da 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 -[14db 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[14dc 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] -[14dd 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[14de 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] -[14df 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[14e0 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] -[14e1 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[14e2 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[14e3 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[14e4 05-31 05:22:36.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage -[14d9 05-31 05:22:36.14 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc424237c00 env 0xc42421d470 txn 0 -[14e5 05-31 05:22:36.16 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] -[14e6 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0x9a, 0x51, 0x32, 0x74, 0x5b, 0x5e, 0xdc, 0xf4, 0xd1, 0x99, 0x68, 0x77, 0x79, 0x27, 0x0, 0xa0, 0x37, 0xef, 0x47, 0xcb, 0x4b, 0xc5, 0x8c, 0x46, 0x68, 0xc7, 0x45, 0x86, 0x87, 0xb6, 0xda, 0x34} txOffsets= -txId=0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c locPointer=offset=70, bytesLength=3458 +[dc7 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to index +[dc8 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=40168, bytesLength=3459] for tx number:[0] ID: [bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac] to blockNumTranNum index +[dc9 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[45423], isChainEmpty=[false], lastBlockNumber=[3] +[dca 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [3] +[dcb 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [3] +[dcc 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [3] with 1 transaction(s) +[dcd 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to state database +[dce 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[dcf 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +[dd0 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[dd1 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[dd2 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[dd3 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[lsccexp02] key(bytes)=[[]byte{0x6c, 0x73, 0x63, 0x63, 0x0, 0x65, 0x78, 0x70, 0x30, 0x32}] +[dd4 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[dd5 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.NewQuery.1.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [ae1bdbfd-4b13-4530-a0dc-e5c789b4fa8a] +[dd6 06-12 02:14:50.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [4] +[dd7 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x4, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] +[dd8 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [4] +[dd9 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions -> DEBU Chaincode {exp02 1.0 [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48]} 's version is 1.0 and Id is [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] +[dda 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[ddb 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes -> DEBU Returning [{exp02 1.0 [18 12 18 10 8 1 18 2 8 0 18 2 8 1 26 11 18 9 10 7 79 114 103 49 77 83 80 26 11 18 9 10 7 79 114 103 50 77 83 80] [8 202 103 92 57 168 186 226 99 24 71 165 33 252 146 225 41 105 254 18 43 212 169 223 10 112 124 241 5 158 135 48] []}] +[ddc 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] processPendingUpdate.queryChaincodeDefinitions.DeployedChaincodes.Done -> DEBU Done with transaction simulation / query execution [ae1bdbfd-4b13-4530-a0dc-e5c789b4fa8a] +[ddd 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate -> DEBU Updating channel businesschannel with [name:"exp02" version:"1.0" ] +[dde 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/cclifecycle] processPendingUpdate.fireChangeListeners -> DEBU Listeners for channel businesschannel invoked +[ddf 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [3] transactions to history database +[de0 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [3] with [1] transactions +[de1 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [3] +[de2 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[de3 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [3] contains transaction id: bec9b07b1b0663319c7bce3dae9d88a26ef6e69b2a87666a779a08ddb52691ac +[de4 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[de5 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[de6 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[de7 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[de8 06-12 02:14:50.73 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[de9 06-12 02:14:50.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[dea 06-12 02:14:50.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[deb 06-12 02:14:50.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[dec 06-12 02:14:50.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[ded 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[dee 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[def 06-12 02:14:51.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[df0 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[df1 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[df2 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[df3 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[df4 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[df5 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[df6 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[df7 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[df8 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[df9 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[dfa 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[dfb 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[dfc 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[dfd 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[dfe 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[dff 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e00 06-12 02:14:51.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e01 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[e02 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[e03 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[e04 06-12 02:14:51.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[e05 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e06 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e07 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e08 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[e09 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e0a 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e0b 06-12 02:14:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[e0c 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e0d 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[e0e 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e0f 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e10 06-12 02:14:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[e11 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[e12 06-12 02:14:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[e14 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[e15 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e16 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[e17 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[e18 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[e19 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[e1a 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[e1b 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[e1c 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e1d 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[e13 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e1e 06-12 02:14:51.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[e1f 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[e21 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[e22 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e20 06-12 02:14:51.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0203" signature:"0E\002!\000\343\311O$\035+\343e\232L\305\013\316\361\363\333*\2158\376\326\333\215\312\273\026\r\246$\374\334\\\002 \030\217*\340\023N\374[NJ\264\220d,\264J\3354\211\2427\020\247%a\354l\236L\271P\327" > +[e23 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[e24 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[e26 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e25 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[e28 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e27 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[e2a 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[e2b 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[e2c 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[e2d 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[e2e 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[e2f 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[e30 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[e29 06-12 02:14:52.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e31 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e32 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e34 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[e33 06-12 02:14:52.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e36 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[e35 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e38 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e37 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[e39 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[e3a 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[e3c 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e3b 06-12 02:14:52.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e3d 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[e3e 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e3f 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[e40 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[e41 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[e42 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes +[e43 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e44 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e45 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e46 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e47 06-12 02:14:52.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[e48 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e49 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e4a 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[e4b 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[e4c 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[e4d 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e4e 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[e4f 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[e50 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[e51 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e52 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 271 bytes, Signature: 0 bytes +[e53 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e54 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[e55 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[e56 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e57 06-12 02:14:52.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e58 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0205" signature:"0E\002!\000\311\211\177D\230\272\004N\n\t\177\311\317fDDWw\332\206\247\257\327\350\207&\317\316\0149)\375\002 wbz\326\256\224\375\260P\342\004\035\027\227\366\343\230\3254\370.\3566N\352\030LV\252\247,\327" > > , Envelope: 166 bytes, Signature: 0 bytes +[e59 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e5b 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e5a 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e5c 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[e5d 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[e5e 06-12 02:14:52.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e5f 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[e60 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e61 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[e63 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[e62 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[e64 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e65 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e66 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[e67 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e68 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e69 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[e6a 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e6b 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e6c 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e6e 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[e6f 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[e70 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e71 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[e72 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e73 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[e74 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e6d 06-12 02:14:52.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[e75 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[e76 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[e77 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[e78 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[e79 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[e7b 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[e7c 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e7a 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 741 bytes, Signature: 0 bytes +[e7d 06-12 02:14:52.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[e7e 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[e7f 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[e80 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[e81 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e82 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[e83 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +[e84 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 56 but got ts: inc_num:1528769652429776900 seq_num:55 +[e86 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e85 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[e88 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e87 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[e89 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[e8a 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[e8b 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[e8d 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[e8e 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e8f 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[e90 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e8c 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[e91 06-12 02:14:52.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[e92 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[e93 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e94 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e95 06-12 02:14:52.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[e96 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[e97 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[e98 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[e99 06-12 02:14:52.20 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[e9a 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[e9c 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[e9b 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[e9d 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[e9e 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ea0 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[e9f 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[ea1 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[ea2 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[ea3 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[ea4 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[ea5 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[ea7 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[ea6 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[ea8 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[ea9 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[eaa 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[eab 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[ead 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[eac 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[eae 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[eaf 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[eb0 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[eb1 06-12 02:14:52.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[eb2 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[eb3 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 726 bytes, Signature: 0 bytes +[eb4 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[eb5 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[eb6 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 740 bytes, Signature: 0 bytes +[eb7 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[eb8 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[eb9 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[eba 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[ebb 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[ebc 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[ebd 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ebe 06-12 02:14:52.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 741 bytes, Signature: 0 bytes +[ebf 06-12 02:14:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ec0 06-12 02:14:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +[ec1 06-12 02:14:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +[ec2 06-12 02:14:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ec3 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: nonce:6812725869896769966 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes +[ec4 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ec5 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:6812725869896769966 tag:EMPTY mem_req: > > , Envelope: 1089 bytes, Signature: 0 bytes +[ec6 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[ec7 06-12 02:14:52.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[ec8 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 6812725869896769966, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 546 bytes, Signature: 0 bytes to 1 peers +[eca 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 6812725869896769966, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 546 bytes, Signature: 0 bytes +[ec9 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0206" signature:"0D\002 \002%\240\330\335\261Uo)\372\244\374B\022\327:\214b[\213PO\252\023\254\315\345\276o$\225\215\002 \032\364f\300\030\3768\225N\0132b\023\303\235tH\372)\306\376\211\177\035\260\301\370\372\210\253z\007" secret_envelope: > +[ecb 06-12 02:14:52.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[ecc 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[ecd 06-12 02:14:52.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ece 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[ecf 06-12 02:14:52.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ed0 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[ed1 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[ed2 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ed3 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[ed4 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[ed5 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ed6 06-12 02:14:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[ed7 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[ed8 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[ed9 06-12 02:14:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[eda 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[edb 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[edc 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[edd 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ede 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[edf 06-12 02:14:52.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ee0 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[ee1 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[ee2 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[ee3 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[ee4 06-12 02:14:52.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[ee5 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[ee6 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[ee7 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[ee8 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ee9 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[eea 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[eeb 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[eec 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[eed 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[eef 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[eee 06-12 02:14:52.47 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ef1 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[ef0 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ef2 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ef3 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ef4 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[ef5 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[ef6 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ef7 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[ef8 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[ef9 06-12 02:14:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[efa 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[efc 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[efd 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[efe 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[efb 06-12 02:14:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[eff 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f01 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f00 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[f02 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[f03 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[f04 06-12 02:14:52.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[f05 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[f06 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[f07 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[f08 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[f09 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[f0a 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f0b 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[f0c 06-12 02:14:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[f0d 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0207" signature:"0D\002 f>\2665\262\311\362\032\323wd<\177!\241\221\343+E;rE\355'\230\023\272\026\003\257\\=\002 Nz\274?\303\375\023\342\320_\205\034\320\036\226\267?6\003\007\005\200\274jF\340\001\023q]N\001" > +[f0e 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[f0f 06-12 02:14:52.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f10 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[f11 06-12 02:14:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[f12 06-12 02:14:52.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f13 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[f14 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[f15 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f16 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[f17 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[f18 06-12 02:14:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f19 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes +[f1a 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes +[f1b 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f1c 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:8871544096824663435 tag:EMPTY mem_req:R\3111Z>F" > > , Envelope: 175 bytes, Signature: 0 bytes +[f1d 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f1e 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[f1f 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 8871544096824663435, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes to 1 peers +[f20 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0208" signature:"0E\002!\000\244xZ+\001\223\214\251\022\355\177\215y%Wa\376\372N\036.\031\252\337\301\203Y\024\037\270\274I\002 k\240\2751\224\273-\200\016\2261\201hf\324\2007\302\r\303[<\221N\245\210\257\326`\335\232\276" > +[f21 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 8871544096824663435, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 658 bytes, Signature: 0 bytes +[f22 06-12 02:14:52.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f23 06-12 02:14:52.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +[f24 06-12 02:14:52.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +[f25 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f26 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:10783280152773448649 tag:EMPTY mem_req: > , Envelope: 176 bytes, Signature: 0 bytes +[f27 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f28 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[f29 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 10783280152773448649, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 659 bytes, Signature: 0 bytes to 1 peers +[f2a 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\0209" signature:"0E\002!\000\215\252yb;8\306Ua\353P\343\347\356\327\2540\303D\022\303\014I\370AQ\254v\241\341\360\221\002 b\253I\262\225\304\265\007*#\201\301\210N\232\201\222\017<~b\221\264\265\315\206\340\326\324y*\226" > +[f2b 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 10783280152773448649, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 659 bytes, Signature: 0 bytes +[f2c 06-12 02:14:52.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f2d 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f2e 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[f30 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f31 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f32 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[f2f 06-12 02:14:53.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f33 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[f34 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[f36 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[f35 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[f38 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[f39 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[f3a 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f37 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[f3b 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[f3c 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[f3d 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f3e 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f3f 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f40 06-12 02:14:53.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[f41 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f42 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f43 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f44 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[f45 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[f46 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f47 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f48 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f49 06-12 02:14:53.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f4a 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f4b 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f4c 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[f4d 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f4e 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f4f 06-12 02:14:53.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f50 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +[f51 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f52 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes +[f53 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[f54 06-12 02:14:53.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[f55 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[f56 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[f57 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[f58 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[f59 06-12 02:14:53.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[f5a 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[f5b 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f5c 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[f5d 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes to 1 peers +[f5e 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020:" signature:"0E\002!\000\327\314f\267\331\220\303jh\276\343\235n\023\001\204\013w\025\316\252\204\346(\250\326b\036\274\320\244w\002 `\346\372\242\217\211\371u\324u\n0X5*\211T\363\010`\376%Re\300\372>\215\245W\262\n" secret_envelope: > +[f5f 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[f60 06-12 02:14:53.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f61 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[f62 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[f63 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[f64 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[f65 06-12 02:14:55.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f66 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[f67 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[f68 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f69 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[f6a 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[f6b 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[f6c 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[f6d 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[f6e 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[f6f 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[f70 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[f71 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[f72 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[f73 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[f74 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[f75 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\033\256\037\212[km\212ph\304\030\002 y\007w-\306\235\307)#\r\250f\324\205\264cC\274\266\n\247\330\370/\221\356\216\025<@\301r" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020;" signature:"0D\002 X\"\305\360mB\2055\362\201\363\2401\033\305\260\366\357]\242R\016\232K%N\372\034K\027\253$\002 \037$X\r\222\256%\276}EL\004X6a\255\235\200\000\352\260bX\235\014\377\224d\341\247\226\n" > +[f76 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[f77 06-12 02:14:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f78 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[f79 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[f7a 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[f7c 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[f7d 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[f7f 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[f80 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[f7b 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[f81 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f7e 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[f84 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f82 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[f85 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[f86 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f83 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f87 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[f88 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[f89 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[f8a 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f8b 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[f8c 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[f8d 06-12 02:14:56.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[f8e 06-12 02:14:56.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f8f 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[f90 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[f91 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[f92 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +[f94 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f95 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +[f93 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020<" signature:"0D\002 5\000\216\224M\372\212qaN\210#l\\\363D;r\000m\023\343\326]\213\230\245\207\234m\210?\002 -\376\354\026n\371w\242?G\277T9 \001H\037\277*\233R\262\245\231S\177~\330~\032\221\202" > > , Envelope: 165 bytes, Signature: 0 bytes +[f96 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f97 06-12 02:14:56.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[f98 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[f99 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[f9a 06-12 02:14:56.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[f9b 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[f9c 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[f9d 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[f9e 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[f9f 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[fa0 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[fa1 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fa2 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[fa3 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[fa4 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[fa5 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[fa6 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[fa7 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[fa8 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[fa9 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[faa 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[fab 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[fac 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[fad 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[fae 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[faf 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[fb0 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[fb1 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[fb2 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[fb3 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[fb4 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[fb5 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fb6 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[fb7 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[fb8 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 59 but got ts: inc_num:1528769653227426900 seq_num:58 +[fb9 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fba 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[fbb 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[fbc 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[fbd 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fbe 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[fbf 06-12 02:14:56.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[fc0 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[fc1 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[fc2 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[fc3 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[fc4 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[fc5 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fc6 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[fc7 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[fc8 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[fc9 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[fca 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[fcb 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 60 but got ts: inc_num:1528769651824440500 seq_num:59 +[fcc 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fcd 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[fce 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[fcf 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[fd0 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fd1 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[fd2 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[fd3 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 59 but got ts: inc_num:1528769653227426900 seq_num:57 +[fd4 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fd5 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[fd6 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[fd7 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[fd8 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[fd9 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[fda 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[fdb 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[fdc 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[fdd 06-12 02:14:56.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[fde 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[fdf 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[fe0 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[fe1 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[fe2 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[fe3 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[fe4 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[fe5 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[fe6 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[fe7 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[fe8 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[fe9 06-12 02:14:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[fea 06-12 02:14:56.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[feb 06-12 02:14:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[fec 06-12 02:14:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[fed 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[fee 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[fef 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[ff0 06-12 02:14:56.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[ff1 06-12 02:14:56.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +[ff2 06-12 02:14:56.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +[ff3 06-12 02:14:56.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ff4 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[ff5 06-12 02:14:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ff6 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[ff7 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[ff8 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[ff9 06-12 02:14:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[ffa 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ffb 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ffc 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[ffd 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[ffe 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[fff 06-12 02:14:56.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +[1000 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +[1001 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1002 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > > , Envelope: 165 bytes, Signature: 0 bytes +[1003 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1004 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1005 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1006 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1007 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1008 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1009 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[100a 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[100b 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[100c 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[100d 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[100e 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:" signature:"0D\002 ?\017\234\020\000\234\307\255H\214%f\210\266\263\300M\223\234\3432\305\273\346\002XzB\332\255\363\021\002 1\272\363\375\210X\217\014\343\026\332\366\241\2308\334\253\224]\301G\224W\354\247\240[\272\200\276\277\304" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020=" signature:"0D\002 L\366a\305\365\231[\342t\221\\\212\204\272\005U\324.\ts v,\362,4\347\022\306q\016\263\002 5\376\003\204Y\217j\202\242LR(\260a\2052\315\332J9\206\275,\325\n\255\242\247\002\212\270\220" > +[100f 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1010 06-12 02:14:56.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1011 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1012 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1013 06-12 02:14:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1014 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1015 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1016 06-12 02:14:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1017 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1018 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1019 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[101a 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[101b 06-12 02:14:56.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[101c 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[101d 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[101e 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[101f 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1020 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1021 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1022 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1023 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1024 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1025 06-12 02:14:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1026 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1027 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1028 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1029 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[102a 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[102b 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[102c 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[102d 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[102e 06-12 02:14:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[102f 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1030 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1031 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1032 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1033 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1034 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1035 06-12 02:14:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1036 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[1037 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1038 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1039 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[103a 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[103b 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[103c 06-12 02:14:57.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[103d 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[103e 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[103f 06-12 02:14:57.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1040 06-12 02:14:57.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[1041 06-12 02:14:57.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[1042 06-12 02:14:57.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[1043 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[1044 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[1045 06-12 02:14:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1046 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1047 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1048 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1049 06-12 02:14:57.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[104a 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[104b 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[104c 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[104d 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[104e 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[104f 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1050 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1051 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1052 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1053 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1054 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1055 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1056 06-12 02:14:57.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[1057 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +[1059 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[105a 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1058 06-12 02:14:57.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020?" signature:"0D\002 \"\003\036V\n\373\252\246\267X\205E_\217\254\003\360\351\006\036N\260\007\201\215\202L\261\235\346j\201\002 \013)\351\034\372\014\t?\357\313\355\336\246\255\336\235!\031\315\2744\3138\316\314K\325Le\022\002\317" secret_envelope: > +[105b 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[105c 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[105d 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[105e 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[105f 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1060 06-12 02:14:57.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1061 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1062 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1063 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1064 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1065 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1066 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1067 06-12 02:14:57.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1068 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1069 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[106a 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[106c 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[106b 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[106d 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[106e 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[106f 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1070 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1071 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1072 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1073 06-12 02:14:57.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1074 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1075 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1077 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1078 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1076 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1079 06-12 02:14:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[107a 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[107b 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[107c 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[107d 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[107e 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[107f 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1080 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1081 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1082 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1083 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1084 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1085 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1086 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1087 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1088 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1089 06-12 02:14:58.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[108a 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[108b 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[108c 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[108d 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[108e 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1090 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[108f 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1091 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1092 06-12 02:14:58.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1093 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1094 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1095 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1096 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1097 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1098 06-12 02:14:58.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1099 06-12 02:14:59.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[109a 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[109b 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[109c 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[109d 06-12 02:14:59.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[109e 06-12 02:14:59.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[109f 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[10a0 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[10a1 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[10a2 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[10a3 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[10a4 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[10a5 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[10a6 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[10a7 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[10a8 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[10a9 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[10aa 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[10ab 06-12 02:14:59.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[10ac 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[10ae 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[10af 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[10ad 06-12 02:14:59.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:" signature:"0E\002!\000\301o\352\300'\002\356\357\266\352 \264z35?1H\026\205s\014T*,\341ky\346a\001\\\002 +\335\333\204>\003\233-\314\354\276\317\307{\247R`\313\336\225\251\344L=\"\315\3657-c\322\005" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020@" signature:"0E\002!\000\275\344\364!d+Y\311\360\314\213\223\234\344\204\022\260\215\336\243\024\236\314\347#\356\361\274\001\33621\002 \026\032\260\355\227\263\375T\023\212\236R\250P\275\036\204\241d\360Z\220ye\203\032\001\300Y\037\n\016" > +[10b0 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[10b1 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[10b2 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[10b4 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[10b5 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[10b6 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[10b7 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[10b8 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[10b3 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[10b9 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[10ba 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[10bb 06-12 02:15:00.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[10bc 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[10bd 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[10be 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[10bf 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[10c0 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[10c1 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[10c2 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[10c3 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[10c4 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[10c5 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[10c6 06-12 02:15:00.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[10c7 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[10c8 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[10ca 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[10cb 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes +[10c9 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 271 bytes, Signature: 0 bytes +[10cc 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[10cd 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[10ce 06-12 02:15:00.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020A" signature:"0D\002 p\017*\225\343\360\212\000/\262;\316u\\9\324\241\275\0130\372W\324\r\001\345\010\232\001\231\252w\002 \t\302\216_\014R\034r\253\031\322(\260+\035\247\201\230\303\003a@\373?\330B\342\241A`\217\n" > > , Envelope: 165 bytes, Signature: 0 bytes +[10cf 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[10d0 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[10d1 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[10d2 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[10d3 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[10d4 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[10d5 06-12 02:15:00.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[10d6 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[10d7 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[10d8 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[10d9 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[10da 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[10db 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[10dc 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[10dd 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[10de 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[10df 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[10e0 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[10e1 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[10e2 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[10e3 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[10e4 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[10e5 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[10e7 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[10e8 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +[10e6 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[10e9 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[10ea 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[10eb 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[10ec 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[10ed 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[10ee 06-12 02:15:00.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[10ef 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 66 but got ts: inc_num:1528769652429776900 seq_num:65 +[10f0 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[10f1 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[10f2 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[10f3 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[10f4 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[10f5 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[10f6 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[10f7 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[10f8 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[10f9 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[10fa 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[10fb 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[10fc 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[10fd 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[10fe 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[10ff 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1100 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1101 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1102 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes +[1103 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1104 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1105 06-12 02:15:00.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1106 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1107 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1108 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1109 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[110a 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[110b 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[110c 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[110d 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[110e 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[110f 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1110 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1111 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1112 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1113 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1114 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1115 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1116 06-12 02:15:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1117 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1118 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1119 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[111a 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[111b 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[111c 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[111e 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[111d 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[111f 06-12 02:15:00.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1120 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1121 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[1122 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1123 06-12 02:15:00.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1124 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +[1125 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +[1126 06-12 02:15:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1127 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1128 06-12 02:15:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1129 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[112a 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[112b 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[112c 06-12 02:15:00.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[112d 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[112e 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[112f 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1130 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[1131 06-12 02:15:00.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1132 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +[1133 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +[1134 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1135 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > > , Envelope: 165 bytes, Signature: 0 bytes +[1136 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1137 06-12 02:15:00.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1138 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1139 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[113a 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[113b 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[113c 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[113d 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[113e 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[113f 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1140 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[1141 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\250\023br_\002 0J$\005gV\315\2063\026\323\357\233\2016\267K\230#\366\275\355BsM\277\31533\346\277\311" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020B" signature:"0E\002!\000\252\375\356\216\271\355\347\000\217\266\027\215_\247)s\314q\036\201to\233\032\333\314u\325\314\n\200N\002 o\345\232k\360\321%\324\201\372\\\205\325>\260d\275\005\336\236Y\027\016p(\301<\313\225\241\245\366" > +[1142 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1143 06-12 02:15:00.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1144 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1145 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1146 06-12 02:15:00.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1147 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1148 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1149 06-12 02:15:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[114a 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[114b 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[114c 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[114d 06-12 02:15:01.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[114e 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[114f 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1150 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1151 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1152 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1153 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1154 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1155 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1156 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1157 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1158 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[115a 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1159 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[115b 06-12 02:15:01.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +[115c 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020C" signature:"0D\002 +p],]\223\351K[L\034\233t\231\365N\325[+Z\344\031\346z\315'\202\251\342%4\010\002 $\324\356\333\312\002z\304\213\177u\236\211O\324\013\217Q\365G\341ht;e\201\263|C^\367$" secret_envelope: > +[115d 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[115e 06-12 02:15:01.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[115f 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1160 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1161 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1162 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1163 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1164 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1165 06-12 02:15:01.84 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1166 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1167 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1168 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1169 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[116a 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[116b 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[116c 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[116d 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[116e 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[116f 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1171 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1170 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1172 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1173 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1174 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1175 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1176 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1178 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1177 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[117a 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1179 06-12 02:15:01.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[117b 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[117c 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[117d 06-12 02:15:01.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[117e 06-12 02:15:02.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[117f 06-12 02:15:02.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[1180 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1181 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1182 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1184 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1185 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1186 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1183 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1187 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1188 06-12 02:15:02.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1189 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[118a 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[118b 06-12 02:15:02.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[118c 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[118d 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[118e 06-12 02:15:02.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[118f 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1190 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1191 06-12 02:15:02.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1192 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1193 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1194 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1195 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1196 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1197 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1198 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1199 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[119a 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[119b 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[119c 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[119d 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[119f 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[119e 06-12 02:15:02.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[11a0 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11a2 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[11a1 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[11a4 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[11a3 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[11a5 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11a6 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[11a7 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[11a8 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[11a9 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[11aa 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[11ab 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11ac 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[11ad 06-12 02:15:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11ae 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11af 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[11b0 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11b1 06-12 02:15:03.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11b2 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11b3 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[11b4 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[11b5 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[11b6 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[11b8 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[11b9 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[11b7 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11bb 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11bc 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[11ba 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[11bd 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[11be 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11bf 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[11c0 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11c1 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[11c2 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[11c3 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11c4 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11c5 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11c6 06-12 02:15:03.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11c7 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11c8 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11c9 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[11ca 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11cb 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[11cc 06-12 02:15:03.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[11cd 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[11ce 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[11cf 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[11d0 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[11d1 06-12 02:15:03.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11d2 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[11d3 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[11d4 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11d5 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[11d6 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[11d7 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[11d8 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[11d9 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[11da 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[11db 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[11dc 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[11dd 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[11de 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[11df 06-12 02:15:03.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[11e0 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[11e1 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:S\205\025Z0\227<\356u\020I\315" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020E" signature:"0E\002!\000\311\244&\252Q\364\364d\003G\260\005;j\036\300\377C)\034\244\2637\301\223\331k&\343Rq'\002 I\252nd\356\277~Ua>C\177\266>6~\221\254+yr\266\021\345''\326\355Wp\027\234" > +[11e2 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[11e3 06-12 02:15:03.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11e4 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[11e5 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[11e6 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[11e7 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[11e8 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[11e9 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[11ea 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[11eb 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11ec 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[11ed 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11ee 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[11ef 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[11f0 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[11f1 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[11f2 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[11f3 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11f4 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[11f5 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[11f6 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[11f7 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11f8 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[11f9 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[11fa 06-12 02:15:04.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[11fb 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +[11fc 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[11fd 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[11ff 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 270 bytes, Signature: 0 bytes +[11fe 06-12 02:15:04.13 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes +[1200 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1201 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1202 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020F" signature:"0D\002 ^\356V\260\275\322\3071@\332\250\366y]\327\324\265\300\304c\262\031+e.\253f6&<}W\002 \001\236\370\313\rO\215\211\231\007\006J\017\214|hf\305\260\327\230\260lh\377\262\354/\234W\253\230" > > , Envelope: 165 bytes, Signature: 0 bytes +[1203 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1204 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[1205 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[1206 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1207 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[1208 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1209 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[120a 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[120b 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[120c 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[120d 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[120e 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[120f 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1210 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1211 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1212 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1213 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1214 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1215 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1216 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[1217 06-12 02:15:04.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1218 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1219 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[121a 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[121b 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[121c 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[121d 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[121e 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[121f 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1220 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1221 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1222 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1223 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1224 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1225 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1226 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[1228 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1227 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1229 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[122a 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[122b 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[122c 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[122d 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[122e 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[122f 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1230 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1231 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1232 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1233 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1234 06-12 02:15:04.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1235 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[1236 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1237 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1238 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1239 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[123a 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[123b 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[123c 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[123d 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[123e 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[123f 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1240 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1241 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1242 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 70 but got ts: inc_num:1528769651824440500 seq_num:69 +[1243 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1244 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1245 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1246 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1247 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1248 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1249 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[124a 06-12 02:15:04.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[124b 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[124c 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[124d 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[124e 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[124f 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1250 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1251 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1252 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1253 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1254 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1255 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1256 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1257 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1258 06-12 02:15:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1259 06-12 02:15:04.21 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[125a 06-12 02:15:04.21 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[125b 06-12 02:15:04.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[125c 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[125d 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +[125e 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 42 bytes, Signature: 0 bytes +[125f 06-12 02:15:04.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1260 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1261 06-12 02:15:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1262 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1263 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1264 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1265 06-12 02:15:04.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1266 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1267 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1268 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1269 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[126a 06-12 02:15:04.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[126b 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[126c 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[126d 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[126e 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[126f 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1270 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1271 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1272 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1273 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1274 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1275 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1276 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1277 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1278 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1279 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[127a 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020G" signature:"0E\002!\000\272\362?\316\274\266\326\2551,<1)\311-\033h\265\275\235%\320\202\207\241q\245\025\0161]\337\002 +\351,\304\356\274\234\213\253\354s4f\304\341zG\000\2607\303f\244\312\177`\010\216|q\365\206" > +[127b 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[127c 06-12 02:15:04.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[127d 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[127e 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[127f 06-12 02:15:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1280 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1281 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1282 06-12 02:15:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1283 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1284 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1285 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1286 06-12 02:15:05.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1287 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1288 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1289 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[128a 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[128b 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[128c 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[128d 06-12 02:15:05.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[128e 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[128f 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1290 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1291 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1292 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1293 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[1294 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers +[1296 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +[1297 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1295 06-12 02:15:05.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020H" signature:"0D\002 P\245F\314\362<\262\234\350\327\010\346\213\220\0279N\271\032\326\313\202\271\262{{\253(\274\333\243\215\002 rn#\217\246\3004\010;t\017\244\217,\037>\233\271\225A\342\357\013\215\305\002P\262\242\272\013!" secret_envelope: > +[1298 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1299 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[129a 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[129b 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[129c 06-12 02:15:06.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[129d 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[129e 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[129f 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[12a0 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[12a1 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[12a2 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[12a3 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[12a4 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[12a5 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[12a6 06-12 02:15:06.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[12a7 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[12a8 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12a9 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12aa 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12ab 06-12 02:15:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12ac 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12ad 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[12ae 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[12af 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12b0 06-12 02:15:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[12b1 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12b2 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12b3 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[12b4 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[12b5 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12b6 06-12 02:15:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[12b7 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[12b8 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[12b9 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[12ba 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[12bb 06-12 02:15:07.10 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12bc 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12bd 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12be 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12bf 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12c0 06-12 02:15:07.11 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12c1 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12c2 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12c3 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[12c4 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[12c5 06-12 02:15:07.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12c6 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12c7 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[12c8 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12c9 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[12ca 06-12 02:15:07.14 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[12cb 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[12cc 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[12cd 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12ce 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12cf 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[12d0 06-12 02:15:07.15 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12d1 06-12 02:15:07.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[12d2 06-12 02:15:07.20 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[12d3 06-12 02:15:07.20 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[12d4 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[12d5 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[12d6 06-12 02:15:07.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12d7 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12d8 06-12 02:15:07.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12d9 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[12da 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[12db 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12dc 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12dd 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[12de 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[12df 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[12e0 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[12e1 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[12e2 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[12e3 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[12e4 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[12e5 06-12 02:15:07.47 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[12e6 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[12e7 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12e8 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12e9 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12ea 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[12eb 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[12ec 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12ed 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[12ee 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12ef 06-12 02:15:07.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[12f0 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12f1 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12f2 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[12f3 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[12f4 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12f5 06-12 02:15:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[12f6 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +[12f7 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +[12f8 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[12f9 06-12 02:15:08.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > > , Envelope: 166 bytes, Signature: 0 bytes +[12fa 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[12fb 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[12fc 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[12fd 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[12fe 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[12ff 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1300 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1301 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1302 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1303 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1304 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[1305 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:>%\2167E\364\034Vz\3448\241\353\244\320\255\371\311\316\\\321\177\243\326#/<\006\002 U\245O\214\003\017N\341\220?\202\002\204/\027Q\304\023Q\022v\350R\205\353&U4\265/*\263" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020J" signature:"0E\002!\000\353@:\320y\342\345G@g\211\376W\263\340\000-\307l7\225\245\017Q\200c\346\215\234\342\227\326\002 [\022\315\322\235)t^e\r=\242\321\355\263\177\033)rK\341<\262ZE\262c,D\234yB" > +[1306 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1307 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1308 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1309 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[130a 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[130b 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[130c 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[130e 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[130d 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes +[1310 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[130f 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1312 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1311 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 271 bytes, Signature: 0 bytes +[1313 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1314 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[1315 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1316 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[1317 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1318 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1319 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020K" signature:"0E\002!\000\310\330\207\203\225k\035\230\0164\3154\314#\271\243,R{\301\352x\312\277\224N\317gDB\n.\002 (JA\315s/A\225J\324\352%\2358,Q\265k>\346\\7l\376\350' gi]\220\351" > > , Envelope: 166 bytes, Signature: 0 bytes +[131a 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[131b 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[131c 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[131d 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[131e 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1320 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[131f 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1321 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1322 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1323 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1324 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1325 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1326 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1327 06-12 02:15:08.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1328 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1329 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[132a 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[132b 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[132c 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[132d 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[132e 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[132f 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1330 06-12 02:15:08.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1331 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1332 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1333 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1334 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1335 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1336 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1337 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1338 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1339 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[133a 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[133b 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[133c 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[133d 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[133e 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[133f 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1340 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1341 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1342 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1343 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1344 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1345 06-12 02:15:08.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1346 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1347 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1348 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1349 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[134a 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[134b 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[134c 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[134d 06-12 02:15:08.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[134e 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[134f 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1350 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1351 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1352 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1353 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1354 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1355 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1356 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1357 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1358 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1359 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[135a 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[135b 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[135c 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[135d 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[135e 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[135f 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1360 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1361 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1362 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1363 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1364 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1365 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1366 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +[1367 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +[1368 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1369 06-12 02:15:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[136a 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[136b 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[136c 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[136d 06-12 02:15:08.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[136e 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1370 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1371 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1372 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1373 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1374 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1375 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1376 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1377 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[1378 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1379 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[137a 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[137b 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[137c 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[137d 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[136f 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[137e 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[137f 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1380 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1381 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1382 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1383 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1384 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1385 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1386 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1387 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership +[1388 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1389 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[138a 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[138b 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[138c 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[138d 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[138e 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[138f 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1390 06-12 02:15:08.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1391 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1392 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1393 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1394 06-12 02:15:08.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1395 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1396 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1397 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1398 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1399 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[139b 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[139c 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[139a 06-12 02:15:08.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[139d 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[139e 06-12 02:15:08.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[139f 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[13a0 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[13a1 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 1] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[13a2 06-12 02:15:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13a3 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[13a4 06-12 02:15:08.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[13a5 06-12 02:15:08.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[13a6 06-12 02:15:08.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[13a7 06-12 02:15:08.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13a8 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[13a9 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[13aa 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13ab 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[13ac 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13ad 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[13ae 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[13af 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[13b0 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[13b1 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[13b2 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[13b3 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[13b4 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[13b5 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[13b6 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[13b7 06-12 02:15:08.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[13b8 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[13b9 06-12 02:15:08.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\255\314\365L\\\006\226\224#5B\345\352\005b:9\032\344\340/\263" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020L" signature:"0E\002!\000\322\334\376\262\320\0234\177\370\233\367\316\277v\344\370\034\005\226\253\020\240K\327K\345\236VuM\017\352\002 *\307\013\346\223\312S8$\221\355*\364\365\241TZE\3479w/[c\261\005V\334\301\361\241\215" > +[13ba 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[13bb 06-12 02:15:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[13bc 06-12 02:15:08.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13bd 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[13be 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[13bf 06-12 02:15:08.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13c0 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[13c1 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[13c2 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[13c3 06-12 02:15:09.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13c4 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +[13c6 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes +[13c7 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[13c8 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[13c9 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[13ca 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[13cb 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[13cc 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[13cd 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[13ce 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[13cf 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[13d0 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[13c5 06-12 02:15:09.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13d1 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers +[13d3 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[13d4 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[13d2 06-12 02:15:09.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020M" signature:"0D\002 Qw\332\274\254\020\333\326\265\352\224>9\342\2773Wh\017\030\322\313\3466ntvB\2758\2246\002 j\257/3\377\266\"\356D4\010\247\254oh\334\013s0\024F\277U' &-\276\005\024\337\361" secret_envelope: > +[13d5 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13d6 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13d7 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[13d8 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13d9 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13da 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13db 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[13dc 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[13dd 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[13de 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[13df 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[13e0 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[13e1 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[13e2 06-12 02:15:11.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[13e3 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[13e4 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[13e5 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13e7 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[13e6 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13e8 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[13e9 06-12 02:15:11.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13ea 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[13eb 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13ec 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13ed 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[13ee 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13ef 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13f0 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[13f1 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[13f2 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13f3 06-12 02:15:11.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[13f4 06-12 02:15:12.15 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +[13f5 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[13f6 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[13f7 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13f8 06-12 02:15:12.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[13f9 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13fa 06-12 02:15:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[13fb 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[13fc 06-12 02:15:12.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[13fd 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[13fe 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[13ff 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1400 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1401 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1403 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1404 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1402 06-12 02:15:12.20 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1405 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1406 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1407 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1409 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[140a 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[140b 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[140c 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1408 06-12 02:15:12.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[140d 06-12 02:15:12.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[140e 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[140f 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1411 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1414 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1412 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[1415 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[1416 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[1410 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1417 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1413 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1419 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[141a 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 769 bytes, Signature: 0 bytes +[1418 06-12 02:15:12.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[141b 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[141c 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[141d 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[141e 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[141f 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1420 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1421 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1422 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1423 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[1424 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1425 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1426 06-12 02:15:12.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1427 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1428 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[142c 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[142d 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[142f 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1430 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1431 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1432 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[142e 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[142a 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[142b 06-12 02:15:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +[1429 06-12 02:15:12.26 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1433 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1434 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1435 06-12 02:15:12.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1436 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1437 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[1438 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 272 bytes, Signature: 0 bytes +[1439 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[143a 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[143b 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[143c 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes +[143d 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[143e 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[143f 06-12 02:15:12.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020O" signature:"0E\002!\000\230L\315\237\3671\303\204e\267\001\366QF'\266\250]\250\255pm\254yg\215n\010a\343;\231\002 .O\266\306\321\205~\035\311\r\244\203\226J\026\314\256p\020\2135Ie\033s\315\032\216\311N;#" > > , Envelope: 166 bytes, Signature: 0 bytes +[1440 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1441 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1442 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1443 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1444 06-12 02:15:12.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1445 06-12 02:15:12.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1447 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1446 06-12 02:15:12.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1449 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [4], peers number [3] +[1448 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[144a 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[144b 06-12 02:15:12.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[144c 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[144d 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[144e 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [4], peers number [3] +[144f 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[1450 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[1451 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc424267160 env 0xc424247680 txn 0 +[1452 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc424247680 +[1454 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[1455 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1456 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1457 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1458 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1459 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[145a 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[145b 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[145c 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[145d 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[145e 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[145f 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1460 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes to 1 peers +[1461 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 5335 bytes, seq: 4}, Envelope: 5365 bytes, Signature: 0 bytes +[1462 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1463 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1464 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1465 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1466 06-12 02:15:12.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +[1467 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 43 bytes, Signature: 0 bytes +[1468 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[146a 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1469 06-12 02:15:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[146b 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[146c 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[146d 06-12 02:15:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1470 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[146e 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[146f 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1453 06-12 02:15:12.34 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +[1471 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1472 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020P" signature:"0D\002 &H\321!\374\231]\027i\230t&\274\247\0371E{\005\264\334pP\311*0\354>\367\255\251\037\002 \005\255\240\343\211k\322\272\332B\3462\020^4\304=\022\312\t\253\216\240\276\307\245\251R\370\035\272/" > +[1473 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1475 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1476 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1477 06-12 02:15:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1478 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +[1479 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +[147a 06-12 02:15:12.40 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +[147b 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +[1474 06-12 02:15:12.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[147c 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc424288a80, header channel_header:"\010\003\032\014\010\230\331\374\330\005\020\334\340\362\364\002\"\017businesschannel*@1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046:\010\022\006\022\004lscc" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030\2451;\332\\\257\302[,&#\004\364\034\243\240\237\370\233\256(]\337\241" +[147d 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[147e 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[1480 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[1481 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +[1482 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] +[1483 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[147f 06-12 02:15:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1484 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc42428d000 +[1485 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046, seq 0 out of 1 in block 4 for channel businesschannel with validation plugin vscc with plugin +[1486 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[1487 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> DEBU VSCC info: doing special validation for LSCC +[1488 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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}} +[1489 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.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}} +[148a 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace exp02 +[148b 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Namespace lscc +[148c 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.FetchState.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [23a5ed44-a56c-4a1d-98e2-f043ba7f3441] +[148d 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.GetState.GetStateMultipleKeys.GetStateMultipleKeys.getStateMultipleKeys.GetStateMultipleKeys.GetStateMultipleKeys.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[148e 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation.getInstantiatedCC.Done.Done -> DEBU Done with transaction simulation / query execution [23a5ed44-a56c-4a1d-98e2-f043ba7f3441] +[148f 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.ValidateLSCCInvocation -> DEBU Validating deploy for cc exp02 version 1.0 +[1490 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate -> ERRO VSCC error: ValidateLSCCInvocation failed, err Chaincode exp02 is already instantiated +[1491 06-12 02:15:12.42 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 4, namespace: lscc, tx 0 validation results is: Chaincode exp02 is already instantiated +[1492 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 appears to be invalid: Chaincode exp02 is already instantiated +[1494 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1495 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1493 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc42428d000 +[1497 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> ERRO VSCCValidateTx for transaction txId = 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 returned error: Chaincode exp02 is already instantiated +[1498 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc424267160 env 0xc424247680 txn 0 +[1496 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1499 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[149a 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 10 +[149b 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[149c 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [4] +[149d 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[149e 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [4] +[149f 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[14a0 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> WARN Channel [businesschannel]: Block [4] Transaction index [0] TxId [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] marked as invalid by committer. Reason code [ENDORSEMENT_POLICY_FAILURE] +[14a1 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[14a2 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[14a3 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[14a4 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] to storage +[14a5 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[14a6 06-12 02:15:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[14a7 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[14a8 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[14a9 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[14aa 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14ab 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[14ad 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[14ae 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[14ac 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[14af 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[14b0 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[14b1 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [4] +[14b2 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14b3 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14b4 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[14b5 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14b6 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14b7 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14b8 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[14b9 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=4, blockHash=[]byte{0xb2, 0x2, 0x73, 0xc0, 0x68, 0xb4, 0x1b, 0x5, 0x97, 0xfa, 0x28, 0x78, 0xb9, 0x53, 0x7d, 0x1c, 0xa4, 0x85, 0x7c, 0xde, 0xf6, 0x7e, 0x5d, 0x4d, 0x44, 0xc8, 0x94, 0x3b, 0x89, 0xd3, 0x6c, 0x25} txOffsets= +txId=1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 locPointer=offset=70, bytesLength=3460 ] -[14e7 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to index -[14e8 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45490, bytesLength=3458] for tx number:[0] ID: [0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c] to blockNumTranNum index -[14e9 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50743], isChainEmpty=[false], lastBlockNumber=[4] -[14ea 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] -[14eb 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] -[14ec 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) -[14ed 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database -[14ee 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[14ef 05-31 05:22:36.17 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[14f0 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[14f1 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] -[14f2 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database -[14f3 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions -[14f4 05-31 05:22:36.18 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 -[14f5 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] -[14f6 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[14f7 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 0768437b776d0af13b352f9da51954efc23c2db4a0e9d3dd086e0e2c8922013c -[14f8 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[14f9 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[14fa 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[14fb 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[14fc 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[14fd 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[14fe 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[14ff 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[1500 05-31 05:22:36.19 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[1501 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1502 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1503 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1504 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1505 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1506 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1507 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1508 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1509 05-31 05:22:36.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[150a 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[150b 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[150c 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[150d 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[150e 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[150f 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1510 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1511 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1512 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1513 05-31 05:22:36.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1514 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1515 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1516 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1517 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1518 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1519 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[151a 05-31 05:22:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[151b 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[151c 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[151d 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[151e 05-31 05:22:36.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[151f 05-31 05:22:36.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[1520 05-31 05:22:36.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1521 05-31 05:22:36.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1522 05-31 05:22:36.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1523 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1525 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1526 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1524 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1527 05-31 05:22:36.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1528 05-31 05:22:36.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1529 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[152a 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[152b 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[152c 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[152d 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[152e 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[152f 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1530 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1531 05-31 05:22:36.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1532 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1533 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1535 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1534 05-31 05:22:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1536 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1537 05-31 05:22:36.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1538 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1539 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[153a 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[153b 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[153c 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[153d 05-31 05:22:36.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[153e 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[153f 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1540 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1541 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1542 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1543 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1544 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1545 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1546 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1547 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1548 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1549 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[154a 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[154b 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[154c 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[154d 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[154e 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[154f 05-31 05:22:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1550 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1551 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1552 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1553 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1554 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1555 05-31 05:22:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1556 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1557 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1558 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1559 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[155a 05-31 05:22:38.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[155b 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -[155c 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -[155d 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[155e 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > > , Envelope: 165 bytes, Signature: 0 bytes -[155f 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1560 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1561 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1562 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1563 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1564 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1565 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1566 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1567 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1568 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[1569 05-31 05:22:38.87 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[156a 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:m\303x*\004f\321\307g\300\353=\310\311o\007ph\030\002 \037\302-\235/d\240\211\3239\020\211\312'\360\264\302\321\267\324p\237\216'\337\036\340IrW=/" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020X" signature:"0D\002 [W!\333\241\3020\245\001S\363)\336\027\021\021< -[156b 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[156c 05-31 05:22:38.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[156d 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[156e 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1570 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1571 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[156f 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1572 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1573 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1574 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[1575 05-31 05:22:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[1576 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1577 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[1578 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1579 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -[157a 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[157b 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[157c 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[157d 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[157e 05-31 05:22:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[157f 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1580 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1581 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1582 05-31 05:22:38.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1583 05-31 05:22:38.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1584 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[1585 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[1586 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1587 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1588 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -[1589 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -[158a 05-31 05:22:38.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[158b 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[158c 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[158d 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[158e 05-31 05:22:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[158f 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1590 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1591 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1592 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1593 05-31 05:22:39.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1594 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1595 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1596 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 1] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1597 05-31 05:22:39.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1598 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1599 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[159a 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[159b 05-31 05:22:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[159c 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[159d 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[159e 05-31 05:22:39.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[159f 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[15a0 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[15a1 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[15a2 05-31 05:22:39.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[15a3 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -[15a4 05-31 05:22:39.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[15a5 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > > , Envelope: 165 bytes, Signature: 0 bytes -[15a6 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[15a7 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[15a8 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[15a9 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[15aa 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[15ab 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[15ac 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[15ad 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[15ae 05-31 05:22:39.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[15af 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[15b0 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -[15b1 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\250{\361\205\177\030\232\252\371\361\350\267\331\305\345<\023\316\030:\235T\255\217\344\002 T \210\005\232\010\364\272\220\377m\355\013\326\025\203q\203\246\207\227%\363\265U/\364\3073\237;\242" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Y" signature:"0D\002 \"R\235\376\3019\200\263\331\265\216\232\363Rk\031\363\327~\266x\304\316\211\\\345+\201\337=\001\005\002 0\246~\314\374#\211\002\226\314\177\266\3469.\013\331\264:\310\302\3562\330\255~N\353}\025;o" secret_envelope: > -[15b2 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[15b3 05-31 05:22:39.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[15b4 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[15b5 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[15b6 05-31 05:22:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[15b7 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[15b8 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes to 1 peers -[15b9 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[15ba 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[15bb 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes -[15bc 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[15bd 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[15be 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[15bf 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[15c0 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[15c1 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[15c2 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes -[15c3 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes -[15c4 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 152 bytes, Signature: 0 bytes -[15c5 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[15c6 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[15c7 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[15c8 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[15c9 05-31 05:22:39.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[15ca 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[15cb 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[15cc 05-31 05:22:39.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[15cd 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[15ce 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[15cf 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -[15d1 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -[15d2 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[15d3 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[15d0 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[15d4 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020Z" signature:"0D\002 =\031|\0061\204\215\244\035E\022\263\260\022\2248\t\341\000v>\264\031\274\267\360s\273\017\207v\026\002 \037\364\270\306\300s\300\362\353\017[]\221'\345\276\225\370\n2;\315\243T\370\004\r`+\034\337\343" > > , Envelope: 165 bytes, Signature: 0 bytes -[15d5 05-31 05:22:39.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[15d6 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[15d7 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[15d8 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[15d9 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[15da 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[15db 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[15dc 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[15de 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[15df 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[15e0 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[15dd 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[15e1 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[15e2 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[15e3 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[15e4 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[15e5 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[15e6 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[15e7 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[15e8 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[15e9 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[15ea 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[15ec 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[15eb 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[15ed 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[15ee 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[15ef 05-31 05:22:39.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[15f0 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[15f1 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[15f2 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[15f3 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[15f4 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 86 but got ts: inc_num:1527744091508552400 seq_num:85 -[15f5 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[15f6 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[15f7 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[15f8 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[15f9 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[15fa 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[15fb 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[15fc 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[15fd 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[15fe 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[15ff 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1600 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1601 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1602 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1603 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 91 but got ts: inc_num:1527744091840124700 seq_num:89 -[1604 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1605 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1606 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1607 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1608 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1609 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[160a 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[160b 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 86 but got ts: inc_num:1527744091508552400 seq_num:85 -[160c 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[160d 05-31 05:22:39.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[160e 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[160f 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1610 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1611 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1612 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1613 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1614 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1615 05-31 05:22:39.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1616 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1617 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1618 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1619 05-31 05:22:39.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[161a 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[161b 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[161c 05-31 05:22:39.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[161d 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[161e 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[161f 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1620 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1621 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1622 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1623 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1624 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1625 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1626 05-31 05:22:39.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[1627 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[1628 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020[" signature:"0E\002!\000\251-\244@\"\266\315O\265\274\272U\013\024\261[\032\021i\350\247\375\276\276\302\365\303Q~\322^\226\002 i\311c\3449\352R\022\026\335\006\242J4\327\353\350aFY\002\002\201~\337\333\273>\275\264\245}" > -[1629 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[162a 05-31 05:22:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[162b 05-31 05:22:40.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[162c 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[162d 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[162e 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[162f 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1630 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1631 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1632 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1633 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1634 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1635 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1636 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1637 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1638 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1639 05-31 05:22:40.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[163a 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[163b 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[163c 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[163d 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[163e 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[163f 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1640 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1641 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1642 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1643 05-31 05:22:40.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1644 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1645 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1646 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1647 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1648 05-31 05:22:40.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1649 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[164a 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[164b 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[164c 05-31 05:22:40.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[164d 05-31 05:22:41.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[164e 05-31 05:22:41.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[164f 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1650 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1651 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1652 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1653 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1654 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1655 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1656 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1657 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1658 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1659 05-31 05:22:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[165a 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[165b 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[165c 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[165d 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[165e 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[165f 05-31 05:22:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1660 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1661 05-31 05:22:41.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1662 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1663 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1664 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1665 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1666 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1667 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1668 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1669 05-31 05:22:41.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[166a 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[166b 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[166c 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[166e 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[166d 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[166f 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1670 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1671 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1672 05-31 05:22:41.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1673 05-31 05:22:41.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1674 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1675 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1676 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1677 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1678 05-31 05:22:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[167a 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1679 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[167b 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[167c 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[167d 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[167e 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[167f 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1680 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1681 05-31 05:22:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1682 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1683 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1684 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1685 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1686 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1687 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1689 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1688 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[168a 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[168b 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[168c 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[168d 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[168e 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[168f 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1690 05-31 05:22:41.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1691 05-31 05:22:41.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1692 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1693 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1694 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1695 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[1696 05-31 05:22:42.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1697 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1698 05-31 05:22:42.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[169a 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[169b 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1699 05-31 05:22:42.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[169c 05-31 05:22:42.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[169d 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[169e 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[169f 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[16a0 05-31 05:22:42.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[16a1 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[16a2 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[16a4 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[16a3 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[16a8 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[16a5 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16a6 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[16a9 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[16ac 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[16aa 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16a7 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[16ad 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020]" signature:"0E\002!\000\314\216\250\037\n\272~>\336\362\302\234\326\356/\014\222+\345\221\336\022)\022\033\265\020Q\330\211\234\202\002 J+JC\245\256|\025\344H\254\342\356\010\250\245\265\35270\303s\331~\271\001\221%s\237\020\215" > -[16ae 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16af 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[16ab 05-31 05:22:42.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[16b0 05-31 05:22:42.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16b1 05-31 05:22:42.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[16b2 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16b3 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[16b4 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16b5 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[16b6 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16b7 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[16b8 05-31 05:22:42.95 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[16b9 05-31 05:22:42.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[16ba 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16bb 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -[16bc 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -[16bd 05-31 05:22:42.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16be 05-31 05:22:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[16bf 05-31 05:22:43.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16c0 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[16c1 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[16c2 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[16c3 05-31 05:22:43.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16c4 05-31 05:22:43.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[16c5 05-31 05:22:43.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16c6 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[16c7 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[16c8 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[16c9 05-31 05:22:43.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16ca 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[16cb 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16cc 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[16cd 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[16ce 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[16cf 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[16d0 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[16d1 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[16d2 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[16d3 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[16d4 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[16d5 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[16d6 05-31 05:22:43.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[16d7 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[16d8 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020^" signature:"0D\002 \000\236\364\3065\346>\236\014)b\206A*\370[\033X\264\232\327d+&\231\014\235\360\355#\264E\002 UD\344\22346\361\350\213A\240\356\310\r\\\004p\246\021%\021\320\221\335\350Z{B}\035\003J" secret_envelope: > -[16d9 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[16da 05-31 05:22:43.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16db 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[16dc 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[16dd 05-31 05:22:43.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16de 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[16df 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[16e0 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[16e1 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[16e2 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[16e3 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[16e4 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[16e5 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16e6 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[16e7 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16e8 05-31 05:22:43.68 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[16e9 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[16ea 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[16eb 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16ec 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[16ed 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[16ee 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[16ef 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16f0 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16f1 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[16f2 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[16f3 05-31 05:22:43.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[16f4 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[16f5 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[16f6 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[16f7 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -[16f8 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16f9 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -[16fa 05-31 05:22:43.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16fb 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020_" signature:"0E\002!\000\313\313\030!\0323Z\255/+\243\003r\314\253[3\310\340\243]\306\221\350\271\354x\327\377J\204\204\002 |\221\327pB\216(\355\336\236`\037\223\227\363r\205\007\020c\177#\256\256\312\224\210\351\260En\001" > > , Envelope: 166 bytes, Signature: 0 bytes -[16fc 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[16fd 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[16fe 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[16ff 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1700 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[1702 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1703 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1704 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1701 05-31 05:22:43.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[1705 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1706 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1707 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1708 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1709 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[170a 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[170b 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[170c 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[170d 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[170e 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[170f 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1710 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1711 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1712 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1713 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1714 05-31 05:22:43.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1715 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1716 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1717 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1718 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1719 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[171a 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[171b 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[171d 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[171c 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[171e 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[171f 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1720 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1721 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1722 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1723 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1724 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1725 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1726 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[1727 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1728 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1729 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[172a 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[172b 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[172c 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[172d 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[172e 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[172f 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1730 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1731 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1732 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 91 but got ts: inc_num:1527744091508552400 seq_num:90 -[1733 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1734 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1735 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1736 05-31 05:22:43.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 94 but got ts: inc_num:1527744090808810100 seq_num:92 -[1737 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1738 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1739 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[173a 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[173b 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[173c 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[173d 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[173e 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[173f 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1740 05-31 05:22:43.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1741 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1742 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1743 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1744 05-31 05:22:43.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1745 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1746 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1747 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1748 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1749 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[174a 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[174b 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[174c 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[174d 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[174e 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[174f 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1750 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1751 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[1752 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[1753 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020`" signature:"0D\002 \007\375\334\355,X\343\026|'\277\260\257\311E\336V\354[\225L*\032\202I=Tg\027E\301.\002 :\212I\304{\304\014*\347\326\361\020\\!H\005\013\005\247\003\246N-\235;\243!G'\003\307\307" > -[1754 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1755 05-31 05:22:43.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1756 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1757 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1758 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1759 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[175a 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[175b 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[175c 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[175d 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[175e 05-31 05:22:45.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[175f 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1760 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1761 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1762 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1763 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1764 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1765 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1767 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1766 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1768 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1769 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[176a 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[176b 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[176c 05-31 05:22:45.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[176d 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[176f 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[176e 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1770 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1771 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1772 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1773 05-31 05:22:45.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1774 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[1775 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[1776 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[1777 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[1778 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1779 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[177a 05-31 05:22:45.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[177b 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[177c 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[177d 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[177e 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[177f 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1780 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1781 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1782 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1783 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1784 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1785 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1786 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1787 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1788 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1789 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[178a 05-31 05:22:46.57 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[178b 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[178c 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[178d 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[178e 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[178f 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1790 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1791 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1792 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1793 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1794 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1795 05-31 05:22:46.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1796 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1797 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1798 05-31 05:22:46.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1799 05-31 05:22:46.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[179a 05-31 05:22:46.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[179b 05-31 05:22:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[179c 05-31 05:22:46.72 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[179d 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[179e 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[179f 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17a0 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17a1 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17a2 05-31 05:22:46.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17a3 05-31 05:22:46.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17a4 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[17a5 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[17a6 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[17a7 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[17a8 05-31 05:22:46.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17a9 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17aa 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[17ab 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17ac 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17ad 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17ae 05-31 05:22:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[17af 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[17b0 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[17b2 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[17b1 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[17b4 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[17b3 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[17b5 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[17b6 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[17b7 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[17b9 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17b8 05-31 05:22:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[17ba 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[17bc 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[17bb 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[17bd 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[17be 05-31 05:22:46.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17c4 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17c3 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17c0 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17c1 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[17c6 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17c7 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[17bf 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17c9 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[17ca 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17c2 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[17cb 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[17c8 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[17c5 05-31 05:22:46.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[17cc 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[17cd 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17ce 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17cf 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[17d0 05-31 05:22:46.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[17d1 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[17d2 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[17d3 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[17d4 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17d5 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[17d6 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17d7 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17d8 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[17d9 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17da 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[17db 05-31 05:22:46.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17de 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[17df 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17e0 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[17e1 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17dc 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[17dd 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[17e2 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[17e3 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[17e5 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[17e6 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17e4 05-31 05:22:46.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020b" signature:"0D\002 '\265!/\223m\362@\307L>1\210\3465\000I1\376\013?\r}H\352>W6\333KE\023\002 Q\324\361\222\005\021\024u\341q\242J@\026\ny\205\212S1D\227yNM\240\205\352\255I\275%" > -[17e7 05-31 05:22:46.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[17e8 05-31 05:22:46.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[17e9 05-31 05:22:46.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[17ea 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[17eb 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -[17ec 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -[17ed 05-31 05:22:46.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17ee 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[17ef 05-31 05:22:47.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17f0 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[17f1 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[17f2 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[17f3 05-31 05:22:47.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17f4 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[17f5 05-31 05:22:47.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17f6 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[17f7 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[17f8 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[17f9 05-31 05:22:47.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17fa 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[17fb 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[17fc 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[17fd 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[17fe 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[17ff 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1800 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1801 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1802 05-31 05:22:47.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1803 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1804 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1805 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1806 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers -[1807 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020c" signature:"0E\002!\000\273\007|Z]\235\322\304{\371\007\016Bj(n\362\313\210)\266\326\254\214\217Lw\246\342\214\205\324\002 w|O\342\3204\234p4*\2513\325eX\305n\224\366\236H\204\266N\264TF'\315\323^k" secret_envelope: > -[1808 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -[1809 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[180a 05-31 05:22:47.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[180b 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[180c 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[180d 05-31 05:22:47.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[180e 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[180f 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1810 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1811 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1812 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[1813 05-31 05:22:47.68 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1814 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1815 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1816 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1817 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1818 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1819 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[181a 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[181b 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[181c 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[181d 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[181f 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1820 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[181e 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1821 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1822 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1823 05-31 05:22:47.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1824 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1825 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1826 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1827 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -[1828 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -[1829 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[182a 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[182b 05-31 05:22:47.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020d" signature:"0D\002 Z\211\330\365(]W\005WM{\357\367%\213UK\317x\346P\313mPm\024\301M\t\177\374\343\002 \021J\006\341P\253*\345B49\373\374Ru=\253\234\004M3L!\370\371\311b\"`dT\234" > > , Envelope: 165 bytes, Signature: 0 bytes -[182c 05-31 05:22:47.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[182d 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[182e 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[182f 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1830 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[1831 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1832 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1833 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1834 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1835 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1836 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1837 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1838 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1839 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[183a 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[183b 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[183c 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[183d 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[183e 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[183f 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1841 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1842 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1840 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1843 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1844 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1845 05-31 05:22:47.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1846 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1847 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1848 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1849 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[184a 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[184b 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 96 but got ts: inc_num:1527744091508552400 seq_num:95 -[184c 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[184d 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[184e 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[184f 05-31 05:22:47.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1850 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1851 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1852 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1853 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1854 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1855 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1856 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1857 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1858 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1859 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[185a 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 101 but got ts: inc_num:1527744091840124700 seq_num:99 -[185b 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[185c 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[185d 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[185e 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[185f 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1860 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1861 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1862 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 96 but got ts: inc_num:1527744091508552400 seq_num:95 -[1863 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1864 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1865 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1866 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1867 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1868 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1869 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[186a 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[186b 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[186c 05-31 05:22:47.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[186d 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[186e 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[186f 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1870 05-31 05:22:47.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1871 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1872 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1873 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1874 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1875 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1876 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1877 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1878 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1879 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[187a 05-31 05:22:47.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[187b 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[187c 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[187d 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[187e 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[1880 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1881 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[187f 05-31 05:22:47.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\022m-\242W\275\345" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020e" signature:"0E\002!\000\250\021\374\306\354H\276\205Z\266\277$ \304\026\332\2337\240\025\217,PgO5\034S|\244\305\036\002 >\310\037\nIQA\t9t]\252\275\000\322\274\326x\220\335\353\002x\367\256\333\372\336\223bSY" > -[1882 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1883 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1884 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1885 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[1886 05-31 05:22:50.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1887 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -[1888 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -[1889 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[188a 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > > , Envelope: 166 bytes, Signature: 0 bytes -[188b 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[188c 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[188d 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[188e 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[188f 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1890 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1891 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1892 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1894 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[1895 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[1896 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: \n\327\304*\346\263\337ZU\353\373\345\346\312\002 {\354\022\200\244n\2319|2\342\270\2605\200a\224\360`\217.\030\227\026\225`9cX\3016\370" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020f" signature:"0E\002!\000\356\031\367(\356h\314\257\240\203p0\311\344\016\362\231\205t\\\357\332\244\257g\345\326\035\243p6\023\002 e\306g\262\343\035@\332\001\007\225^\320\033\357\020\3159\364\325N\r\030+\241A|\377\033\306[\207" > -[1897 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1898 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1893 05-31 05:22:50.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1899 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[189a 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[189b 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[189c 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[189d 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[189e 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[189f 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[18a0 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[18a1 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[18a3 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[18a2 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[18a5 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[18a6 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[18a7 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[18a8 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[18a9 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[18a4 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[18aa 05-31 05:22:50.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[18ab 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[18ac 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[18ad 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[18ae 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[18af 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18b0 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[18b1 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18b2 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18b4 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[18b3 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[18b5 05-31 05:22:50.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[18b6 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18b7 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[18b8 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18b9 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18ba 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18bb 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[18bc 05-31 05:22:50.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[18bd 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18be 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[18bf 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18c0 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18c1 05-31 05:22:50.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[18c2 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[18c3 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[18c4 05-31 05:22:50.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18c5 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18c6 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18c7 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[18c8 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18c9 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[18ca 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[18cb 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[18cc 05-31 05:22:50.96 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[18cd 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[18ce 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[18cf 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -[18d0 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes -[18d1 05-31 05:22:50.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18d2 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[18d3 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18d4 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[18d5 05-31 05:22:50.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[18d6 05-31 05:22:51.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[18d7 05-31 05:22:51.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18d8 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[18d9 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[18da 05-31 05:22:51.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 1 2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[18db 05-31 05:22:51.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18dc 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[18dd 05-31 05:22:51.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18de 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18df 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[18e0 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18e1 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18e2 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18e3 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[18e4 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[18e5 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[18e6 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[18e8 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[18e7 05-31 05:22:51.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[18ea 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18e9 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[18eb 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[18ec 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[18ed 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[18ee 05-31 05:22:51.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[18ef 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18f0 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[18f1 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18f2 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18f4 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[18f5 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[18f6 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18f3 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18f7 05-31 05:22:51.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[18f8 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[18f9 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18fa 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18fb 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[18fc 05-31 05:22:51.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[18fd 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[18fe 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[18ff 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[1900 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1901 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[1902 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[1903 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1904 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1905 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[1906 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1907 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1908 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1909 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[190a 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[190b 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[190c 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[190d 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[190e 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020g" signature:"0D\002 O\254\350[[\352\320\002\303\311\354\000\217\337\220\260\031\235\001[&U\225%v\221\350\226/\363p\200\002 vXY\320\201\034!6wU\020IB\n\223(9\002\216\250\022\353\225\034\264O\322\332\357\014\363m" secret_envelope: > -[190f 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[1910 05-31 05:22:51.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1911 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1912 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1913 05-31 05:22:51.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1914 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[1915 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1916 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1917 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1918 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1919 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[191b 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[191c 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[191a 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[191d 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[191e 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[191f 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1921 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1922 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1923 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1920 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1924 05-31 05:22:51.69 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1925 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1926 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1927 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1928 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1929 05-31 05:22:51.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[192a 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[192b 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[192c 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[192d 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -[192e 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -[192f 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1930 05-31 05:22:51.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1931 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1933 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1934 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1935 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1932 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020h" signature:"0E\002!\000\277\372\215\235\177\302.\307\326\037\025\307k(O\0261\352\027w\353\230\260\202`\243%\226\376\267\313\177\002 X\212\233\201,\024\372\000\270\022w\341P\365\343I\207\260=\t\031*\373m'\336l\203\016\003\315\326" > > , Envelope: 166 bytes, Signature: 0 bytes -[1936 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1938 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1937 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1939 05-31 05:22:51.72 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[193b 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[193a 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[193d 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[193c 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[193f 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1940 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1941 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1942 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1943 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1944 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[193e 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1945 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1946 05-31 05:22:51.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1948 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1947 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1949 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[194a 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[194b 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[194c 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[194d 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[194f 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[194e 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1950 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1951 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1952 05-31 05:22:51.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1953 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1954 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1955 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1956 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1957 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1958 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1959 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[195b 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[195c 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[195a 05-31 05:22:51.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[195d 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[195e 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[195f 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1960 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1961 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[1962 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1963 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[1964 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1965 05-31 05:22:51.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1966 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[1967 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1968 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1969 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[196a 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[196b 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[196c 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[196d 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[196e 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[196f 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1970 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1971 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1972 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 101 but got ts: inc_num:1527744091508552400 seq_num:100 -[1973 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1974 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1975 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1976 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1977 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1978 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1979 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[197a 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[197b 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[197c 05-31 05:22:51.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[197d 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[197e 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[197f 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1980 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1981 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1982 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1983 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1984 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1985 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1986 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1987 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1988 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1989 05-31 05:22:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[198a 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[198b 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[198c 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[198e 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[198d 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[198f 05-31 05:22:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1990 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1991 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1992 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1993 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1995 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1996 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1994 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1997 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1998 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1999 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[199a 05-31 05:22:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[199b 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[199c 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[199d 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[199e 05-31 05:22:51.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[199f 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[19a0 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19a1 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[19a2 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[19a3 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[19a4 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[19a5 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[19a6 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[19a7 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[19a8 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[19a9 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[19aa 05-31 05:22:51.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[19ab 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[19ac 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[19ae 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[19af 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[19ad 05-31 05:22:51.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020j" signature:"0D\002 >\024n$\210!\373i\027\373_\220\0309\235?\320\233{\207\352^u}z\205l\210\275\320?r\002 \023\337\326\340oi \021\255>\233\000\353D\265 s\251m\375\216+\205\205\353v\232\211\025\310\254\232" > -[19b0 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[19b1 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[19b2 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[19b3 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[19b4 05-31 05:22:54.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19b5 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[19b6 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[19b7 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19b8 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[19b9 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[19ba 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[19bb 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[19bc 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[19bd 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[19be 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[19bf 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[19c0 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[19c2 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[19c3 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[19c4 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020k" signature:"0E\002!\000\372\264\366\254,\363\317\373\211\034\345\014\0004\331V\216\250\000\2149\022\223lZ\277BB\032\265?\343\002 L2O\363f\345Qx\351\353S\312\307L\337\215\260a|:4\305\347\202\004\327:F+\250\324v" > -[19c5 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[19c6 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[19c1 05-31 05:22:54.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[19c7 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[19c8 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[19c9 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[19ca 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[19cb 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[19cc 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[19cd 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[19ce 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[19cf 05-31 05:22:54.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19d0 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[19d1 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19d2 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[19d3 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[19d4 05-31 05:22:54.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19d5 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[19d6 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[19d7 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[19d8 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[19d9 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -[19da 05-31 05:22:54.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes -[19db 05-31 05:22:54.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19dc 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[19dd 05-31 05:22:55.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19de 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[19df 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[19e0 05-31 05:22:55.15 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[19e1 05-31 05:22:55.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19e2 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[19e3 05-31 05:22:55.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19e4 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[19e5 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[19e6 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[19e7 05-31 05:22:55.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19e8 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[19e9 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19ea 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\220\241\235\331\244\367\372\370\336WBj" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[19eb 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[19ec 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[19ed 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[19ee 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[19ef 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[19f0 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[19f1 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[19f2 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[19f3 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[19f4 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[19f5 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[19f6 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\220\241\235\331\244\367\372\370\336WBj" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020l" signature:"0E\002!\000\370\362\370\340 U;\030a\026\013\362\231\032!a{,\001\262Hp\037\202\036\233\025\321\272\366\276k\002 x\223\261>\233%\274\274\317\253\006\340\267.$\352\362\201\305\316X>\246\000\205VPgl\350\336~" secret_envelope: > -[19f7 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[19f8 05-31 05:22:55.61 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[19f9 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[19fa 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[19fb 05-31 05:22:55.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[19fc 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[19fd 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[19fe 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[19ff 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1a00 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1a01 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1a02 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1a03 05-31 05:22:55.69 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a04 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1a05 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a06 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1a07 05-31 05:22:55.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a08 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1a09 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1a0a 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1a0b 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a0c 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1a0d 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1a0e 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a0f 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1a10 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1a11 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a12 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1a13 05-31 05:22:55.71 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1a14 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1a15 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -[1a16 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a17 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -[1a18 05-31 05:22:55.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a19 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020m" signature:"0D\002 VW\375/S\251\342C\261\317\356\006\250\027Z3\226\234\326\320\362\032k].4\224\322\027U\342e\002 s\310\337\362\266\361\260G\010\372\001\027\007\0165\273A\034h:\353\275\265Nh\231\207\265\272vEy" > > , Envelope: 165 bytes, Signature: 0 bytes -[1a1a 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a1b 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1a1c 05-31 05:22:55.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a1d 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1a1e 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a1f 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1a20 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a21 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a22 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a23 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1a24 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a25 05-31 05:22:55.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a26 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1a27 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a28 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a29 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1a2a 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1a2c 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1a2b 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1a2d 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1a2e 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1a2f 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1a30 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1a31 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a32 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1a33 05-31 05:22:55.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a34 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[1a35 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1a36 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a37 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1a38 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 110 but got ts: inc_num:1527744091840124700 seq_num:108 -[1a39 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a3a 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a3b 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1a3c 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a3d 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a3e 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a3f 05-31 05:22:55.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1a40 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a41 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a42 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1a43 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1a44 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1a45 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1a46 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1a47 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1a48 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a49 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1a4a 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[1a4b 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a4c 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a4d 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1a4e 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a4f 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a50 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1a51 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1a52 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1a53 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1a54 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1a55 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[1a56 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1a57 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a58 05-31 05:22:55.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1a59 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a5a 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a5b 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1a5c 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a5d 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a5e 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a5f 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1a60 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1a61 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1a62 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1a63 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1a64 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1a65 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a66 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1a67 05-31 05:22:55.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1a68 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1a69 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a6a 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a6b 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a6c 05-31 05:22:55.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a6d 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a6e 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1a70 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a71 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1a6f 05-31 05:22:55.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a72 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a73 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a74 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1a75 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a76 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1a77 05-31 05:22:55.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1a78 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1a79 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1a7a 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1a7b 05-31 05:22:55.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a7c 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1a7d 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a7e 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1a7f 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1a80 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1a81 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1a82 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1a83 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1a84 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1a85 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1a86 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1a87 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1a88 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[1a89 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[1a8b 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1a8c 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1a8a 05-31 05:22:55.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\312d`]\021\214NZD\332\331\256S\361U" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020n" signature:"0D\002 \001\266z\341c`\003\307\343\317\345\277\024\313z\212\017JL\035\343{_e\267I\205A\345\313\363R\002 \rH\247\263\r\363\355\2317]\316/?bp\211\213\033\022\314\000\374\306\334\241\271\034\355z]\334\367" > -[1a8d 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[1a8e 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[1a8f 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[1a90 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[1a91 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1a92 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[1a93 05-31 05:22:55.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[1a94 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55392 -[1a95 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428406450 -[1a96 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[1a97 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[1a98 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[1a99 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[1a9a 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[1a9b 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc4283c4c30, header 0xc4284067b0 -[1a9c 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -[1a9d 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][8d3e6e51] processing txid: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 -[1a9e 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -[1a9f 05-31 05:22:56.47 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -[1aa0 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[1aa1 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -[1aa2 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][8d3e6e51] Entry chaincode: name:"exp02" -[1aa3 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4,syscc=true,proposal=0xc4283c4c30,canname=lscc:1.2.0) -[1aa4 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[1aa5 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -[1aa6 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d3e6e51]Received message TRANSACTION from peer -[1aa7 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d3e6e51] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[1aa8 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8d3e6e51] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[1aa9 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -[1aaa 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8d3e6e51] Sending GET_STATE -[1aab 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[1aac 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling GET_STATE from chaincode -[1aad 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [8d3e6e51] getting state for chaincode lscc, key exp02, channel businesschannel -[1aae 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[1aaf 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed GET_STATE. Sending RESPONSE -[1ab0 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d3e6e51]Received message RESPONSE from peer -[1ab1 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [8d3e6e51] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[1ab2 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [8d3e6e51] before send -[1ab3 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [8d3e6e51] after send -[1ab4 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [8d3e6e51] GetState received payload RESPONSE -[1ab5 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [8d3e6e51] Transaction completed. Sending COMPLETED -[1ab6 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [8d3e6e51] send state message COMPLETED -[1ab7 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[1ab8 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8d3e6e51] notifying Txid:8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, channelID:businesschannel -[1ab9 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -[1aba 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[1abb 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] Entry chaincode: name:"exp02" version: 1.0 -[1abc 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4,syscc=false,proposal=0xc4283c4c30,canname=exp02:1.0) -[1abd 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -[1abe 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[1abf 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[1ac0 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling GET_STATE from chaincode -[1ac1 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [8d3e6e51] getting state for chaincode exp02, key a, channel businesschannel -[1ac2 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -[1ac3 05-31 05:22:56.48 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed GET_STATE. Sending RESPONSE -[1ac4 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [8d3e6e51] Received RESPONSE, communicated (state:ready) -[1ac5 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[1ac6 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling GET_STATE from chaincode -[1ac7 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [8d3e6e51] getting state for chaincode exp02, key b, channel businesschannel -[1ac8 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b -[1ac9 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed GET_STATE. Sending RESPONSE -[1aca 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -[1acb 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling PUT_STATE from chaincode -[1acc 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed PUT_STATE. Sending RESPONSE -[1acd 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready -[1ace 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] handling PUT_STATE from chaincode -[1acf 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [8d3e6e51] Completed PUT_STATE. Sending RESPONSE -[1ad0 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [8d3e6e51] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[1ad1 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [8d3e6e51] notifying Txid:8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, channelID:businesschannel -[1ad2 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[1ad3 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] Exit -[1ad4 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[1ad5 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -[1ad6 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][8d3e6e51] Exit -[1ad7 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][8d3e6e51] Entry chaincode: name:"exp02" -[1ad8 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][8d3e6e51] escc for chaincode name:"exp02" is escc -[1ad9 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, chaincode: exp02} -[1ada 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, chaincode: exp02} -[1adb 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][8d3e6e51] Exit -[1adc 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -[1add 05-31 05:22:56.49 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55392 -[1ade 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1adf 05-31 05:22:56.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1ae1 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ae2 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ae3 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1ae4 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1ae5 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1ae6 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1ae7 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1ae8 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1ae9 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1aea 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1ae0 05-31 05:22:56.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1aeb 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1aec 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1aed 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1aee 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1aef 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1af1 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1af0 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1af3 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1af2 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1af4 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1af5 05-31 05:22:56.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1af6 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1af7 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1af8 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1afa 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1af9 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1afb 05-31 05:22:56.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1afc 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1afd 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1afe 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1aff 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b00 05-31 05:22:56.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1b01 05-31 05:22:56.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[1b02 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1b03 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b05 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b04 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1b07 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b08 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b06 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1b09 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b0a 05-31 05:22:56.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b0b 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b0c 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1b0d 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1b0e 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b0f 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b10 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1b11 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1b12 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1b13 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1b14 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1b15 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1b16 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1b17 05-31 05:22:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1b18 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1b19 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1b1a 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b1b 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b1c 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b1d 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b1e 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b1f 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1b20 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1b21 05-31 05:22:56.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b22 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1b23 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b24 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b25 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1b26 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1b27 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1b28 05-31 05:22:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1b29 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4798 bytes, seq: 5}, Envelope: 4828 bytes, Signature: 0 bytes -[1b2a 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1b2b 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[1b2c 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[1b2d 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc428520ec0 env 0xc4284cd7d0 txn 0 -[1b2e 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4284cd7d0 -[1b2f 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -[1b30 05-31 05:22:58.52 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[1b31 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -[1b32 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[1b33 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -[1b34 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -[1b35 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc42848d000, header channel_header:"\010\003\032\014\010\260\215\276\330\005\020\240\320\213\343\001\"\017businesschannel*@8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\014\"\207|\342>\026p\006\305\001\314\355\334\344\021\263\277\242\2012\031hM" -[1b36 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[1b37 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[1b38 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[1b39 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -[1b3a 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] -[1b3b 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[1b3c 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc4238af000 -[1b3d 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [5fda861a-3928-40fc-aee5-0882cc4e1c53] -[1b3e 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[1b3f 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [5fda861a-3928-40fc-aee5-0882cc4e1c53] -[1b40 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin -[1b41 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[1b42 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: -[1b43 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 appears to be valid -[1b44 05-31 05:22:58.53 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc4238af000 -[1b45 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc428520ec0 env 0xc4284cd7d0 txn 0 -[1b46 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[1b47 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[1b48 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] -[1b49 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[1b4a 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] -[1b4b 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[1b4c 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[1b4d 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -[1b4e 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[1b4f 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -[1b50 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[1b51 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[1b52 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[1b53 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] marked as valid by state validator -[1b54 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[1b55 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[1b56 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[1b57 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage -[1b58 05-31 05:22:58.54 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] -[1b59 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0x45, 0x52, 0x18, 0xd7, 0x37, 0x89, 0x65, 0x1a, 0xb0, 0x67, 0x41, 0xba, 0xca, 0x59, 0x80, 0x29, 0xb2, 0xe6, 0xf9, 0xbe, 0xb4, 0x2b, 0x95, 0xd6, 0x5d, 0xd7, 0x85, 0x87, 0x85, 0xf9, 0xd7, 0xcc} txOffsets= -txId=8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 locPointer=offset=70, bytesLength=2922 +[14ba 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to index +[14bb 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=45493, bytesLength=3460] for tx number:[0] ID: [1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046] to blockNumTranNum index +[14bc 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 78 but got ts: inc_num:1528769653227426900 seq_num:76 +[14bd 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14be 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14bf 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[14c0 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[50747], isChainEmpty=[false], lastBlockNumber=[4] +[14c1 06-12 02:15:12.44 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [4] +[14c2 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[14c3 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[14c4 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[14c6 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [4] +[14c7 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [4] with 1 transaction(s) +[14c8 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to state database +[14c9 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[14ca 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +[14cb 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[14c5 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[14cc 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[14cd 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14ce 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[14cf 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[14d1 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[14d0 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14d4 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[14d3 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[14d5 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14d7 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14d6 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[14d9 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[14da 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[14db 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[14dc 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[14d8 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[14dd 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[14d2 06-12 02:15:12.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[14de 06-12 02:15:12.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 80 but got ts: inc_num:1528769652429776900 seq_num:79 +[14df 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14e2 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14e3 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[14e1 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14e4 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14e5 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[14e6 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 78 but got ts: inc_num:1528769653227426900 seq_num:77 +[14e7 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14e8 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[14e9 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[14ea 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[14eb 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[14ec 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[14ed 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[14ee 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[14ef 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14f0 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[14f1 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14f2 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14f3 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[14f4 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[14f5 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[14f6 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[14f7 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[14f8 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[14f9 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[14fa 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[14fb 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[14e0 06-12 02:15:12.47 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [5] +[14fd 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[14fe 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[14fc 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x5, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] +[1502 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [5] +[1500 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [4] transactions to history database +[1503 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [4] with [1] transactions +[1504 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Skipping history write for invalid transaction number 0 +[1501 06-12 02:15:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1505 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[150a 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1507 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[14ff 06-12 02:15:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[150b 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[150c 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[150d 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[150e 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1509 06-12 02:15:12.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1510 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1508 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [4] +[1511 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[150f 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1514 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1513 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1515 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1516 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1512 06-12 02:15:12.54 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [4] contains transaction id: 1770949c1a7dd1ed69011af43328f483a284daffb3b7ca19539f02f3513a9046 +[1517 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[1518 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[1519 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[151a 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[151b 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[151c 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[151d 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[151e 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[151f 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[1506 06-12 02:15:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1520 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1521 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1522 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1523 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1524 06-12 02:15:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1525 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1526 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1528 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1529 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[152a 06-12 02:15:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\177Ng\325y 6~\241D\236\373\242\257\224\316\251\215" > alive: alive: +[15a2 06-12 02:15:16.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[15a4 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[15a5 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[15a6 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[15a7 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[15a3 06-12 02:15:16.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[15a8 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[15a9 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[15aa 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[15ab 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[15ac 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[15ad 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[15ae 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[15af 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[15b0 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[15b1 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[15b2 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[15b3 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[15b4 06-12 02:15:16.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[15b5 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[15b6 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[15b7 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[15b8 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[15b9 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[15ba 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[15bb 06-12 02:15:16.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[15bc 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" secret_envelope:\002 q\253\221\346\3441b,\204\007O*\2136\270\215\274\326be=*\217\362\204S\032l|\240:\362" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[15be 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[15bf 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[15bd 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[15c0 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[15c1 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes +[15c3 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 271 bytes, Signature: 0 bytes +[15c5 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[15c6 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[15c4 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020T" signature:"0D\002 ~\325\000\312\322@\325\207~\260;\324\374\331j\310IV\022\340\233t\353\336\027\333\275\331[/\\\017\002 PYp\244\346\224\013\224}t4\000\351r\257\356\355\325\003\2247F\2611\335\236\225*\\Z'\213" > > , Envelope: 165 bytes, Signature: 0 bytes +[15c7 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[15c2 06-12 02:15:16.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[15c8 06-12 02:15:16.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[15c9 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[15ca 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[15cb 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +[15cc 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +[15cd 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[15ce 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[15cf 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[15d0 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[15d1 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[15d2 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[15d3 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[15d4 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[15d5 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[15d6 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[15d7 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[15d8 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[15d9 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[15da 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[15db 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[15dc 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[15dd 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[15de 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[15df 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[15e0 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[15e1 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[15e2 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[15e3 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[15e4 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[15e5 06-12 02:15:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[15e6 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[15e7 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[15e8 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[15ea 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[15eb 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[15e9 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[15ec 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[15ed 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[15ee 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[15ef 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[15f0 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[15f1 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[15f2 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[15f3 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[15f4 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[15f5 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[15f6 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[15f7 06-12 02:15:16.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[15f8 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[15f9 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[15fa 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 85 but got ts: inc_num:1528769652429776900 seq_num:84 +[15fb 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[15fc 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[15fd 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[15fe 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 83 but got ts: inc_num:1528769653227426900 seq_num:82 +[15ff 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1600 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1601 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1602 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1603 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1604 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1605 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1606 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1607 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1608 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1609 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[160a 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[160b 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[160c 06-12 02:15:16.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[160d 06-12 02:15:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[160e 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[160f 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1610 06-12 02:15:16.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1611 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1612 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1613 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1614 06-12 02:15:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1615 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1616 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1617 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1618 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[1619 06-12 02:15:16.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[161a 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[161b 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[161c 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[161d 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[161e 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[161f 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1620 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1621 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1622 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1623 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1624 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1625 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1627 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1628 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +[1629 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\312Rh\216\256\007s\243!?d>v\177\r\201v\252~\344\002 >\273\310\341~\006\3112\250{\001\212\271\000\333\337\302\005\376\217k\304n',\001/\267q\r\264\260" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020U" signature:"0D\002 m\337\364\022\333\261\214\244\334\363\000\312\240\3351D,-\007\213^\272xz\231\245\237\203\227\244\232\013\002 <\200,F\023\277\242\n\330\372Y\251\031V\231\340\013\221@\220\177~\360\\\340O\0177\345)CC" > +[162a 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[162b 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1626 06-12 02:15:16.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[162c 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[162d 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[162e 06-12 02:15:16.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[162f 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1630 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1631 06-12 02:15:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1632 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1633 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1634 06-12 02:15:16.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1636 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1637 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1638 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1639 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[163a 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[163b 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[163c 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[163d 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[163e 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[163f 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1640 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1641 06-12 02:15:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1642 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1643 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1644 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1645 06-12 02:15:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1646 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1635 06-12 02:15:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1647 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1648 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1649 06-12 02:15:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[164a 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[164b 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[164c 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[164d 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[164e 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[164f 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1650 06-12 02:15:16.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1651 06-12 02:15:17.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[1652 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1653 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1654 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1655 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1656 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1657 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1658 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1659 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[165a 06-12 02:15:17.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[165b 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[165c 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[165d 06-12 02:15:17.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[165e 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[165f 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[1660 06-12 02:15:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1661 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1662 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1663 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1664 06-12 02:15:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1665 06-12 02:15:17.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1666 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1667 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1668 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1669 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[166a 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[166b 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[166c 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[166d 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[166e 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[166f 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1670 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1671 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[1672 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +[1673 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020W" signature:"0E\002!\000\231q\252\273\3112\177\010\315\346#\226\221w\rs\375z\273\273>\324\007\206\326n\220\200`J\002\341\002 d&\343\303\361\007\221$\221\340\234\276\236\213\346\337[Y\021~n\024\361V\237\024\233a\333\31306" secret_envelope:\317\3002hyQzG" > > +[1674 06-12 02:15:17.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[1675 06-12 02:15:17.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1676 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1677 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1678 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1679 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[167a 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[167b 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[167c 06-12 02:15:17.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[167d 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[167e 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[167f 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1680 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1681 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1682 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1683 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1684 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1685 06-12 02:15:17.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1686 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1688 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1687 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1689 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[168b 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[168e 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[168a 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[168f 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[168c 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1690 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[168d 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1691 06-12 02:15:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1692 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1693 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1694 06-12 02:15:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1695 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1696 06-12 02:15:18.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1697 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1698 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1699 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[169a 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[169b 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[169c 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[169d 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[169e 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[169f 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[16a0 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[16a1 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[16a2 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16a3 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16a4 06-12 02:15:18.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[16a5 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16a6 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16a7 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[16a8 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[16a9 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[16aa 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16ab 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16ac 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16ad 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16ae 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16af 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16b0 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[16b1 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16b2 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16b3 06-12 02:15:18.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[16b4 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16b5 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[16b6 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16b7 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16b8 06-12 02:15:18.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[16b9 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[16ba 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[16bb 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[16bd 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16be 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16bc 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[16c0 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[16bf 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[16c1 06-12 02:15:20.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16c2 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[16c3 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16c4 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[16c5 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16c6 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[16c7 06-12 02:15:20.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16c8 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[16c9 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[16ca 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16cb 06-12 02:15:20.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[16cc 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[16cd 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[16ce 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[16cf 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[16d0 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[16d1 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[16d2 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[16d3 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[16d4 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[16d5 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[16d6 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes to 1 peers +[16d7 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\016L\215\260P\210[\031\000\301\035d\351\347\265}\325wP\321\003\002 <\001\255S[\317\275\016\001\243o\261\303&\246J\026\315S\323A\237a\236\252@H\361\357\2653\005" > alive:\001\231m\r\367WZ\251\237\302\234\316\274\227R\360\363" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020X" signature:"0D\002 Q\3164\224\261]vR\242\327)\361\307?\235'\307]\243\\TPX\312[\031>]\372\215\255\275\002 E)~\313\262\327\332\n\361\362n\206\305cgp*\263\344Hh\227\373\232\310\353\232\037;.\034\016" > +[16d8 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[16d9 06-12 02:15:20.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16da 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[16db 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[16dc 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[16dd 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[16de 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16df 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[16e0 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[16e1 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[16e2 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[16e3 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[16e4 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[16e6 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[16e7 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[16e8 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[16e9 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16e5 06-12 02:15:20.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16ea 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16eb 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[16ec 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[16ed 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[16ee 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16ef 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[16f0 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[16f1 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16f2 06-12 02:15:20.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[16f3 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[16f4 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[16f5 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[16f6 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" secret_envelope: > > , Envelope: 270 bytes, Signature: 0 bytes to 1 peers +[16f7 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[16f9 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[16fa 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes +[16f8 06-12 02:15:20.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 270 bytes, Signature: 0 bytes +[16fb 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16fc 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16fe 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[16ff 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[1700 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1701 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[16fd 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Y" signature:"0D\002 {\022 ^\333\273\242p\272[cQ\274\225\207\2012\025\344\201pL>L\266\270\322\241@\353\363\007\002 7\021<\207\231u\253\246_\274Mh\251\255\301\237\220\305'v\344\260\273\231PZf\010\225\376\020+" > > , Envelope: 165 bytes, Signature: 0 bytes +[1702 06-12 02:15:20.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1703 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[1704 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1705 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[1706 06-12 02:15:20.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1707 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1708 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1709 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[170a 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[170b 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[170c 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[170d 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[170e 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1712 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1713 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[170f 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[1710 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +[1714 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1715 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +[1717 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1718 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[1711 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1716 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1719 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes +[171a 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[171b 06-12 02:15:20.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[171c 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[171d 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[171e 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[171f 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1720 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1721 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1722 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1723 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1724 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1725 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1726 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1727 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1728 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1729 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[172a 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[172b 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[172c 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[172d 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[172e 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[172f 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1730 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 90 but got ts: inc_num:1528769652429776900 seq_num:89 +[1731 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1732 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1733 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1734 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 88 but got ts: inc_num:1528769653227426900 seq_num:87 +[1735 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1736 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1737 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1738 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1739 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[173a 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[173b 06-12 02:15:20.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[173c 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[173d 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[173e 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[173f 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1740 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1741 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1742 06-12 02:15:20.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1743 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1744 06-12 02:15:20.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1745 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1746 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1747 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 1 2] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1748 06-12 02:15:20.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1749 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[174a 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[174b 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[174c 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[174d 06-12 02:15:20.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[174e 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[174f 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1750 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1751 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1752 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1753 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1754 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1755 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1756 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1757 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1758 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1759 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[175a 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[175b 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[175c 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +[175e 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +[175d 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:p\230\254'\316h\025Q(\\c\371\247\375\027&\251\323P\332\356~y\000\347" > alive: alive:^\203'.R\026\252\356i\266\303;\221g\225\016\033\3625k\325\025\361" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020Z" signature:"0E\002!\000\214\003.\261\232c\177\320\375\224\347ele=\336\320$b8)\376#3\325i|[\204|PA\002 q*_P\371\253\362c\327;\361\367\345\251\025dGs4f\305\024\245\350\251\0266\210\226]:[" > +[175f 06-12 02:15:20.53 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1760 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1761 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1762 06-12 02:15:20.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1763 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1764 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1765 06-12 02:15:20.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1766 06-12 02:15:21.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1767 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1768 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1769 06-12 02:15:21.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[176a 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[176c 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[176d 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[176e 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[176f 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1770 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1771 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1772 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1773 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1774 06-12 02:15:21.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1775 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1776 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[1777 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +[1778 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020[" signature:"0D\002 \014\004\016\3123\014\3435\336/\001\374\264\035\342F9\315H4\205\202,\321\332\323\207\236&8\335b\002 \t\251\262\322\330\201\217\307\247\034n\310\222\223F\333\220\003N\"G\224\314\355\231[\371\262q\"6\356" secret_envelope: > +[1779 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[177a 06-12 02:15:21.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[176b 06-12 02:15:21.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[177b 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[177c 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[177d 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[177e 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[177f 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1780 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1781 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1782 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1783 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1784 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1785 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1786 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1787 06-12 02:15:21.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[178a 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1788 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[178b 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1789 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[178c 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[178e 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[178d 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[178f 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1790 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1791 06-12 02:15:21.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1793 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1794 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1792 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1795 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1796 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1797 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1798 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1799 06-12 02:15:21.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[179a 06-12 02:15:22.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[179b 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +[179c 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[179d 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[179f 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[179e 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17a2 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17a1 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17a3 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17a0 06-12 02:15:22.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17a4 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[17a5 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[17a6 06-12 02:15:22.23 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[17a7 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[17a8 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[17a9 06-12 02:15:22.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17aa 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17ab 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17ac 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[17ad 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17ae 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17af 06-12 02:15:22.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17b0 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[17b1 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17b3 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[17b2 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[17b4 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[17b6 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17b5 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[17b7 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[17b8 06-12 02:15:22.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[17b9 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[17ba 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[17bb 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17bd 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[17be 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17bc 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[17c0 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[17c1 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17bf 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17c2 06-12 02:15:22.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[17c3 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17c4 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17c5 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[17c6 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17c7 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17c8 06-12 02:15:22.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17c9 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17ca 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[17cb 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17cc 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17cd 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17ce 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[17cf 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[17d0 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[17d1 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[17d2 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[17d3 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[17d4 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[17d5 06-12 02:15:23.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[17d6 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[17d7 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17d8 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17d9 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[17da 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[17dc 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17dd 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17db 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17df 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17e0 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17de 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[17e1 06-12 02:15:23.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17e2 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17e3 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17e4 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[17e5 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17e6 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[17e7 06-12 02:15:23.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[17e8 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[17e9 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[17ea 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17eb 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[17ed 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17ee 06-12 02:15:24.22 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[17ec 06-12 02:15:24.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[17ef 06-12 02:15:24.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[17f0 06-12 02:15:24.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[17f1 06-12 02:15:24.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17f2 06-12 02:15:24.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[17f3 06-12 02:15:24.24 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[17f4 06-12 02:15:24.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17f5 06-12 02:15:24.24 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[17f6 06-12 02:15:24.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17f7 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[17f8 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[17f9 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[17fa 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[17fb 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[17fc 06-12 02:15:24.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[17fd 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[17fe 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[17ff 06-12 02:15:24.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1800 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1801 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1802 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1803 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1804 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1805 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1806 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1807 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1808 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[1809 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[180a 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020]" signature:"0D\002 6]\337\362\035\345O\260%\007 /\301\240\030\352\302E\231\261(p>J\344\302%\206\321\337\301\"\002 3k1\356\022\351U\336\265S\313N\271\225\217\300\256c\353\363%bi\302\026?fe\036dW\326" > +[180b 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[180c 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[180d 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[180e 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[180f 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1810 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1811 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1812 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1813 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[1814 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1815 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1816 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1818 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1817 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1819 06-12 02:15:24.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[181a 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[181b 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[181c 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[181d 06-12 02:15:24.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[181e 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[181f 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1820 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1821 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[1823 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1822 06-12 02:15:24.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1824 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[1825 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1826 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1828 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 271 bytes, Signature: 0 bytes +[1829 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes +[182a 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[182b 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020^" signature:"0D\002 \016A=\005\331F'\364\237\004\301\036\263l\366\220\017e\331\201\250\017Z\350\275\3659\\\354\240\272J\002 c\343i6N\264=\365\024^*\n\364\257\303\224\233\373\017\376\366\306\272\013f#4\352A\336]\306" > > , Envelope: 165 bytes, Signature: 0 bytes +[182c 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1827 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[182d 06-12 02:15:24.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[182e 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1830 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[182f 06-12 02:15:24.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1831 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1832 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1833 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1834 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1835 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1836 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1837 06-12 02:15:24.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1838 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1839 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[183a 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[183c 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[183d 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +[183b 06-12 02:15:24.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[183e 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1840 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1841 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1842 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[183f 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +[1843 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1845 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1846 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1844 06-12 02:15:24.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1848 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1847 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1849 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[184a 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[184c 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[184d 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[184e 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[184f 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[184b 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1850 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1851 06-12 02:15:24.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1852 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1853 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1854 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1855 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1856 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[1857 06-12 02:15:24.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1858 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1859 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[185a 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[185b 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[185c 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[185e 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[185f 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1860 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1861 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1862 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[185d 06-12 02:15:24.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1863 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1864 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1865 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 95 but got ts: inc_num:1528769652429776900 seq_num:94 +[1866 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1867 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1868 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1869 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 93 but got ts: inc_num:1528769653227426900 seq_num:92 +[186a 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[186b 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[186c 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[186d 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[186e 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[186f 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1870 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1871 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1872 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1873 06-12 02:15:24.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1874 06-12 02:15:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1875 06-12 02:15:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1876 06-12 02:15:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1877 06-12 02:15:24.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1878 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1879 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[187a 06-12 02:15:24.48 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[187b 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[187c 06-12 02:15:24.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[187d 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[187e 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[187f 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1880 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1881 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1882 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1883 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1884 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1885 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1886 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1887 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1888 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1889 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[188a 06-12 02:15:24.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[188b 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[188d 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[188e 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[188c 06-12 02:15:24.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020_" signature:"0E\002!\000\224O\303\370\262\017y\231J\005t,\243\313\325W\3401\312\300\364\000\250\031\205,J\256J\223U\017\002 @\260k\022\3320Q\266\206AA\32138\352\234.\005<\372\361\\\232;\341\2369\271[\246\203\272" > +[188f 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1890 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1891 06-12 02:15:24.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1892 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1893 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1894 06-12 02:15:24.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1895 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1896 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1897 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1898 06-12 02:15:25.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1899 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[189a 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[189b 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[189c 06-12 02:15:25.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[189d 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[189e 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[189f 06-12 02:15:25.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[18a0 06-12 02:15:25.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[18a1 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[18a2 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[18a3 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[18a4 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[18a5 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[18a6 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +[18a8 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[18a9 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18a7 06-12 02:15:25.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020`" signature:"0E\002!\000\341\004\305\005\311\206`E\343\227z\002|l\374\322\322\367\351\250F\r\335u\275\030\032x\272\240\377\227\002 8j\335\230%\253\035\177\316\344O\214\007v\366X\021\3273\266\240\207Q\234s\305\254\364\343\363\033\024" secret_envelope:\236\271N > +[18aa 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18ab 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18ac 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[18ad 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[18ae 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18af 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18b0 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[18b1 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[18b2 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[18b3 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[18b4 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[18b5 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[18b6 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[18b7 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[18b8 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[18b9 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[18ba 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18bc 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18bb 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18bd 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18be 06-12 02:15:26.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[18bf 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[18c1 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18c2 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[18c0 06-12 02:15:26.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18c3 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18c4 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18c5 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[18c6 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[18c7 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18c8 06-12 02:15:26.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[18c9 06-12 02:15:27.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[18ca 06-12 02:15:27.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[18cb 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +[18cc 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[18cd 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[18ce 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[18cf 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[18d1 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18d0 06-12 02:15:27.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[18d2 06-12 02:15:27.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18d3 06-12 02:15:27.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18d4 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[18d5 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[18d6 06-12 02:15:27.24 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[18d7 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[18d8 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[18d9 06-12 02:15:27.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18da 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18db 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18dc 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[18dd 06-12 02:15:27.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[18de 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18df 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18e0 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[18e1 06-12 02:15:27.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[18e2 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[18e3 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[18e4 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[18e5 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[18e6 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[18e7 06-12 02:15:27.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[18e8 06-12 02:15:27.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[18e9 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[18ea 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18eb 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18ec 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18ed 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18ef 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18ee 06-12 02:15:27.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18f0 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[18f1 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[18f2 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18f4 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[18f3 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18f5 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[18f7 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[18f8 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[18f6 06-12 02:15:27.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[18f9 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[18fa 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[18fb 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18fc 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[18fd 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[18fe 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[18ff 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1900 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1902 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1901 06-12 02:15:28.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1903 06-12 02:15:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1904 06-12 02:15:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1905 06-12 02:15:28.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1906 06-12 02:15:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1907 06-12 02:15:28.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1908 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1909 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[190a 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[190b 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[190c 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[190d 06-12 02:15:28.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[190e 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[190f 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1910 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1911 06-12 02:15:28.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1912 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1913 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1914 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1915 06-12 02:15:28.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1916 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[1917 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\321\254}\223\036\353\303\rD~M\212\030\365\272\2159\223B\226\311E\002 \023\362\3330\271*\000\300#~\304+\275\002S\274\027\343\204\312\224?\313\263p\235\266L\315\302\213\344" > alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020b" signature:"0D\002 %\206P\313\363r\326\357\223\r\312\326\303\273B\020\025\344l\273\344\"D\242\371\245B\337_0\222\006\002 D\203\336\3712\022\214\302\236\265:\177Y\030\000g\236i\177\237rM\316\325\267l\274\242CW5\010" > +[1918 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1919 06-12 02:15:28.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[191a 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[191b 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[191c 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[191d 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[191e 06-12 02:15:28.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[191f 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[1920 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1921 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[1922 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1923 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1924 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1925 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1927 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1928 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1926 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1929 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[192a 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[192c 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[192d 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[192e 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[192b 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[192f 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1930 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1931 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1932 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1933 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1934 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1935 06-12 02:15:28.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1936 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1937 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[1938 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1939 06-12 02:15:28.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[193a 06-12 02:15:28.34 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" secret_envelope:\332[\010\226\3673\342\005\022\353\341\343\253\255\0372\336*\351\246\214{\036\024\240\2320\004\001\010\034\002 X(\311*\362@\350\333\210\315]\377\222\260\356\016\217\031N\241O\274\324\275g}\220\276 :\260\024" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[193b 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[193c 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[193d 06-12 02:15:28.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes +[193e 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[193f 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 271 bytes, Signature: 0 bytes +[1940 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1941 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020c" signature:"0E\002!\000\351M\200\205\253^\376\252\001\027\2022KX,,!5C\2768X\272\2338\030\256\354\274\0373\032\002 \024\306N\224\250\235\017\033s\351\333\005]i@\226%\273\357\272Z\005\310\321x\177\332\330\326[\000s" > > , Envelope: 166 bytes, Signature: 0 bytes +[1945 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1942 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1946 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1943 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1944 06-12 02:15:28.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1947 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1949 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[194a 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[194b 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[194c 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[194d 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[194e 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[194f 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1950 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1951 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1952 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1948 06-12 02:15:28.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1953 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1954 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1955 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1956 06-12 02:15:28.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1957 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1958 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1959 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[195a 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[195b 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[195c 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[195d 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[195e 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[195f 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1960 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1961 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +[1962 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 46 bytes, Signature: 0 bytes +[1963 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1964 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1965 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1966 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1967 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1968 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1969 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[196a 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[196b 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[196c 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[196d 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[196e 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[196f 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1970 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1971 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1972 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1973 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1974 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1975 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1976 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1977 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1978 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1979 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[197a 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[197b 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[197c 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[197d 06-12 02:15:28.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[197e 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[197f 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1980 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1981 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1982 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1983 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1984 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1985 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1986 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1988 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1987 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1989 06-12 02:15:28.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[198a 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[198b 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 99 but got ts: inc_num:1528769651824440500 seq_num:98 +[198c 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[198d 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[198e 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[198f 06-12 02:15:28.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1990 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1991 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1992 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1993 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1994 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1995 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1996 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1997 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1998 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1999 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[199a 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[199b 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[199c 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 1] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[199d 06-12 02:15:28.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[199e 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[199f 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19a0 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[19a1 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[19a2 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[19a3 06-12 02:15:28.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[19a4 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[19a5 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[19a6 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[19a7 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[19a8 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[19a9 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[19aa 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[19ab 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[19ac 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[19ad 06-12 02:15:28.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[19ae 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[19af 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[19b0 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[19b1 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[19b2 06-12 02:15:28.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19b3 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[19b4 06-12 02:15:28.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[19b5 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19b6 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[19b7 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19b8 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[19b9 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[19ba 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[19bb 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[19bc 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[19bd 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[19be 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[19bf 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[19c0 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[19c1 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[19c2 06-12 02:15:28.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020d" signature:"0E\002!\000\271\310\313\027\334\030u#\301M_\023W\007\005j\320\307\321\242\2573}\250>c,\010\265J\213\332\002 #\304\265\353,\346\275z\357\270E+\347\333;\360F\334\347\256q\303\204K\r\211\025:Z\340\262\376" > +[19c3 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[19c4 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[19c5 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[19c6 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[19c7 06-12 02:15:28.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19c8 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[19c9 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[19ca 06-12 02:15:28.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19cb 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[19cc 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[19cd 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[19ce 06-12 02:15:29.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19cf 06-12 02:15:29.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[19d0 06-12 02:15:29.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19d1 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[19d2 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[19d3 06-12 02:15:29.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[19d4 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[19d5 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[19d6 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[19d7 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[19d8 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[19d9 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[19da 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[19db 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[19dc 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +[19dd 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020e" signature:"0E\002!\000\277fQx\tMP\200.\274\224V\337w\365\032\265\375\353O\224_\311>\307NN\225\266\330\006\004\002 J\036\032\3535\022\371\301\373g\024\024\"\303\251\206\356z\037\301B\304 \326&p\221\210\207\313\177\276" secret_envelope: > +[19de 06-12 02:15:29.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[19df 06-12 02:15:29.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[19e0 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19e1 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19e2 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[19e3 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19e5 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19e6 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[19e4 06-12 02:15:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19e7 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19e8 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[19e9 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[19ea 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[19eb 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[19ec 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[19ed 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[19ee 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[19ef 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[19f1 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19f0 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19f2 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[19f3 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19f4 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19f5 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[19f6 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[19f7 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19f8 06-12 02:15:31.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[19f9 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[19fb 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[19fa 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19fc 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[19fd 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[19fe 06-12 02:15:31.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[19ff 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a00 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a01 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1a02 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a03 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a04 06-12 02:15:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1a05 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[1a06 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1a07 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1a08 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a09 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a0a 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1a0b 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a0c 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1a0d 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1a0e 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a0f 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1a10 06-12 02:15:32.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a11 06-12 02:15:32.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1a12 06-12 02:15:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1a13 06-12 02:15:32.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a14 06-12 02:15:32.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[1a15 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1a16 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1a17 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1a18 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1a19 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a1a 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1a1b 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a1c 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1a1d 06-12 02:15:32.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a1e 06-12 02:15:32.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[1a1f 06-12 02:15:32.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[1a20 06-12 02:15:32.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[1a21 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[1a22 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[1a23 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a24 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1a25 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1a26 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a27 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1a28 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1a29 06-12 02:15:32.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1a2a 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1a2b 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1a2c 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1a2d 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1a2e 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1a2f 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a30 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1a31 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1a32 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[1a33 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020g" signature:"0D\002 P\303\370?}1\272\321v\240\200\277\356\344\303\2335CX\350\313\353\001\232\231\267\263\225;L\315\321\002 6\221\214\007n\262u3\032\024\306\355\270\230\331q\305\361\200\010\366\231\222\252\233\nv\273\304\356\242\300" > +[1a34 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1a35 06-12 02:15:32.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a36 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[1a37 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1a38 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[1a3a 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1a3b 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1a3d 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1a39 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1a3f 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a3c 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1a40 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a3e 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1a43 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a41 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1a42 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1a44 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1a45 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a46 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1a47 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1a48 06-12 02:15:32.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a49 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1a4a 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1a4b 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1a4c 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[1a4d 06-12 02:15:32.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a4e 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1a4f 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[1a50 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1a51 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a52 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +[1a53 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +[1a54 06-12 02:15:32.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a55 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1a56 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1a57 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1a58 06-12 02:15:32.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a59 06-12 02:15:32.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1a5a 06-12 02:15:32.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1a5b 06-12 02:15:32.35 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1a5c 06-12 02:15:32.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +[1a5d 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a5e 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +[1a5f 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a60 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020h" signature:"0D\002 M'\013\331\350c\337t\256\205\035\261\010\034\227r\003\333*\302%3\322\3056\353\354\032\332F\265H\002 %\254m\357\324\007o\031|Lo\354\000\260\203r\225\2641\021\260\350\241\234e&\232\354\262O\337\203" > > , Envelope: 165 bytes, Signature: 0 bytes +[1a61 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1a62 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1a63 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1a64 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a65 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1a66 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a67 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1a68 06-12 02:15:32.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1a69 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1a6a 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a6b 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1a6c 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1a6d 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +[1a6e 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a6f 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a70 06-12 02:15:32.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1a71 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a72 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a73 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a74 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1a75 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1a76 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1a77 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1a78 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1a79 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1a7a 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a7b 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1a7c 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes +[1a7d 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a7e 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1a7f 06-12 02:15:32.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1a80 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a81 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1a82 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a83 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a84 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1a85 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1a86 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[1a87 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1a88 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1a89 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1a8a 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1a8b 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a8c 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1a8d 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1a8e 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1a8f 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1a90 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1a91 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 102 but got ts: inc_num:1528769653227426900 seq_num:101 +[1a92 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a93 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a94 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1a95 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a96 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a97 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1a98 06-12 02:15:32.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1a99 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 104 but got ts: inc_num:1528769652429776900 seq_num:103 +[1a9a 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1a9b 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1a9c 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1a9d 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1a9e 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1a9f 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1aa0 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1aa1 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1aa2 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1aa3 06-12 02:15:32.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1aa4 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1aa5 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1aa6 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1aa7 06-12 02:15:32.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1aa8 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1aa9 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1aaa 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1aab 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1aac 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1aad 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1aae 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1aaf 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1ab0 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1ab1 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1ab2 06-12 02:15:32.47 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1ab3 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1ab4 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ab5 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ab6 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1ab7 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1ab8 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1ab9 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1aba 06-12 02:15:32.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1abb 06-12 02:15:32.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1abc 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1abd 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1abe 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1abf 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1ac0 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ac1 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1ac2 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1ac3 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1ac4 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[1ac5 06-12 02:15:32.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ac6 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1ac7 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1ac8 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1ac9 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1aca 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1acb 06-12 02:15:32.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1acc 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1acd 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1ace 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1acf 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1ad0 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ad1 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1ad2 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1ad3 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1ad4 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1ad5 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1ad6 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1ad7 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ad8 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ad9 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1ada 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[1adc 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1add 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1adb 06-12 02:15:32.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\023\002 y\374@\350h\243\270\303B\351\340\376\203\200\266\253`3h\006\203t\004c\013\330o\344\364Xg\226" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020i" signature:"0E\002!\000\365\375\237\371\321G\271\207\2714\233\005{u}\3229\222\"\245\333\317\301\037)\344\314}t\265x\325\002 r\2543\347\212\264\250\311A\000|\232\363\303\275\277\373/3\365\223\247\221aJ\022\324\377\335uj\350" > +[1ade 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1adf 06-12 02:15:32.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1ae0 06-12 02:15:32.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ae1 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1ae2 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1ae3 06-12 02:15:32.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ae4 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1ae5 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1ae6 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1ae7 06-12 02:15:33.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ae8 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ae9 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1aeb 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1aec 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1aed 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1aee 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1aef 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1af0 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1af1 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1af2 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1af3 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1af4 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1aea 06-12 02:15:33.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1af5 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1af6 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1af7 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1af8 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1af9 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1afa 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1afb 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1afc 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1afd 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1afe 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1aff 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1b00 06-12 02:15:33.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b01 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1b02 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b03 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1b04 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1b05 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1b06 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1b07 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1b08 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1b09 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1b0a 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1b0b 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1b0c 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1b0d 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[1b0e 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +[1b0f 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020j" signature:"0E\002!\000\351\256/Q\220\000\234\000\004\253\022o\024\"\007D\326\223\261\354\200BG8\3637\372\350\273\211n\337\002 \002}7\225\376\260y\217\374\002\034,rR[z\0374\355k6\002v\337m/\245'~\353\017q" secret_envelope: > +[1b10 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[1b11 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b12 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1b13 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1b14 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1b15 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b16 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1b17 06-12 02:15:33.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1b18 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1b19 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1b1a 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b1b 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1b1c 06-12 02:15:33.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1b1d 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44264 +[1b1e 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc428665350 +[1b1f 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1b20 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[1b21 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[1b22 06-12 02:15:34.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[1b23 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[1b24 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc428577c20, header 0xc4286656b0 +[1b25 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[1b26 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][40ed21f2] processing txid: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad +[1b27 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +[1b28 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +[1b29 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[1b2a 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +[1b2b 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][40ed21f2] Entry chaincode: name:"exp02" +[1b2c 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad,syscc=true,proposal=0xc428577c20,canname=lscc:1.2.0) +[1b2d 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[1b2e 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +[1b2f 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40ed21f2]Received message TRANSACTION from peer +[1b30 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40ed21f2] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[1b31 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [40ed21f2] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[1b32 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +[1b33 06-12 02:15:34.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40ed21f2] Sending GET_STATE +[1b34 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[1b35 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling GET_STATE from chaincode +[1b36 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [40ed21f2] getting state for chaincode lscc, key exp02, channel businesschannel +[1b37 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[1b38 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed GET_STATE. Sending RESPONSE +[1b39 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40ed21f2]Received message RESPONSE from peer +[1b3a 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [40ed21f2] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[1b3b 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [40ed21f2] before send +[1b3c 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [40ed21f2] after send +[1b3e 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [40ed21f2] GetState received payload RESPONSE +[1b3f 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [40ed21f2] Transaction completed. Sending COMPLETED +[1b40 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [40ed21f2] send state message COMPLETED +[1b41 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[1b42 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [40ed21f2] notifying Txid:40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, channelID:businesschannel +[1b43 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +[1b44 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[1b45 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] Entry chaincode: name:"exp02" version: 1.0 +[1b46 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad,syscc=false,proposal=0xc428577c20,canname=exp02:1.0) +[1b47 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +[1b48 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[1b49 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[1b4a 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling GET_STATE from chaincode +[1b4b 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [40ed21f2] getting state for chaincode exp02, key a, channel businesschannel +[1b4c 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +[1b3d 06-12 02:15:34.83 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [40ed21f2] Received RESPONSE, communicated (state:ready) +[1b4d 06-12 02:15:34.84 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed GET_STATE. Sending RESPONSE +[1b4e 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[1b4f 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling GET_STATE from chaincode +[1b50 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [40ed21f2] getting state for chaincode exp02, key b, channel businesschannel +[1b51 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=b +[1b52 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed GET_STATE. Sending RESPONSE +[1b53 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +[1b54 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling PUT_STATE from chaincode +[1b55 06-12 02:15:34.85 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed PUT_STATE. Sending RESPONSE +[1b56 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: PUT_STATE in state ready +[1b57 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] handling PUT_STATE from chaincode +[1b58 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [40ed21f2] Completed PUT_STATE. Sending RESPONSE +[1b59 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [40ed21f2] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[1b5a 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [40ed21f2] notifying Txid:40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, channelID:businesschannel +[1b5b 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[1b5c 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] Exit +[1b5d 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[1b5e 06-12 02:15:34.86 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +[1b5f 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][40ed21f2] Exit +[1b60 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][40ed21f2] Entry chaincode: name:"exp02" +[1b61 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][40ed21f2] escc for chaincode name:"exp02" is escc +[1b62 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, chaincode: exp02} +[1b63 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, chaincode: exp02} +[1b64 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][40ed21f2] Exit +[1b65 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +[1b66 06-12 02:15:34.87 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44264 +[1b67 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[1b68 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1b6b 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b69 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1b6a 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1b6c 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b6d 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1b6e 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b6f 06-12 02:15:36.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1b70 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b72 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1b71 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1b73 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b74 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1b75 06-12 02:15:36.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b76 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1b77 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1b78 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b79 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1b7a 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1b7b 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1b7c 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1b7d 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1b7e 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1b7f 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1b80 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1b81 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1b82 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1b83 06-12 02:15:36.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1b84 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers +[1b85 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020k" signature:"0D\002 h\017O3V\374B\302\360\316v\374J\037\260\036\372\232\275}M\"\237\371a\024\037|;j\214\334\002 \004z?\313\\\212\354\270\311\374\232p\361c\256\234Z\236\030?\207\254\357\177H\363\202\333v\354i/" > +[1b86 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1b87 06-12 02:15:36.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b88 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[1b89 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1b8a 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[1b8b 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1b8c 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1b8d 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1b8e 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1b8f 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1b91 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1b93 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b90 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b92 06-12 02:15:36.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1b94 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1b95 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1b97 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b96 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1b98 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1b99 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1b9a 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b9b 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1b9c 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1b9d 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1b9e 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1b9f 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1ba0 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1ba1 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1ba2 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[1ba3 06-12 02:15:36.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ba4 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1ba5 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[1ba6 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1ba7 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1ba8 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +[1ba9 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 45 bytes, Signature: 0 bytes +[1baa 06-12 02:15:36.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1bab 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1bad 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1bac 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +[1baf 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1bae 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1bb0 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +[1bb1 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1bb2 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020l" signature:"0D\002 6V\230m\206\177\005#\014\324\266\355\351\021\310\346a\255\236\005\206@\033c:P\327\370\322(+\216\002 >'\212'\250\266\032\3717(\367d\\bRG\332\253\217\252\271\336\362\036\005\262Z;\263\205\270\341" > > , Envelope: 165 bytes, Signature: 0 bytes +[1bb3 06-12 02:15:36.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1bb4 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1bb5 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1bb6 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1bb7 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1bb8 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1bb9 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1bba 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1bbb 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1bbc 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1bbd 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1bbe 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1bbf 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1bc0 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1bc1 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1bc2 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1bc3 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1bc4 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1bc5 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1bc6 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1bc7 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1bc8 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1bc9 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1bca 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1bcb 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1bcc 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1bcd 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1bce 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1bcf 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1bd1 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1bd0 06-12 02:15:36.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1bd3 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1bd4 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1bd2 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1bd5 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1bd6 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1bd7 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1bd8 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1bd9 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1bdb 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1bda 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1bdc 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1bdd 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1bde 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1bdf 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1be0 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1be1 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 106 but got ts: inc_num:1528769653227426900 seq_num:105 +[1be2 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1be3 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1be4 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1be5 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 108 but got ts: inc_num:1528769651824440500 seq_num:107 +[1be6 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1be7 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1be8 06-12 02:15:36.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1be9 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[1bea 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1beb 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1bec 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1bed 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1bee 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1bef 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1bf0 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1bf1 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[1bf2 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1bf3 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1bf4 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1bf5 06-12 02:15:36.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1bf6 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1bf7 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1bf8 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1bf9 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[1bfa 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1bfb 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1bfc 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1bfd 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1bfe 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1bff 06-12 02:15:36.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1c00 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1c01 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1c02 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1c03 06-12 02:15:36.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1c04 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1c05 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1c06 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1c07 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[1c08 06-12 02:15:36.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1c09 06-12 02:15:36.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1c0a 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1c0c 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1c0d 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1c0e 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1c0f 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1c10 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1c11 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1c12 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1c13 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1c14 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1c15 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1c16 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1c17 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[1c18 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\002;\210q\245\323l:\246\324\207\261u\333Xr[\270\363\007v\201\002 \001\003Sc\r\224[\377\033x\017\204\365\0260O\311\345\250\246<\304\r\237\337!\331?\316\333\342/" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020m" signature:"0D\002 \022\013\014R\000/\366J\236S\375\320s\002\303\321\032\345(\222\034\216\030{\030\274\310j\222\333\265\\\002 _1\016m\227#S\3432\261\336\275/s\274C\212w\340p\340\337\254\342\277.N\320\0303\205O" > +[1c19 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1c1a 06-12 02:15:36.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1c0b 06-12 02:15:36.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1c1b 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1c1c 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1c1d 06-12 02:15:36.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1c1e 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1c1f 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1c20 06-12 02:15:36.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1c21 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1c22 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1c23 06-12 02:15:36.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1c24 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c25 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c26 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1c27 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1c28 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c29 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c2a 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1c2b 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1c2c 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1c2d 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1c2e 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1c2f 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1c30 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1c31 06-12 02:15:36.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1c32 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1c33 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1c34 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c36 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1c35 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c37 06-12 02:15:36.86 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1c38 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c39 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c3a 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1c3b 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1c3c 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1c3d 06-12 02:15:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1c3e 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [5], peers number [3] +[1c3f 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [5], peers number [3] +[1c40 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[1c41 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[1c42 06-12 02:15:36.90 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4289154a0 env 0xc428845f80 txn 0 +[1c43 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc428845f80 +[1c44 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +[1c45 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[1c46 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +[1c47 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[1c49 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +[1c48 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes to 1 peers +[1c4a 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4797 bytes, seq: 5}, Envelope: 4827 bytes, Signature: 0 bytes +[1c4b 06-12 02:15:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1c4c 06-12 02:15:36.92 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +[1c4d 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc4286b9800, header channel_header:"\010\003\032\014\010\306\331\374\330\005\020\200\303\367\205\003\"\017businesschannel*@40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQR8yJgXsAEDJLfogv6vivhDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDDBZBZG1pbkBvcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEfx098oJnXlvo743q1s5n/AzZ2qDXarxI\nr0idyhMtljpW9hYtMSPeje5ZdFNVJZY8Bzo66PvModX8v2G4gVcopqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhAJX2opN0\n2NyxThgANgSWtxXpHjY+3pwsG/Tf/lfmbeLRAiB6w5xG3T/wSb+Ko21qWAlst1pH\n3BDFnYuSFYhOCexVkA==\n-----END CERTIFICATE-----\n\022\030\326\203\004B\337\240{\330c\023\302'\\\275\211\230\342O\nenKu\225" +[1c4e 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[1c4f 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[1c50 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[1c51 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +[1c52 06-12 02:15:36.93 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] +[1c53 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[1c54 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc42238b400 +[1c55 06-12 02:15:36.94 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [56918186-005c-41f9-86a3-d81225acf1e4] +[1c56 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[1c57 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [56918186-005c-41f9-86a3-d81225acf1e4] +[1c58 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad, seq 0 out of 1 in block 5 for channel businesschannel with validation plugin vscc with plugin +[1c59 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[1c5a 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 5, namespace: exp02, tx 0 validation results is: +[1c5b 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad appears to be valid +[1c5c 06-12 02:15:36.95 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc42238b400 +[1c5d 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4289154a0 env 0xc428845f80 txn 0 +[1c5e 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[1c5f 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[1c60 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [5] +[1c61 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[1c62 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [5] +[1c63 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[1c64 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[1c65 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +[1c66 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[1c67 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +[1c68 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[1c69 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[1c6a 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[1c6b 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [5] Transaction index [0] TxId [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] marked as valid by state validator +[1c6c 06-12 02:15:36.96 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[1c6d 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[1c6e 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[1c6f 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] to storage +[1c70 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [5] +[1c71 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=5, blockHash=[]byte{0xda, 0xe3, 0x9f, 0x6f, 0xc0, 0x2e, 0x93, 0x8e, 0x90, 0xdd, 0xb5, 0x7a, 0xe0, 0x7e, 0xe4, 0x67, 0xd8, 0x63, 0xcf, 0x55, 0x28, 0x99, 0x61, 0x9, 0xe7, 0xbc, 0x78, 0x2a, 0x92, 0xa3, 0xa1, 0x77} txOffsets= +txId=40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad locPointer=offset=70, bytesLength=2921 ] -[1b5a 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to index -[1b5b 05-31 05:22:58.55 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50813, bytesLength=2922] for tx number:[0] ID: [8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4] to blockNumTranNum index -[1b5c 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55530], isChainEmpty=[false], lastBlockNumber=[5] -[1b5d 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] -[1b5e 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] -[1b5f 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) -[1b60 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database -[1b61 05-31 05:22:58.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[1b62 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[1b63 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[1b64 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[1b65 05-31 05:22:58.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[1b66 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] -[1b67 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database -[1b68 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions -[1b69 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] -[1b6a 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[1b6b 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 8d3e6e51136d97b22471c4c257722dbdfcf9ba1d723fcc85cb5278037b4a85b4 -[1b6c 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[1b6d 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[1b6e 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[1b6f 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[1b70 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[1b71 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[1b72 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[1b73 05-31 05:22:58.58 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[1b74 05-31 05:22:58.59 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[1b75 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1b76 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1b77 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1b78 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[1b79 05-31 05:22:58.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1b7a 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1b7b 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1b7c 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1b7d 05-31 05:22:58.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1b7e 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1b7f 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1b80 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1b81 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1b82 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1b83 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1b84 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1b85 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1b86 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1b87 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[1b88 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[1b89 05-31 05:22:58.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020p" signature:"0D\002 P\235y!\215?o\373@\t\272\220\225\262\210\234\231\037 \010\t{\\\356Hh\203\016\326\347\202\314\002 V\016\006\353\207=\241\214=!\020\314\306\221\261X\362Gn\\\214\232Z\013)h\272\3539\037\341\361" > -[1b8a 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1b8b 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b8c 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[1b8d 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1b8e 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b8f 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1b90 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b91 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1b92 05-31 05:22:58.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b93 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[1b94 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -[1b95 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1b96 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b97 05-31 05:22:58.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1b98 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b99 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1b9a 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1b9b 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1b9c 05-31 05:22:58.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1b9d 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[1b9e 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1b9f 05-31 05:22:58.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1ba0 05-31 05:22:58.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ba1 05-31 05:22:58.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[1ba2 05-31 05:22:58.97 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[1ba3 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1ba4 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ba5 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1ba6 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1ba7 05-31 05:22:58.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ba8 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1ba9 05-31 05:22:59.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1baa 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1bab 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1bac 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [2 3 4 5 1] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1bad 05-31 05:22:59.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bae 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1baf 05-31 05:22:59.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bb0 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[1bb1 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bb2 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[1bb3 05-31 05:22:59.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[1bb4 05-31 05:22:59.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bb5 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1bb6 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1bb7 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1bb8 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bb9 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[1bba 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bbb 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[1bbc 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1bbd 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1bbe 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1bbf 05-31 05:22:59.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1bc0 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1bc1 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1bc2 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1bc3 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1bc4 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1bc5 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1bc6 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -[1bc7 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020q" signature:"0E\002!\000\257\304f\260\033Tu\224\303%c\311*U\213\263\304'\"\006`\235\221\001\231.\243xSJ\013\220\002 \030\352\342\002\347\202\370X\341C\245\315\224\334u\201,\344\331h\004\343\266\211\267(\324\2603\302\252\207" secret_envelope: > -[1bc8 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -[1bc9 05-31 05:22:59.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1bca 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1bcb 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1bcc 05-31 05:22:59.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bcd 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1bce 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[1bcf 05-31 05:22:59.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bd0 05-31 05:22:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[1bd1 05-31 05:22:59.69 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1bd2 05-31 05:22:59.69 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1bd3 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1bd4 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[1bd6 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1bd5 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1bd7 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1bd8 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1bd9 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1bda 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1bdb 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1bdd 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1bdc 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1bde 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bdf 05-31 05:22:59.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1be0 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1be1 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1be2 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1be3 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1be4 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1be5 05-31 05:22:59.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1be6 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1be7 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1be8 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1be9 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -[1bea 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1beb 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -[1bec 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1bed 05-31 05:22:59.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020r" signature:"0D\002 \024\2059\262\235z?Q\351\263\320(r2\353\321\323_M~\221%\226\366\301J\260s\357D6.\002 \001\260\331\255\356~\351\tM\346\033\264-rP\310\273-9\312\364\240\366(\262=\t\242{6\365\237" > > , Envelope: 165 bytes, Signature: 0 bytes -[1bee 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1bef 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1bf0 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1bf1 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1bf2 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1bf3 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1bf4 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1bf5 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1bf6 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1bf7 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1bf8 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1bf9 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1bfa 05-31 05:22:59.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1bfb 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1bfc 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1bfd 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1bfe 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1bff 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c00 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1c01 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c03 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1c02 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c04 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1c05 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1c06 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1c07 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1c08 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1c09 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1c0a 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c0b 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c0c 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1c0d 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c0f 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[1c0e 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c10 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1c11 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 113 but got ts: inc_num:1527744090808810100 seq_num:111 -[1c12 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c13 05-31 05:22:59.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c14 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1c15 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c16 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c17 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c18 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1c19 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c1a 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c1b 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1c1c 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1c1d 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1c1e 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1c1f 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1c20 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1c21 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c22 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c23 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[1c24 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c25 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c26 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1c27 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c28 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c29 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1c2a 05-31 05:22:59.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1c2b 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1c2c 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1c2d 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1c2e 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[1c2f 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1c30 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c31 05-31 05:22:59.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c32 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1c33 05-31 05:22:59.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1c34 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1c35 05-31 05:22:59.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c36 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1c37 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c38 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1c39 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c3a 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1c3b 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1c3c 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1c3d 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1c3e 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1c3f 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1c40 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c41 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c42 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[1c43 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes to 1 peers -[1c44 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020s" signature:"0E\002!\000\356b\227\337\224z;\305}\3017!9\357\243N\322\007wd\303\274\246\244\236L \255\242\034\3773\002 ,\331F\302\233L\272&\347+\267\231)\321\2338\216\274%\265\301 +\215\000\212\257(:k\265\304" > -[1c45 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1c46 05-31 05:22:59.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1c47 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c48 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c49 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1c4a 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c4b 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c4c 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c4d 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1c4e 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1c4f 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1c50 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1c51 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1c52 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1c53 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c54 05-31 05:23:00.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c55 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1c56 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1c57 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c58 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c59 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1c5a 05-31 05:23:00.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1c5b 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c5c 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1c5d 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c5e 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c5f 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c60 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c61 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1c62 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c63 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c64 05-31 05:23:00.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c65 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[1c66 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c67 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[1c68 05-31 05:23:00.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[1c69 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c6a 05-31 05:23:01.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1c6b 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c6c 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c6d 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c6e 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1c6f 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1c70 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1c71 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1c72 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1c73 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1c74 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c75 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c76 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c77 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c78 05-31 05:23:01.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1c79 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c7a 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c7b 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c7c 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1c7d 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1c7f 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c7e 05-31 05:23:01.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c80 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1c81 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1c82 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c83 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1c84 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c85 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1c86 05-31 05:23:01.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c87 05-31 05:23:01.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[1c88 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1c89 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1c8a 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c8b 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1c8c 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1c8d 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c8f 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1c8e 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c90 05-31 05:23:01.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1c91 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c92 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1c93 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1c94 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c95 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1c96 05-31 05:23:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1c97 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1c98 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1c99 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1c9a 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1c9b 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1c9c 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1c9d 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1c9e 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1c9f 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1ca0 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ca2 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ca1 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ca3 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ca4 05-31 05:23:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ca5 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ca6 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1ca7 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ca8 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ca9 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1caa 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1cab 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1cac 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1cad 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1cae 05-31 05:23:01.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1caf 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1cb0 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1cb1 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1cb2 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[1cb3 05-31 05:23:02.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1cb4 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -[1cb5 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -[1cb7 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1cb6 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > > , Envelope: 165 bytes, Signature: 0 bytes -[1cb8 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1cb9 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1cba 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1cbb 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1cbc 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1cbd 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1cbe 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1cbf 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1cc0 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1cc1 05-31 05:23:02.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[1cc2 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers -[1cc4 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1cc3 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2077g\210\374\362\373\262\001w\021i\261\230\221\345[&\"=\241" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020u" signature:"0D\002 u\003\034o\013\023\253s\365\340\310W\231\375\227~5\321~\214\275\003\212[\316\255f2\345 $\311\002 ST\372{\301\210)L\032\262\346>2)\276\270\004\256ou\025m\206\030d\257\302\030\321\332\237\334" > -[1cc5 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1cc6 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[1cc8 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1cc7 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1cc9 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1cca 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1ccb 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ccc 05-31 05:23:02.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ccd 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1cce 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ccf 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1cd0 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1cd1 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1cd2 05-31 05:23:02.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1cd3 05-31 05:23:02.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1cd4 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[1cd5 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[1cd6 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1cd7 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1cd8 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1cd9 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1cda 05-31 05:23:02.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1cdb 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1cdc 05-31 05:23:03.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1cdd 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1cde 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1cdf 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1ce0 05-31 05:23:03.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ce1 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1ce2 05-31 05:23:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ce3 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1ce4 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1ce5 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1ce6 05-31 05:23:03.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ce7 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[1ce8 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ce9 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes -[1cea 05-31 05:23:03.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1ceb 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1cec 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1ced 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1cee 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1cef 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1cf0 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1cf1 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1cf2 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1cf3 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1cf4 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[1cf6 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[1cf7 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1cf8 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1cf9 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1cfa 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1cf5 05-31 05:23:03.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\002 c\365\207X\337y\003\214k\311|\302xs\362\"\270\267p\330Y\023\\r\323\274O\230x\342Yv" secret_envelope: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020v" signature:"0D\002 0.u\336\325G\274\334/h:\346\326t\363n\252}_\371\225\213\344\320\261\007\021\276\271\310\306\272\002 SK\266\276x\323+\274\371\264\217\032\311;k\"\304?f\362]\212\326\352\202a$C\364\315\005\033" secret_envelope: > -[1cfb 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[1cfc 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1cfd 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1cfe 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1cff 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1d00 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[1d01 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1d03 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1d04 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1d05 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d06 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d02 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d07 05-31 05:23:03.70 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1d08 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1d09 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1d0a 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d0b 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1d0c 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1d0d 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d0e 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1d0f 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1d10 05-31 05:23:03.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d11 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1d12 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1d13 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -[1d14 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1d15 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d16 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -[1d17 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d18 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020w" signature:"0D\002 \035\320\360\033\327\226\306|uk\3207\220\307\221\025\247\207\241\014\\\243?\340s\376\221\305=\273\246\233\002 \005soE\317s\315\374\312\354.\204MhA%\367r}\3638\227\367H,\231\202\240\245\307^!" > > , Envelope: 165 bytes, Signature: 0 bytes -[1d19 05-31 05:23:03.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d1a 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1d1b 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1d1c 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d1e 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1d1d 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes -[1d1f 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d20 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1d21 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1d22 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1d23 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1d24 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1d25 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1d26 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d27 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d28 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1d29 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d2a 05-31 05:23:03.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d2b 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d2c 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1d2d 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d2e 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d2f 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1d30 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1d31 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1d32 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1d33 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1d34 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1d35 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d36 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1d38 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d37 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1d39 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[1d3a 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d3b 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1d3c 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d3d 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d3e 05-31 05:23:03.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1d3f 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 118 but got ts: inc_num:1527744090808810100 seq_num:116 -[1d40 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d41 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d42 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1d43 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d44 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d45 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d46 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1d47 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1d48 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1d49 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1d4a 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1d4b 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1d4c 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d4d 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1d4e 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[1d4f 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d50 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1d51 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d52 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d53 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d54 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[1d55 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1d56 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[1d57 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1d58 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1d59 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[1d5a 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1d5b 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d5c 05-31 05:23:03.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1d5d 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1d5e 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1d5f 05-31 05:23:03.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1d60 05-31 05:23:03.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d61 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1d62 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d63 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1d64 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d65 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1d66 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1d67 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1d68 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1d69 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1d6a 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1d6b 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d6c 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1d6d 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[1d6e 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -[1d6f 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:>\321\016\216c\256\273\357~\244\344:\301E3\317\255" > alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020x" signature:"0E\002!\000\241\306`4\2510\027\330\243t\342\370\317\221\315\027\336}\373$\325 \235\311_v0i\206\221\313\257\002 Xq,\257[\356\367\327\322Vn\330xq\214\266\361\370\241\002\023EK\2573f\376\306\024\361C\036" > -[1d70 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[1d71 05-31 05:23:03.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d72 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d73 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d74 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1d75 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d76 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d77 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d78 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1d79 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1d7a 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1d7b 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1d7c 05-31 05:23:05.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1d7d 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1d7e 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1d7f 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1d80 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1d81 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1d82 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d83 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d84 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d85 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d86 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1d87 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1d88 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d89 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d8a 05-31 05:23:05.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1d8b 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d8c 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1d8d 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d8e 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1d8f 05-31 05:23:05.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1d90 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[1d91 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[1d92 05-31 05:23:05.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[1d93 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[1d94 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d95 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[1d96 05-31 05:23:06.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[1d97 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d98 05-31 05:23:06.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1d99 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1d9a 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d9b 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1d9c 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1d9d 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1d9e 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1d9f 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1da0 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1da1 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1da2 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1da3 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1da4 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1da5 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1da6 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1da7 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1da8 05-31 05:23:06.59 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1da9 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1daa 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1dab 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1dac 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1dad 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1daf 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1db0 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1dae 05-31 05:23:06.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1db1 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1db2 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1db4 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1db3 05-31 05:23:06.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1db5 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[1db6 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers -[1db7 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1db8 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers -[1db9 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1dba 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1dbb 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1dbd 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1dbc 05-31 05:23:06.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1dbe 05-31 05:23:06.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1dbf 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1dc0 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1dc1 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1dc2 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[1dc3 05-31 05:23:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1dc4 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1dc5 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1dc6 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1dc7 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1dc8 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1dc9 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1dca 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1dcb 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1dcd 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1dce 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1dcc 05-31 05:23:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1dcf 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1dd0 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1dd1 05-31 05:23:06.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1dd2 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1dd3 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1dd4 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1dd5 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1dd6 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1dd7 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1dd8 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1dd9 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1dda 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1ddb 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1ddc 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1ddd 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1ddf 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1de0 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1de1 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1dde 05-31 05:23:06.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1de2 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1de3 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1de6 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1de4 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[1de8 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1de9 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1dea 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[1de7 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1de5 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1deb 05-31 05:23:06.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1dec 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1dee 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1ded 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1def 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1df0 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1df1 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1df4 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1df5 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[1df2 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1df7 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1df3 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1df8 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1df9 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1df6 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\210\033\313\022\273\230\365T\2620W\232L\356\342gd\377hp\034\036\366" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020z" signature:"0E\002!\000\326Yz\344\003\260p\325\014\226\003\252`\241x\3147\030\024\375\227*\262=P\205\361(]\250\214\214\002 \036\256\020\251\251dek\3619\310\352\263\010,\002@\354\206p\223C\264\332\3323@\212\233(\243_" > -[1dfa 05-31 05:23:06.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1dfb 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1dfc 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1dfd 05-31 05:23:06.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1dfe 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1dff 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e00 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1e01 05-31 05:23:06.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e02 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[1e03 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[1e04 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1e05 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e06 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1e07 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1e08 05-31 05:23:06.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e09 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1e0a 05-31 05:23:07.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e0b 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1e0c 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1e0d 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1e0e 05-31 05:23:07.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e0f 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1e10 05-31 05:23:07.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e11 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1e12 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1e13 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1e14 05-31 05:23:07.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e15 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1e16 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e17 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes -[1e18 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e19 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1e1a 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1e1b 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1e1c 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1e1d 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1e1e 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1e1f 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e20 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1e21 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1e22 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes to 1 peers -[1e23 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020{" signature:"0D\002 \"`\350\374-\255N\362Zp\033\275:\353`f\034K\002\024\037\323o\n\0045\357\205\353\211\344d\002 D\350\234\312a\274tI\214FB\305\306\232\"\3351g\203\305\272\207\177uau@\\\306\030\323\007" secret_envelope:\215\215]\237\322Lz\206\241\256\342y@\\\301\007\222>\213\023~t<\013\000O4" > > -[1e24 05-31 05:23:07.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 430 bytes, Signature: 0 bytes -[1e25 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e26 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1e27 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1e28 05-31 05:23:07.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e29 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[1e2a 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1e2b 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[1e2c 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1e2e 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1e2d 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1e2f 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e30 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1e31 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1e32 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1e33 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e34 05-31 05:23:07.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e35 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1e36 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1e37 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e38 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1e39 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1e3a 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e3b 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1e3c 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1e3d 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1e3e 05-31 05:23:07.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e3f 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1e40 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1e41 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers -[1e42 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -[1e43 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e44 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -[1e45 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e46 05-31 05:23:07.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020|" signature:"0D\002 Qp/&g\307\005\274\3318J9\220#\374K\276\306\215\035\340\223\3507\366\0000\"*\271\253\210\002 \0136[\322\372\303\312w\221\021\217\007}\200\205\236[e\016\330#,)\357\260\000\247\244\037\177\353\005" > > , Envelope: 165 bytes, Signature: 0 bytes -[1e47 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1e48 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e49 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes -[1e4b 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e4a 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e4c 05-31 05:23:07.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1e4d 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e4e 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e50 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[1e51 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[1e4f 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1e52 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e53 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e54 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1e55 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e56 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e57 05-31 05:23:07.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1e58 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1e59 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1e5a 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1e5b 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1e5c 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1e5d 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1e5e 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e5f 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1e60 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 645 bytes, Signature: 0 bytes -[1e61 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e63 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[1e62 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e64 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1e65 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e66 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e67 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1e68 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 125 but got ts: inc_num:1527744091840124700 seq_num:123 -[1e69 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e6a 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e6b 05-31 05:23:07.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1e6c 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e6d 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e6e 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e6f 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1e70 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1e71 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1e72 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1e73 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1e74 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1e75 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e76 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1e77 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[1e78 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e79 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e7a 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1e7b 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1e7c 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e7d 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[1e7e 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1e7f 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[1e80 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1e81 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1e82 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1e83 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1e84 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e85 05-31 05:23:07.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1e86 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1e87 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1e88 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1e89 05-31 05:23:07.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e8a 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1e8b 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1e8c 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[1e8d 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1e8e 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1e8f 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1e90 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1e91 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1e92 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1e93 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1e94 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1e96 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[1e95 05-31 05:23:07.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1e97 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[1e99 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1e98 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020}" signature:"0D\002 5\335\237\023\260^C\341V#1\366\n\252~\210\016\357\217\231k\261\n\233\016=f\363\362\214<\032\002 c@W\036\354\341\214\346\277\217\215\360&\242\352U\276/n\230x\225*\221GFy\373\324\207Sl" > -[1e9a 05-31 05:23:07.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1e9b 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1e9c 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1e9d 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1e9e 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[1e9f 05-31 05:23:10.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ea0 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -[1ea1 05-31 05:23:10.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -[1ea2 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ea3 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > > , Envelope: 165 bytes, Signature: 0 bytes -[1ea4 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1ea5 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1ea6 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1ea7 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1ea8 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1ea9 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1eaa 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1eab 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1eac 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1ead 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[1eae 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers -[1eb0 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes -[1eb1 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1eaf 05-31 05:23:10.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\242\257E\\\345\216\274\000\017\355\250S\001l5\321\230" > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020~" signature:"0D\002 :j:\251\320!\255A\312\022R\001\331j\360\207I\214\361\332\341DJ\240\273\263\302!\256\016'\207\002 m\\j\310-LhU\265\200\221\013\204\306\034\275v\264\202\005\327\036\343vV\305i\313\345\213\303}" > -[1eb2 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[1eb3 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1eb4 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1eb5 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1eb6 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1eb7 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1eb8 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1eb9 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1eba 05-31 05:23:10.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ebb 05-31 05:23:10.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1ebc 05-31 05:23:10.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ebd 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ebe 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1ebf 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ec0 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ec1 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ec3 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ec4 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1ec2 05-31 05:23:10.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1ec5 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1ec6 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1ec7 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1ec8 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1ec9 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1eca 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1ecb 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1ecd 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ecc 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ece 05-31 05:23:10.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1ecf 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1ed0 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1ed1 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ed2 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ed3 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ed4 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ed5 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ed6 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1ed7 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ed8 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1ed9 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1eda 05-31 05:23:10.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1edb 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1edc 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1edd 05-31 05:23:10.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1ede 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[1edf 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[1ee0 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1ee1 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ee2 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1ee3 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1ee4 05-31 05:23:10.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ee5 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[1ee6 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ee7 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[1ee8 05-31 05:23:10.99 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[1ee9 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1eea 05-31 05:23:11.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1eeb 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1eec 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[1eed 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1eee 05-31 05:23:11.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1eef 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1ef0 05-31 05:23:11.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ef1 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ef2 05-31 05:23:11.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1ef3 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ef4 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ef5 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1ef6 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1ef7 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} -[1ef8 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1ef9 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1efa 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1efb 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1efc 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1efd 05-31 05:23:11.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1efe 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1eff 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers -[1f00 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f01 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f02 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f04 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1f06 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f07 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f08 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1f03 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f05 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f09 05-31 05:23:11.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f0a 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1f0b 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1f0c 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[1f0d 05-31 05:23:11.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f0e 05-31 05:23:11.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[1f0f 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f10 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1f11 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f12 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f13 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1f14 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[1f15 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f16 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[1f17 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1f18 05-31 05:23:11.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1f19 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1f1a 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1f1c 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1f1d 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1f1b 05-31 05:23:11.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1f1e 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1f1f 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1f20 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f22 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1f21 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f23 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[1f24 05-31 05:23:11.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes to 1 peers -[1f25 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\014\010\230\310\215\205\203\345\350\231\025\020\177" signature:"0D\002 =\372&8\253\023\211\364\024\214\255\023DKx\370N\347\235j\310A,\377Z\005\213;\224\272`\322\002 \0273\021Y\030\023c\217\342\351\273;.n\326\213[\211\333\276\200xqL6)`\362\317\r\216\"" secret_envelope:2\315" > > -[1f26 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes -[1f27 05-31 05:23:11.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f28 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[1f29 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1f2a 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1f2b 05-31 05:23:11.70 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[1f2d 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f2c 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[1f2e 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[1f2f 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[1f31 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1f32 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f30 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1f33 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f34 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1f35 05-31 05:23:11.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[1f36 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f38 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1f37 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1f39 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1f3b 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[1f3c 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[1f3d 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[1f3e 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -[1f3f 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f40 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -[1f41 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f42 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\200\001" signature:"0D\002 D\351\367\371\200)I_\271\0020h\336O\304>\246=v\276\245m\356\221\302T79}32n\002 -\223Ts\326w\236)\177ey\203\342w\370\240\023\234e\317\241`\021\300m]\342E\230\2175\342" > > , Envelope: 166 bytes, Signature: 0 bytes -[1f43 05-31 05:23:11.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f44 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[1f45 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[1f3a 05-31 05:23:11.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f46 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1f48 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[1f49 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[1f4a 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[1f4b 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f4c 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f4d 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f4e 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f4f 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f50 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f47 05-31 05:23:11.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[1f51 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f52 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[1f54 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[1f55 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes -[1f56 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1f57 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} -[1f58 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1f59 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1f5a 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1f5b 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1f5c 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f5d 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f5e 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1f5f 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f60 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f61 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f62 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1f63 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f64 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[1f65 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1f66 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[1f67 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1f68 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1f69 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership -[1f6a 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1f6b 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f6c 05-31 05:23:11.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1f53 05-31 05:23:11.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f6d 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[1f6f 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[1f70 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f71 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1f72 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f73 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f74 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes -[1f75 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1f76 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f77 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f78 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1f79 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[1f7a 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1f7b 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1f7c 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[1f7d 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1f7e 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f7f 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1f6e 05-31 05:23:11.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f80 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f81 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1f83 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f84 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f85 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1f86 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f87 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f88 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1f89 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[1f8a 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[1f8b 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f8c 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f8d 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f8e 05-31 05:23:11.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1f82 05-31 05:23:11.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f8f 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[1f90 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f91 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[1f92 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[1f93 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[1f94 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[1f95 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1f96 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1f97 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[1f98 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1f99 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1f9a 05-31 05:23:11.80 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1f9b 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f9c 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[1f9d 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1f9e 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1f9f 05-31 05:23:11.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1fa0 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fa1 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1fa2 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1fa3 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fa4 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fa5 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1fa6 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[1fa7 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1fa8 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1fa9 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[1faa 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1fab 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1fac 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1fad 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[1fae 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[1faf 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fb0 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fb2 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1fb3 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fb1 05-31 05:23:11.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fb4 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1fb5 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1fb7 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fb8 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1fb6 05-31 05:23:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1fb9 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fba 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1fbb 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[1fbc 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1fbd 05-31 05:23:11.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1fbe 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1fbf 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[1fc0 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[1fc1 05-31 05:23:11.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1fc2 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[1fc4 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[1fc3 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1fc5 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[1fc6 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[1fc7 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[1fc8 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1fc9 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1fca 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[1fcb 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1fcc 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1fcd 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1fce 05-31 05:23:11.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[1fcf 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -[1fd1 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[1fd0 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:B\333\201/\371\030\2539<\177\344h\305\361J\3705[\000E\325\022x\013\002 7\224\033j`o\364NN3q\331\360\334\253?w\031\330\242\022\320\202\234\353\371\017q-:~f" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\202\001" signature:"0D\002 q\261K$q\321XbO\007^&\256H\305\256W\365{:k\013z\203\tg\211\034b\366\020a\002 \177K\337p\217\371V\312\323d/\316[\370\214\301\312\005\371\237\254\254\334\3779\344\204\365\245V\225\377" > -[1fd2 05-31 05:23:11.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1fd3 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1fd4 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1fd5 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[1fd6 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[1fd7 05-31 05:23:14.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1fd8 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[1fd9 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1fda 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1fdb 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1fdc 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1fdd 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[1fde 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1fdf 05-31 05:23:14.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -[1fe0 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -[1fe1 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1fe2 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > > , Envelope: 167 bytes, Signature: 0 bytes -[1fe3 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[1fe4 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[1fe5 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[1fe6 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[1fe7 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[1fe8 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[1fe9 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[1fea 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[1feb 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[1fec 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[1fed 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -[1fef 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[1fee 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:B\333\201/\371\030\2539<\177\344h\305\361J\3705[\000E\325\022x\013\002 7\224\033j`o\364NN3q\331\360\334\253?w\031\330\242\022\320\202\234\353\371\017q-:~f" > alive:)\252\3261#\365\200\236\351\024\241{\022\207\022uU\325\005\235%v&\360r\305\233\235\002 H\363\264\034A\rD\263\316\210\035\224Q!x\265i/\323\220\337\241\222K\033w \372FM6U" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\203\001" signature:"0E\002!\000\212\241=\031\033\202eC\255\001\317\364]\344\273=\342\002=#\2073\371\375(4\021\0020\006\032\330\002 T\000\347\211\335\211S\246\22188\253\247\210/\236\336\250e\177\352\222\214\014\270\306N\234.\365\n\303" > -[1ff0 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ff1 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1ff2 05-31 05:23:14.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1ff3 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ff4 05-31 05:23:14.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1ff5 05-31 05:23:14.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ff6 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[1ff7 05-31 05:23:14.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1ff8 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[1ff9 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[1ffa 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[1ffb 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[1ffc 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1ffd 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[1ffe 05-31 05:23:14.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[1fff 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2000 05-31 05:23:15.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2001 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[2002 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[2003 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[2004 05-31 05:23:15.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2005 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2006 05-31 05:23:15.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2007 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2008 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2009 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[200a 05-31 05:23:15.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[200b 05-31 05:23:15.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -[200c 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[200d 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -[200e 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[200f 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2010 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[2011 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2012 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2013 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership -[2014 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2015 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2016 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2017 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[2018 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes to 1 peers -[2019 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\204\001" signature:"0E\002!\000\343Rf\033\0224\362\225\326\000fM\343\302\331\0375\214Ll\300\024)b\200\006\014]\000X\3532\002 \014KHk\231\365$\013C\305\210K\037\222i\024o(\261\024\221,\257\214\340\360Lu{\314-\032" secret_envelope: > -[201a 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -[201b 05-31 05:23:15.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[201c 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[201d 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[201e 05-31 05:23:15.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[201f 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[2020 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[2021 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[2022 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[2023 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[2024 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[2025 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2026 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2027 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2028 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2029 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[202a 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[202b 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[202c 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[202d 05-31 05:23:15.71 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[202e 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[202f 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2030 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2031 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2032 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2033 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2034 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2035 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[2036 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[2037 05-31 05:23:15.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -[2039 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2038 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[203b 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -[203a 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\205\001" signature:"0E\002!\000\322\020-\323-HX/\022\014rE\240*SH\216\224\343\235\277\354i\033\031\333\245\300\327z\335\326\002 \003-4\370\310E\310\354\372\305\366\013Q\032\226\2363\302\224M\022g](GN\002H\366j6i" > > , Envelope: 167 bytes, Signature: 0 bytes -[203c 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[203d 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[203e 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[203f 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -[2040 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2041 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2042 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -[2043 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2044 05-31 05:23:15.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2045 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2046 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2047 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[2048 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2049 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[204a 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[204b 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[204c 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[204d 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[204e 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[204f 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2050 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2051 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2052 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2053 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2054 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2055 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2056 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2057 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2058 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2059 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[205a 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[205b 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[205c 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[205d 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[205e 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[205f 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2060 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 129 but got ts: inc_num:1527744091508552400 seq_num:128 -[2061 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2062 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2063 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2064 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[2065 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2066 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2067 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2068 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2069 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[206a 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[206b 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[206c 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[206d 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[206f 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[206e 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2070 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 132 but got ts: inc_num:1527744090808810100 seq_num:130 -[2071 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2072 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2073 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2074 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2075 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2076 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2077 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2078 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 129 but got ts: inc_num:1527744091508552400 seq_num:128 -[2079 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[207a 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[207b 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[207c 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[207d 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[207e 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[207f 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2080 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2081 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2082 05-31 05:23:15.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2083 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2084 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2085 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2086 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2087 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2088 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2089 05-31 05:23:15.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[208a 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[208b 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[208c 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[208d 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[208e 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[208f 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2090 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2091 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2092 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2093 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2094 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2095 05-31 05:23:15.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2096 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2097 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2098 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2099 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[209a 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[209b 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[209c 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[209d 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[209e 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[209f 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20a0 05-31 05:23:15.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20a1 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[20a2 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[20a3 05-31 05:23:15.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[20a4 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[20a5 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20a6 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20a7 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[20a8 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[20a9 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20aa 05-31 05:23:15.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[20ab 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[20ac 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[20ad 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[20ae 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20af 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[20b0 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[20b1 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[20b2 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[20b3 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[20b4 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[20b5 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[20b6 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[20b7 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[20b8 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -[20b9 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\206\001" signature:"0D\002 X\221\020{\234T\345\033\377^\275!\320c$|\331\223 -[20ba 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[20bb 05-31 05:23:15.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20bc 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[20bd 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[20be 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[20bf 05-31 05:23:15.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[20c0 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[20c1 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[20c2 05-31 05:23:16.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[20c3 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20c4 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[20c5 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[20c6 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20c7 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20c8 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[20c9 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[20ca 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[20cb 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[20cc 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[20cd 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[20ce 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[20cf 05-31 05:23:16.58 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[20d0 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[20d1 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[20d2 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20d3 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20d4 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20d5 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20d6 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20d7 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[20d8 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[20d9 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20da 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[20db 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20dc 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20dd 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[20de 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[20df 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[20e0 05-31 05:23:16.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[20e1 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[20e2 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[20e4 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20e3 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[20e6 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20e5 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[20e7 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20e8 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20e9 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20ea 05-31 05:23:16.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20eb 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20ec 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[20ed 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[20ee 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20ef 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20f0 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[20f1 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[20f2 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[20f3 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[20f4 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[20f5 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[20f6 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[20f7 05-31 05:23:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[20f8 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[20f9 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[20fb 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20fd 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[20fc 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20fe 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[20fa 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[20ff 05-31 05:23:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2100 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2101 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2102 05-31 05:23:16.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2103 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2104 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2105 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2106 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2107 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2108 05-31 05:23:16.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2109 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[210a 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[210b 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[210c 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[210d 05-31 05:23:18.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[210e 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[210f 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2110 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2112 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2111 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2114 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[2113 05-31 05:23:18.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2115 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2116 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2118 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[2119 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2117 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[211a 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 780 bytes, Signature: 0 bytes -[211b 05-31 05:23:18.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[211c 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[211d 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[211e 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[211f 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[2120 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2121 05-31 05:23:18.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2122 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2123 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2124 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2125 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2126 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2127 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2129 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[2128 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[212a 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -[212b 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\210\001" signature:"0E\002!\000\333\317B\326R\357\337\0304\025vQV*gW\\\202\213\350\245\344\242\366\223Wv\240\243\\\320\244\002 =5\263o\252a\204t\220g\245S\216\017P\264$\322\t\267\021\007\033\30632R\363\213-\266v" > -[212c 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[212d 05-31 05:23:18.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[212e 05-31 05:23:18.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[212f 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[2130 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[2131 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2132 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[2133 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes -[2134 05-31 05:23:18.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2135 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2136 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2137 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[2138 05-31 05:23:19.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2139 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[213a 05-31 05:23:19.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[213b 05-31 05:23:19.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[213c 05-31 05:23:19.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[213d 05-31 05:23:19.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[213e 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[213f 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[2140 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 1 2 3] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[2141 05-31 05:23:19.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2142 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2143 05-31 05:23:19.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2144 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2145 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2146 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[2147 05-31 05:23:19.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2148 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -[2149 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[214a 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -[214b 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[214c 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[214d 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[214e 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[214f 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2150 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2151 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2152 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2153 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2154 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[2155 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2156 05-31 05:23:19.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2157 05-31 05:23:19.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2158 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -[215a 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -[215b 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2159 05-31 05:23:19.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\211\001" signature:"0D\002 \032\317'\010\233/\201\010\346%\213\236\2479=8w\010\3056\301\374K|\031u\263\325\033)a\023\002 t\034\2626\251o.W\276m\t\325\221\351\031\364\254\312\326\037\231a\331\211k }6\257\356\300\n" secret_envelope: > -[215c 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[215d 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[215e 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[215f 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[2160 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[2161 05-31 05:23:19.71 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[2162 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2163 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2165 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2166 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2167 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[2168 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[2169 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[216a 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -[216b 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[216c 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -[216d 05-31 05:23:19.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[216e 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\212\001" signature:"0D\002 >\350\022R\365*\003\230\365\267a\232-4\312I5\246\361!L\211\352\001X\001\026\251\006\222\254Y\002 I\313\340@lp\242\022YP\305'\034\010J\257\010\037\377\267\233u\262\353\255z n\200\035\376\023" > > , Envelope: 166 bytes, Signature: 0 bytes -[2164 05-31 05:23:19.72 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[216f 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2170 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2172 05-31 05:23:19.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2173 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2174 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2171 05-31 05:23:19.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2176 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2177 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2175 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2178 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[217a 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[217c 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[217b 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2179 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[217d 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -[217e 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[217f 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2180 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2181 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2182 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2183 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2184 05-31 05:23:19.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2185 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2186 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2187 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2188 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2189 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[218a 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[218b 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[218c 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[218d 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[218e 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[218f 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2191 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2192 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2193 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2194 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2195 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[2190 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -[2196 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2197 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2198 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2199 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[219a 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[219b 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[219c 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[219d 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[219e 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[219f 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[21a0 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[21a1 05-31 05:23:19.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[21a2 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[21a4 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[21a3 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[21a5 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[21a6 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[21a7 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[21a8 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[21a9 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[21aa 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[21ab 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 134 but got ts: inc_num:1527744091508552400 seq_num:133 -[21ac 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[21ad 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[21ae 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[21af 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 139 but got ts: inc_num:1527744091840124700 seq_num:137 -[21b0 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[21b1 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[21b2 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[21b3 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[21b4 05-31 05:23:19.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[21b5 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[21b6 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[21b7 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[21b8 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[21b9 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[21ba 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55408 -[21bb 05-31 05:23:19.79 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42987d4d0 -[21bc 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[21bd 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[21be 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[21bf 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[21c0 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[21c1 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429841cc0, header 0xc42987d830 -[21c2 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -[21c3 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][f568e6b0] processing txid: f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb -[21c4 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] -[21c5 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -[21c6 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[21c7 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] -[21c8 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f568e6b0] Entry chaincode: name:"exp02" -[21c9 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb,syscc=true,proposal=0xc429841cc0,canname=lscc:1.2.0) -[21ca 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[21cb 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -[21cc 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f568e6b0]Received message TRANSACTION from peer -[21cd 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f568e6b0] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[21ce 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f568e6b0] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[21cf 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -[21d0 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f568e6b0] Sending GET_STATE -[21d1 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f568e6b0] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[21d2 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f568e6b0] handling GET_STATE from chaincode -[21d3 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [f568e6b0] getting state for chaincode lscc, key exp02, channel businesschannel -[21d4 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[21d5 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f568e6b0] Completed GET_STATE. Sending RESPONSE -[21d6 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f568e6b0]Received message RESPONSE from peer -[21d7 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f568e6b0] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[21d8 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [f568e6b0] before send -[21d9 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [f568e6b0] after send -[21da 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f568e6b0] Received RESPONSE, communicated (state:ready) -[21db 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [f568e6b0] GetState received payload RESPONSE -[21dc 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f568e6b0] Transaction completed. Sending COMPLETED -[21dd 05-31 05:23:19.80 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [f568e6b0] send state message COMPLETED -[21de 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f568e6b0] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[21df 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f568e6b0] notifying Txid:f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb, channelID:businesschannel -[21e0 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -[21e1 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[21e2 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] Entry chaincode: name:"exp02" version: 1.0 -[21e3 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb,syscc=false,proposal=0xc429841cc0,canname=exp02:1.0) -[21e4 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -[21e5 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[21e6 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f568e6b0] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[21e7 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f568e6b0] handling GET_STATE from chaincode -[21e8 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [f568e6b0] getting state for chaincode exp02, key a, channel businesschannel -[21e9 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -[21ea 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [f568e6b0] Completed GET_STATE. Sending RESPONSE -[21eb 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f568e6b0] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[21ec 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f568e6b0] notifying Txid:f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb, channelID:businesschannel -[21ed 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[21ee 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] Exit -[21ef 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[21f0 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] -[21f1 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f568e6b0] Exit -[21f2 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f568e6b0] Entry chaincode: name:"exp02" -[21f3 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f568e6b0] escc for chaincode name:"exp02" is escc -[21f4 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb, chaincode: exp02} -[21f5 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb, chaincode: exp02} -[21f6 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f568e6b0] Exit -[21f7 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f568e6b0c72c03fbc2852c27ba0a169bfd2464db709e5a6709dea0f0d4db1fbb] -[21f8 05-31 05:23:19.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55408 -[21f9 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[21fa 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[21fb 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[21fc 05-31 05:23:19.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[21fd 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[21fe 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[21ff 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[2200 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2201 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2202 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2203 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2204 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2205 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2206 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2207 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2208 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2209 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[220a 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -[220b 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\n" > alive:\310\233%\334\272\022\346\333@\373jd\276\231\352\317\271\002 :\246w\226\352\243W\\\r\027\351\220\223\030\355\313\341\372SnN\034Y\377\004wu\001c33\336" > alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\213\001" signature:"0D\002 r>\347\241\211b\305f\213\240\361G\025\002\\\223\210\370-\177=\226\262\037H\365ax\354c\033G\002 J\376\206\244\204\320\240L\325\"o]\245(k[o\366OU\250\264\345+\366\343\236\026\025\253a\302" > -[220c 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[220d 05-31 05:23:19.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[220e 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[220f 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2210 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2211 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2212 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2213 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2214 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2215 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2216 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2217 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2218 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2219 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[221a 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[221b 05-31 05:23:20.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[221c 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[221d 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[221e 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[221f 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2220 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2221 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2222 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2223 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2224 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2225 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2226 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2227 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2228 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2229 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[222a 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[222b 05-31 05:23:20.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[222c 05-31 05:23:20.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[222d 05-31 05:23:21.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[222e 05-31 05:23:21.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[222f 05-31 05:23:21.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[2230 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4794 bytes, seq: 6}, Envelope: 4824 bytes, Signature: 0 bytes -[2231 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2232 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[2233 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[2234 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4298f8da0 env 0xc4299a41e0 txn 0 -[2235 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc4299a41e0 -[2236 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -[2237 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[2238 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -[2239 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} -[223a 05-31 05:23:21.62 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -[223b 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -[223c 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc428f31800, header channel_header:"\010\003\032\014\010\307\215\276\330\005\020\350\265\344\200\002\"\017businesschannel*@55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030N\262\031\014\201\265\240\030l\241\020>\313\010y\025\362\336\0147\261\2262t" -[223d 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions -[223e 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid -[223f 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() -[2240 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -[2241 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] -[2242 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate -[2243 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc428590800 -[2244 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [9e964f86-0428-41a1-9ca7-bbbd4e7700c1] -[2245 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[2246 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [9e964f86-0428-41a1-9ca7-bbbd4e7700c1] -[2247 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> INFO Validating Tx 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin -[2248 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) -[2249 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: -[224a 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 appears to be valid -[224b 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc428590800 -[224c 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4298f8da0 env 0xc4299a41e0 txn 0 -[224d 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[224e 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[224f 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] -[2250 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[2251 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] -[2252 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[2253 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION -[2254 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a -[2255 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -[2256 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b -[2257 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} -[2258 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[2259 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} -[225a 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] marked as valid by state validator -[225b 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[225c 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[225d 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[225e 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage -[225f 05-31 05:23:21.63 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] -[2260 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x85, 0xb2, 0xc2, 0xca, 0xb9, 0x19, 0xa4, 0x86, 0x81, 0xab, 0xe7, 0xe5, 0x91, 0x9e, 0xc6, 0x6d, 0x34, 0xc3, 0x50, 0xbe, 0xd5, 0x41, 0x10, 0xaf, 0xb5, 0xb4, 0x21, 0x8f, 0x8b, 0xf9, 0x7f, 0xc8} txOffsets= -txId=55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 locPointer=offset=70, bytesLength=2917 +[1c72 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to index +[1c73 06-12 02:15:36.97 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=50817, bytesLength=2921] for tx number:[0] ID: [40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad] to blockNumTranNum index +[1c74 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[55533], isChainEmpty=[false], lastBlockNumber=[5] +[1c75 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [5] +[1c76 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [5] +[1c77 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [5] with 1 transaction(s) +[1c78 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to state database +[1c79 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[1c7a 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +[1c7b 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[1c7c 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[1c7d 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[1c7e 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[1c7f 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [6] +[1c80 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [5] transactions to history database +[1c81 06-12 02:15:36.98 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x6, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] +[1c82 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [5] with [1] transactions +[1c83 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [6] +[1c84 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [5] +[1c85 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[1c86 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [5] contains transaction id: 40ed21f2eadb3d00836f5d7c51ff9ce1337a8d626cb2066351f76d6b3638d1ad +[1c87 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[1c88 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[1c89 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[1c8a 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[1c8b 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[1c8c 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[1c8d 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[1c8e 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[1c8f 06-12 02:15:36.99 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[1c90 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[1c91 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1c92 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1c93 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1c94 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1c96 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1c95 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1c97 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1c98 06-12 02:15:37.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1c99 06-12 02:15:37.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1c9a 06-12 02:15:37.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[1c9b 06-12 02:15:37.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[1c9c 06-12 02:15:37.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[1c9d 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[1c9e 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[1c9f 06-12 02:15:37.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1ca0 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1ca1 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1ca2 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1ca3 06-12 02:15:37.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ca4 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1ca5 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ca6 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1ca7 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1ca8 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1ca9 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1caa 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1cab 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1cac 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1cad 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1cae 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1caf 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1cb0 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[1cb1 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +[1cb2 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020o" signature:"0D\002 \010U,\262\306\3538\216\363\342\212\354\355\324\035\246qjE+\243\364\310\217\017P{!W\313\0005\002 9\212E\357\366\311{\246\010\340\227Ay!\033!Y\236\362[\020q\212%\367#\nj\344\262\236\010" secret_envelope:\">\330K\213\354\276\326\226S\210\314" > > +[1cb3 06-12 02:15:37.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[1cb4 06-12 02:15:37.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1cb5 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cb6 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cb7 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1cb8 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1cb9 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cba 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cbb 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1cbc 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1cbd 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1cbe 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1cbf 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1cc0 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1cc1 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1cc2 06-12 02:15:37.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1cc3 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1cc4 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1cc6 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cc5 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cc7 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1cc8 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1cc9 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cca 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ccb 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1ccc 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1cce 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ccf 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1ccd 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cd0 06-12 02:15:37.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1cd1 06-12 02:15:37.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1cd2 06-12 02:15:37.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cd3 06-12 02:15:37.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1cd4 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cd5 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1cd6 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1cd7 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cd8 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cd9 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1cda 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1cdb 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1cdc 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1cdd 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1cde 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1cdf 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ce0 06-12 02:15:38.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ce1 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1ce2 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1ce3 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ce4 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ce5 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1ce6 06-12 02:15:38.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1ce7 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ce8 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ce9 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1cea 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1cec 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ced 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cee 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1ceb 06-12 02:15:38.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cef 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1cf0 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1cf1 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1cf2 06-12 02:15:38.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1cf3 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[1cf4 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1cf6 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1cf5 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1cf7 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1cf9 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 783 bytes, Signature: 0 bytes +[1cfa 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 783 bytes, Signature: 0 bytes +[1cf8 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1cfb 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1cfc 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1cfd 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1cfe 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1cff 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes to 3 peers +[1d01 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1d02 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d00 06-12 02:15:40.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1d04 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d03 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1d05 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d06 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[1d07 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[1d08 06-12 02:15:40.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d09 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1d0a 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1d0b 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1d0c 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1d0d 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1d0e 06-12 02:15:40.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1d0f 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1d10 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1d11 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1d12 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1d13 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d14 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1d15 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1d16 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +[1d17 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020p" signature:"0E\002!\000\230Q\277b\025\321\224\033\367w;1\2206\341i\216Z\013\026O-\365q\016\210`\005\027\214\031\361\002 \021V\313\311\312T\353\355\353( W\\\340z1\232\374\314q\307*!?\256\003\375Jn\254\220\363" > +[1d18 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +[1d19 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d1a 06-12 02:15:40.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d1b 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[1d1c 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1d1d 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[1d1e 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1d1f 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1d20 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1d21 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1d22 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1d23 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d24 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1d25 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d26 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d27 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1d28 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1d29 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1d2a 06-12 02:15:40.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d2b 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1d2c 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1d2d 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d2e 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1d2f 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1d30 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1d31 06-12 02:15:40.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d32 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1d33 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1d34 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1d35 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[1d36 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d37 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1d38 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[1d39 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1d3a 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d3b 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +[1d3c 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +[1d3d 06-12 02:15:40.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d3e 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[1d3f 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[1d40 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[1d42 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes +[1d43 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d44 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 166 bytes, Signature: 0 bytes +[1d45 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d41 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020q" signature:"0E\002!\000\200\344\320\315\013p?\206\010\214(O!\224~\216Z1Q/\263G(;.\3701<^\016\251\315\002 *\220\013O%}\266\226\3439\033\353\027\265\337Ac\274U\366p\022\351\030\366\326\241T|\260\237z" > > , Envelope: 271 bytes, Signature: 0 bytes +[1d46 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d47 06-12 02:15:40.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1d48 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d49 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1d4a 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1d4b 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d4c 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[1d4d 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1d4e 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1d4f 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d50 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1d51 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1d52 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1d53 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d54 06-12 02:15:40.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1d55 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1d56 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1d57 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1d59 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[1d58 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1d5a 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1d5b 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1d5c 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d5d 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1d5f 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d5e 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 536 bytes, Signature: 0 bytes +[1d60 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1d61 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1d62 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1d64 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1d63 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1d65 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d66 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1d67 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1d68 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[1d69 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1d6a 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1d6b 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1d6c 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1d6d 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d6e 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1d70 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d6f 06-12 02:15:40.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1d71 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1d72 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1d73 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 114 but got ts: inc_num:1528769652429776900 seq_num:113 +[1d74 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d75 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1d76 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1d77 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 112 but got ts: inc_num:1528769653227426900 seq_num:111 +[1d78 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d79 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1d7a 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1d7b 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1d7c 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d7d 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1d7e 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1d7f 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1d80 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1d81 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1d82 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1d83 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1d84 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d85 06-12 02:15:40.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1d86 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1d87 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[1d88 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1d89 06-12 02:15:40.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d8a 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1d8b 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1d8c 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1d8d 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[1d8e 06-12 02:15:40.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d8f 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1d90 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1d91 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1d92 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1d93 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1d94 06-12 02:15:40.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1d95 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1d96 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1d97 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1d98 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1d99 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1d9a 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1d9b 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1d9c 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1d9d 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[1d9f 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1da0 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1d9e 06-12 02:15:40.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\267\271\334:\246Y{|\331<\024\211\356-\274\267\002 A\371 alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020r" signature:"0D\002 \017\332N\252\352\265\364\224,\254\234\313\2063\237\244\316\370\221\234\000&\235q\321\357\3308\246\260-\227\002 F\301n6'Pn\021e\021\230\273^\267p\363eZ\231\307$v~\233\331\rV\204\376<\016c" > +[1da1 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1da2 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1da3 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1da4 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1da5 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1da6 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1da7 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1da8 06-12 02:15:40.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[1da9 06-12 02:15:40.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1daa 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1dac 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1dad 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1dab 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[1dae 06-12 02:15:40.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[1daf 06-12 02:15:40.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1db0 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1db1 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1db2 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1db3 06-12 02:15:41.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1db4 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +[1db5 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1db6 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > > , Envelope: 165 bytes, Signature: 0 bytes +[1db7 06-12 02:15:41.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1db8 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1db9 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1dba 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1dbb 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1dbc 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1dbd 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1dbe 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1dbf 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1dc0 06-12 02:15:41.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[1dc1 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes to 1 peers +[1dc2 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\241\246G\006\271^\367W\344\265\311\035\344!M\346" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020s" signature:"0E\002!\000\245\013\301\014\207r\340\003\020&z\236\222r|?5\274&\032i\210\360\206\213\361,\027g\345G\353\002 \017\214\366\252j\373\376!X\260\345\240\361\224\206&+8\037\216kqs\237\275\037\241\003\306\0201\037" secret_envelope: > +[1dc3 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes +[1dc4 06-12 02:15:41.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1dc5 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dc6 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dc7 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1dc8 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1dc9 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dca 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dcb 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1dcc 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1dcd 06-12 02:15:41.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1dcf 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1dce 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dd0 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1dd1 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dd3 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1dd2 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1dd4 06-12 02:15:41.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1dd5 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1dd7 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1dd8 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dd9 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1dd6 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dda 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ddb 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ddc 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ddd 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1dde 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1ddf 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1de0 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1de2 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1de1 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1de3 06-12 02:15:41.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1de4 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[1de5 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1de6 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1de8 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1de7 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1de9 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dea 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1deb 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1dec 06-12 02:15:42.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ded 06-12 02:15:42.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1dee 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[1def 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[1df0 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[1df1 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[1df2 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[1df3 06-12 02:15:42.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1df4 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1df5 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1df6 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1df7 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1df8 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1df9 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1dfa 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1dfb 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1dfc 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1dfd 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1dfe 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1dff 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1e01 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1e02 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1e00 06-12 02:15:42.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1e03 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1e04 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e05 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1e06 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1e07 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1e08 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1e09 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1e0a 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e0b 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1e0c 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1e0d 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1e0e 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1e0f 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1e10 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e11 06-12 02:15:42.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1e12 06-12 02:15:42.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e13 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e14 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1e15 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e16 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e17 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e18 06-12 02:15:43.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1e19 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1e1a 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1e1b 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1e1c 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1e1e 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1e1d 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e1f 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1e21 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1e20 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e22 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1e23 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e24 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e25 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1e26 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1e27 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1e28 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e29 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e2a 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e2b 06-12 02:15:43.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e2c 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e2d 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e2e 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1e2f 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e30 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e31 06-12 02:15:43.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1e32 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[1e33 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1e35 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1e36 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e37 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e34 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1e38 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e39 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1e3a 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e3b 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1e3d 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1e3c 06-12 02:15:44.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1e3e 06-12 02:15:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e3f 06-12 02:15:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1e40 06-12 02:15:44.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e41 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +[1e42 06-12 02:15:44.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +[1e43 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e44 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:X\345\336\264\0345\013\340 U{1\371k9" > > , Envelope: 165 bytes, Signature: 0 bytes +[1e45 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e46 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1e47 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1e48 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1e49 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1e4a 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1e4b 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1e4c 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1e4d 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1e4e 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1e4f 06-12 02:15:44.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[1e50 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:X\345\336\264\0345\013\340 U{1\371k9" > alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020u" signature:"0D\002 9\253\016\306\211z\201<\210w$\332\224\330\362bT\200FK&\030\347\306\310\004\332\354\203\207\340z\002 8\260`I\212\027y\317U#U\"\021\337MZ\023\033\301\314\017\220\274C#G\230\n\025Y\252." > +[1e51 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1e52 06-12 02:15:44.29 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e53 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[1e54 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1e56 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[1e55 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1e57 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[1e58 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1e5a 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1e5b 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1e5c 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e59 06-12 02:15:44.31 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e5d 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1e5e 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e5f 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1e60 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1e61 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1e62 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1e63 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e64 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1e65 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[1e66 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e67 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1e68 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1e69 06-12 02:15:44.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e6a 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1e6b 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1e6c 06-12 02:15:44.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1e6d 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[1e6e 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e6f 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1e70 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[1e71 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1e72 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e73 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +[1e74 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +[1e75 06-12 02:15:44.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e76 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1e77 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e78 06-12 02:15:44.36 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[1e79 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[1e7b 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[1e7d 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes +[1e7a 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 271 bytes, Signature: 0 bytes +[1e7f 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e7c 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020v" signature:"0E\002!\000\241\254\321\252R\206\0142\267\0142\320\t\037-\271?g\233\004E\251\003\357=\256\355\226\354L\3552\002 \031#\212\304\357\324z\307\237\305\013<\242\2474F?\243%\003\224v\205\027}\n\021\237J\021\007D" > > , Envelope: 166 bytes, Signature: 0 bytes +[1e80 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e81 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1e82 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1e83 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1e84 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e85 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1e86 06-12 02:15:44.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1e87 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1e88 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1e89 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[1e7e 06-12 02:15:44.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1e8a 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1e8b 06-12 02:15:44.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1e8c 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1e8d 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[1e8e 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1e8f 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1e90 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1e91 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1e92 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1e93 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1e94 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1e95 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1e97 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1e96 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1e98 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1e99 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1e9a 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1e9b 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1e9c 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1e9d 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1e9e 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1e9f 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ea0 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1ea1 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 117 but got ts: inc_num:1528769653227426900 seq_num:116 +[1ea2 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ea3 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ea4 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1ea5 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ea6 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ea7 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1ea8 06-12 02:15:44.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1ea9 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1eaa 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1eab 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1eac 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1ead 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1eae 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1eaf 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1eb0 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1eb1 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1eb2 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1eb3 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1eb4 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 118 but got ts: inc_num:1528769651824440500 seq_num:117 +[1eb5 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1eb6 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1eb7 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1eb8 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1eb9 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1eba 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1ebb 06-12 02:15:44.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1ebc 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1ebd 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1ebe 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1ebf 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1ec0 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1ec1 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ec2 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ec3 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1ec4 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1ec5 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1ec6 06-12 02:15:44.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ec7 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1ec8 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1ec9 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[1eca 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[1ecb 06-12 02:15:44.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ecc 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1ecd 06-12 02:15:44.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1ece 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ecf 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1ed0 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1ed1 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1ed2 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1ed3 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1ed4 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1ed5 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1ed6 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1ed7 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ed8 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ed9 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1eda 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[1edc 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1edb 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:N\002\321H\211\343P\337\007\213n\033\312*\230\373\341\235\035\265\2319\250\253\257\237\364e{\002 0\255\036\316\325\304\005td\275\301\242U\240\3011<\014 alive: alive:y\345i\333\321\0359%\243\252M\231\023\276\325\274\306h\210\372\266\303\346\263\324\217\251\002/9%" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020w" signature:"0E\002!\000\241\340DvLC\247C\t\364:p\266\250\240j?/O\027\220W\363\375F\224\326\265`\303\377\276\002 \013\270\336P\222\300\3465K\301\272\334\315\005\244\357`\2769 \375\234v\351\302\r\211}{\304\207<" > +[1edd 06-12 02:15:44.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1ede 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1edf 06-12 02:15:44.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1ee0 06-12 02:15:44.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ee1 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1ee2 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1ee3 06-12 02:15:44.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ee4 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1ee5 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1ee6 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1ee7 06-12 02:15:45.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ee8 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1ee9 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1eea 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[1eeb 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1eec 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1eed 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1eee 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1eef 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1ef0 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1ef1 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1ef2 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ef3 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ef4 06-12 02:15:45.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[1ef5 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +[1ef6 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020x" signature:"0E\002!\000\240\200\027j\"\233?#.\025{\006\330\007O\030\340\340UU\3142\272oA\216p*\225\230T\006\002 ->J8b\304\212\236\276\352\315J\372S\241\315L\334\004\341\223\246{`x\220\351\266\202\276\007\337" secret_envelope:\024\r\235\206a" > > +[1ef7 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +[1ef8 06-12 02:15:45.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1ef9 06-12 02:15:46.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1efa 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1efb 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1efc 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1efd 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1efe 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1eff 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1f00 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1f01 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1f02 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1f03 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1f04 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1f05 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1f06 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1f07 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f08 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1f09 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f0a 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f0b 06-12 02:15:46.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1f0c 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f0d 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f0e 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1f0f 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f10 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f11 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1f12 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1f13 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1f14 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f16 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f15 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f17 06-12 02:15:46.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f18 06-12 02:15:47.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[1f19 06-12 02:15:47.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +[1f1a 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1f1b 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1f1c 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f1d 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f1f 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f20 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f1e 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f21 06-12 02:15:47.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f22 06-12 02:15:47.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[1f23 06-12 02:15:47.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[1f24 06-12 02:15:47.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[1f25 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[1f26 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[1f27 06-12 02:15:47.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f28 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f29 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f2a 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1f2b 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f2c 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f2d 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f2e 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1f2f 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1f30 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1f31 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1f32 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1f33 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1f34 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1f35 06-12 02:15:47.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1f36 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1f37 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[1f38 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f39 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f3b 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f3a 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f3c 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f3d 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f3e 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1f3f 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f40 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f41 06-12 02:15:47.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1f42 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f43 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1f44 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f45 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1f46 06-12 02:15:47.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1f47 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[1f49 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1f48 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1f4a 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f4b 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f4c 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1f4d 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1f4e 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f4f 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f50 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1f51 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1f52 06-12 02:15:48.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1f53 06-12 02:15:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f54 06-12 02:15:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[1f55 06-12 02:15:48.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f56 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1f57 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1f58 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f59 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1f5a 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f5b 06-12 02:15:48.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1f5c 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1f5d 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1f5e 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1f5f 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1f60 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1f61 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1f62 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1f63 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[1f64 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[1f65 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020z" signature:"0D\002 a\036\017K\224\352\266\215Ys\350\037\247\277\367\277y\221\310\357P\240\313\255\021#\346\230o2\033\215\002 \032\323O\324\257\234V\325\224u\217\311WG}\270\327[3\032\233\346X\312\203\202\230\317^\325\265\363" > +[1f66 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1f67 06-12 02:15:48.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f68 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[1f69 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1f6a 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[1f6b 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1f6c 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[1f6d 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[1f6e 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1f6f 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f70 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1f71 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f72 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1f73 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f74 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1f75 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1f76 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1f77 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f78 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1f79 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1f7a 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f7b 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1f7c 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1f7d 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[1f7e 06-12 02:15:48.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f7f 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1f80 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1f81 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1f82 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[1f83 06-12 02:15:48.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f84 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f85 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1f86 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f87 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f88 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f89 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1f8a 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1f8b 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1f8c 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1f8d 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1f8e 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1f8f 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1f90 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1f91 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1f92 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[1f93 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f94 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f95 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f96 06-12 02:15:48.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f97 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[1f98 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[1f99 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1f9a 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1f9b 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +[1f9c 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 48 bytes, Signature: 0 bytes +[1f9d 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1f9e 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1f9f 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1fa0 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1fa1 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1fa2 06-12 02:15:48.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1fa3 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[1fa4 06-12 02:15:48.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1fa5 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" secret_envelope: > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[1fa6 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1fa7 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes to 1 peers +[1fa8 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes +[1fa9 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1faa 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 271 bytes, Signature: 0 bytes +[1fab 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1fac 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020{" signature:"0D\002 YG\373$\262\205\tU\330\371C\257\371d\036\251\2673pc\200TG\262|\205d\220H*.\266\002 @\241\203\257u\242\337\036D\025S\353[t\364vS<\243\037\267\245\367\315\302#\363i\324z\325{" > > , Envelope: 165 bytes, Signature: 0 bytes +[1fad 06-12 02:15:48.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1fae 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1faf 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1fb0 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1fb1 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[1fb2 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1fb3 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1fb4 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1fb5 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1fb6 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1fb7 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1fb8 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1fb9 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1fba 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1fbb 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1fbc 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1fbd 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1fbe 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1fbf 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1fc0 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1fc1 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1fc2 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1fc3 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1fc4 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 537 bytes, Signature: 0 bytes +[1fc5 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1fc6 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1fc7 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1fc8 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1fc9 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[1fca 06-12 02:15:48.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[1fcb 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[1fcc 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1fcd 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1fce 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1fcf 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1fd0 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1fd1 06-12 02:15:48.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1fd2 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1fd3 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1fd4 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1fd5 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[1fd6 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1fd7 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[1fd8 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1fd9 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1fda 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1fdb 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1fdc 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 124 but got ts: inc_num:1528769652429776900 seq_num:123 +[1fdd 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1fde 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[1fdf 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[1fe0 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[1fe1 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1fe2 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1fe3 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[1fe4 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1fe5 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1fe6 06-12 02:15:48.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1fe7 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1fe8 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[1fe9 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[1fea 06-12 02:15:48.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1feb 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1fec 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1fed 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[1fee 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[1fef 06-12 02:15:48.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ff0 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1ff1 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1ff2 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[1ff3 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 165 bytes, Signature: 0 bytes +[1ff4 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[1ff5 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[1ff6 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[1ff7 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[1ff8 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[1ff9 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[1ffa 06-12 02:15:48.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[1ffb 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[1ffc 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[1ffd 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[1ffe 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes to 1 peers +[2000 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 646 bytes, Signature: 0 bytes +[2001 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[1fff 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\264Z\225\227qo\352\032\026\002 ;\006CP\307|>\367P\204?\310\036\355{\323!\032\217\035\351\220\246\214\356\313\227\346\006P\256\301" > alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020|" signature:"0D\002 \020?\253\036\327\370CQYF\256\014\344\021&\223\345\243\212\312\304+>)\t\375\024\207H\335nm\002 \010\336\314\237\371\035\244\300\202\301\24500\214rt\254+43\224\234R\340\375\347\242NL\364b\234" > +[2002 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2003 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2004 06-12 02:15:48.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2005 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2006 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2007 06-12 02:15:48.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2008 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2009 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[200a 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[200b 06-12 02:15:49.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[200c 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[200d 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[200e 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[200f 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[2010 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2011 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[2012 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2013 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2014 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[2015 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2016 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2017 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2018 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[2019 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes to 1 peers +[201a 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020}" signature:"0E\002!\000\3454L\2073\211/*#\026\337>\261\331\023A\314=\000m\200\3646T4 \202\217t\r\325N\002 L\"\352\211d\367\026\0237d\305\030\305\367\001\013n\331\265z\354M\361)\273@\026p\257\250_M" secret_envelope: > +[201b 06-12 02:15:49.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes +[201c 06-12 02:15:49.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[201d 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[201e 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[201f 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2020 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2021 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[2022 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[2023 06-12 02:15:51.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2024 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[2025 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2026 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2027 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[2028 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2029 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[202a 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[202b 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[202c 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[202d 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[202e 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[202f 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[2030 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2031 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[2032 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[2034 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes to 1 peers +[2035 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[2036 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2037 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[2038 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2033 06-12 02:15:51.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2039 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[203a 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[203b 06-12 02:15:51.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[203c 06-12 02:15:52.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[203d 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[203e 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[203f 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2040 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2041 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2042 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2044 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2043 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2045 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2046 06-12 02:15:52.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2047 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2048 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2049 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[204a 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[204b 06-12 02:15:52.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[204c 06-12 02:15:52.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[204d 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes to 1 peers +[204e 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[204f 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[2050 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[2051 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2052 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[2053 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2054 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[2055 06-12 02:15:52.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2056 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[2057 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2058 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2059 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[205a 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[205b 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[205c 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[205d 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[205e 06-12 02:15:52.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[205f 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[2060 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes to 1 peers +[2061 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[2062 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2063 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[2064 06-12 02:15:52.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2065 06-12 02:15:52.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[2066 06-12 02:15:52.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[2067 06-12 02:15:52.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[2068 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[2069 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[206a 06-12 02:15:52.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[206b 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[206c 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[206d 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[206e 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[206f 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[2070 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2071 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[2072 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2073 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2074 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[2075 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2076 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2077 06-12 02:15:52.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2078 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[2079 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes to 1 peers +[207a 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\014\010\234\310\363\300\341\374\321\233\025\020\177" signature:"0D\002 [\361\222\027\315\344ZS\013\242\376<\346\321\341\227w\0348c~\363-j\270\361\201e\334(1w\002 x\247\214F\350\nz\234~\246\215\227W\303:H\224\0316\262!\331~\261\342\306E\013\255\203\357;" > +[207b 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 647 bytes, Signature: 0 bytes +[207c 06-12 02:15:52.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[207d 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[207e 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[207f 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[2080 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2081 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[2082 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2083 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[2085 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[2084 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2086 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2087 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2088 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2089 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[208a 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[208b 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[208c 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[208d 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[208f 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[208e 06-12 02:15:52.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2090 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2091 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2092 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2093 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2094 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[2095 06-12 02:15:52.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2096 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2097 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2098 06-12 02:15:52.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2099 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[209a 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[209b 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[209c 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[209d 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +[209e 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +[209f 06-12 02:15:52.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[20a0 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +[20a1 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[20a2 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[20a3 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes +[20a4 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[20a5 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 272 bytes, Signature: 0 bytes +[20a6 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[20a7 06-12 02:15:52.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\200\001" signature:"0D\002 W\341Vr-\253W>O\252'?#\263W\226p\007\323\246\261\310w\370\013Y\214\272\177\322\231\370\002 4\333\241\215\377\t\246tI\361\333\374\343#W\243\210\222Eb\3222\215\220]!\023\277s\336\346\334" > > , Envelope: 166 bytes, Signature: 0 bytes +[20a8 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[20a9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[20aa 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[20ab 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[20ac 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[20ad 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[20ae 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[20af 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[20b0 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[20b1 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes]} +[20b2 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[20b3 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[20b4 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[20b5 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[20b6 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20b7 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes +[20b8 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[20b9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes]} +[20ba 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[20bb 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[20bc 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[20bd 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[20be 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20bf 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[20c0 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[20c1 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[20c2 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20c3 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[20c4 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[20c5 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[20c6 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[20c7 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[20c8 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[20c9 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[20ca 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20cb 06-12 02:15:52.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[20cc 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[20cd 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[20ce 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[20cf 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[20d0 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 128 but got ts: inc_num:1528769651824440500 seq_num:127 +[20d1 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20d2 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[20d3 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[20d4 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[20d5 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20d6 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes +[20d7 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[20d9 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[20d8 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 125 but got ts: inc_num:1528769653227426900 seq_num:124 +[20db 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20dc 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[20dd 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[20da 06-12 02:15:52.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[20df 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[20de 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[20e0 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[20e1 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[20e2 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[20e3 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[20e4 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20e5 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[20e6 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[20e7 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[20e8 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[20e9 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[20ea 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[20eb 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20ec 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[20ed 06-12 02:15:52.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[20ee 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[20ef 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[20f0 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[20f1 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 70 bytes in aliveMembership +[20f2 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[20f3 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[20f4 06-12 02:15:52.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[20f5 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[20f6 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[20f7 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[20f8 06-12 02:15:52.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[20f9 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[20fa 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[20fb 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[20fc 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[20fd 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[20fe 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[20ff 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2100 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2101 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2102 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2103 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2104 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2105 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2106 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2107 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2108 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2109 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[210a 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[210b 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[210c 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[210d 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[210e 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[210f 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2110 06-12 02:15:52.48 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2111 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2112 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2113 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2114 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2115 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2116 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2117 06-12 02:15:52.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2118 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2119 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[211a 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[211b 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[211c 06-12 02:15:52.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[211d 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[211e 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[211f 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2120 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2121 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2122 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2123 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2124 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2125 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2126 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2127 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2128 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2129 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[212a 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[212b 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers +[212c 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:N[o\017\212\311\345^H\225H+!\267\224\253j>E\247!\223\264\375\003\002 a\341\317\312o,X\001\252\203\376\347\326].+\366\247\302\311\016\243 alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\201\001" signature:"0D\002 I\276l\243\\\233\306\030\373\317c\215 \177\026\235\263\3567,\305_\202\351\"\242S\007\023\020\024\372\002 pb\314}\314\374g\037c\201 +[212d 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +[212e 06-12 02:15:52.54 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[212f 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2130 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2131 06-12 02:15:52.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2132 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2133 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2134 06-12 02:15:52.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2135 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2136 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2137 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2138 06-12 02:15:53.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2139 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[213a 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[213b 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[213c 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[213d 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[213e 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[213f 06-12 02:15:53.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2140 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2141 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2142 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2143 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2144 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2145 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 83 bytes, Signature: 71 bytes in aliveMembership +[2146 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2147 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2148 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2149 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[214a 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[214b 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[214c 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[214d 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[214e 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[214f 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2150 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2151 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2152 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2153 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2154 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2155 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2156 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2157 06-12 02:15:53.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2158 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2159 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[215a 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[215b 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[215c 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[215d 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[215e 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[215f 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2160 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2161 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2162 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2163 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2164 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[2165 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +[2166 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\202\001" signature:"0E\002!\000\340\262\326\376\364\025^\204_\356\367D74\233`O9\2745\353\"\0135\311\204\250\031\231\236\n\001\002 }C\310\211\203\\LN\037\250\333\227\205\r\352w\356%\254\002}\031+\034\227l\320\343\351z\177\337" secret_envelope:\003\021\310X\236\025\016\301X67\016\027\243r\212C\304\277\237@\225\\\234 \362\343V\002 !\247\215 1n;\257\370\271\260\251S\355\035|O\024\302\n\217\3520~\310\017\212\326\304=+n" > > +[2167 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +[2168 06-12 02:15:53.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2169 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[216a 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[216b 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[216d 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[216c 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[216e 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[216f 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2170 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2171 06-12 02:15:56.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2172 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2173 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2174 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2175 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2176 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2177 06-12 02:15:56.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2178 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +[2179 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +[217a 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[217b 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > > , Envelope: 166 bytes, Signature: 0 bytes +[217c 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[217d 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[217e 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[217f 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2180 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2181 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2182 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2183 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2184 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2185 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[2186 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +[2187 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:ox\336!?\274\022\177\336X\320]*\204\346\034?\376\372\t8\321\206\312\247}\212\2706" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\203\001" signature:"0E\002!\000\3173x\001\352\276Gw\236\342r\210F\222\256\210\274kB\261\325\016u.\334\361\235%R\225i'\002 ^jS\023\262\201\352\301\261\270\277\350\240\216*\332\351\343\265q\247!\333\t-\240\353\246 \202\304\"" > +[2188 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[2189 06-12 02:15:56.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[218a 06-12 02:15:56.32 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[218b 06-12 02:15:56.32 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[218c 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[218d 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[218e 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[218f 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[2190 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2191 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2192 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2193 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2194 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2195 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2196 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2197 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2198 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2199 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[219a 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[219b 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[219c 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[219d 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[219e 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[219f 06-12 02:15:56.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[21a0 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[21a1 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21a2 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[21a3 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[21a4 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[21a5 06-12 02:15:56.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21a6 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[21a7 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[21a8 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[21a9 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[21aa 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +[21ab 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 49 bytes, Signature: 0 bytes +[21ac 06-12 02:15:56.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21ad 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[21ae 06-12 02:15:56.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21af 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[21b0 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" secret_envelope: > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +[21b1 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21b3 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 272 bytes, Signature: 0 bytes +[21b4 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[21b2 06-12 02:15:56.37 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[21b5 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[21b7 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes +[21b6 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\204\001" signature:"0D\002 \t\332\301\316\200_\222:\337\260\211\006\277\233\327|Q\204\277\254!?\263\312s\202r\222\361zq\230\002 !\2349\037]b\263\367\226V\224\263\341KT\2347\200\373{\2643\314\240\206\324\211\330\026\371o\225" > > , Envelope: 166 bytes, Signature: 0 bytes +[21b8 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[21b9 06-12 02:15:56.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[21ba 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +[21bb 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[21bc 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +[21bd 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21be 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[21bf 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes +[21c0 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21c1 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[21c2 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[21c3 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21c4 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21c5 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[21c6 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21c7 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21c8 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21c9 06-12 02:15:56.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[21ca 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[21cb 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21cc 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21cd 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[21ce 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[21cf 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[21d0 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[21d1 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[21d2 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[21d3 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21d4 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[21d5 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21d6 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[21d8 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21d9 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[21d7 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[21db 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21dc 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[21da 06-12 02:15:56.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21dd 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21df 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21de 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[21e0 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[21e1 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[21e2 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 133 but got ts: inc_num:1528769652429776900 seq_num:132 +[21e3 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21e4 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21e5 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[21e6 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[21e7 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[21e8 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[21e9 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[21ea 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[21eb 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21ec 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[21ed 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[21ee 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[21ef 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[21f0 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[21f1 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[21f2 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[21f3 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21f4 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[21f5 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[21f6 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[21f7 06-12 02:15:56.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[21f8 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[21f9 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[21fa 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[21fb 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[21fc 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[21fd 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[21fe 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[21ff 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2200 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2201 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2202 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2203 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2204 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[2205 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[2206 06-12 02:15:56.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2207 06-12 02:15:56.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2208 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2209 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[220a 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[220b 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[220c 06-12 02:15:56.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[220d 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[220e 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[220f 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2210 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2211 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2212 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2213 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2214 06-12 02:15:56.54 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2215 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2216 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2217 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2218 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[221a 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[2219 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[221b 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +[221d 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[221c 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\205\001" signature:"0D\002 Z\242$T\313\2430p\246\255lN\242WW\224g\2556\345\317~\204pH\315\037e\035\252\337,\002 \"\357\262\370-:\227\345\265A\030\271 M\371d\220\r\335\r\301\027\032\210[\332\003yi5Z\034" > +[221e 06-12 02:15:56.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[221f 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2220 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2221 06-12 02:15:56.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2222 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2223 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2224 06-12 02:15:56.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2225 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2226 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2227 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2228 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2229 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[222a 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[222b 06-12 02:15:56.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[222c 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[222d 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[222e 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[222f 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2230 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2231 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2232 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2233 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2234 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2235 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2236 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2237 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2238 06-12 02:15:56.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2239 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[223a 06-12 02:15:56.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[223b 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[223c 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[223d 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[223e 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[223f 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2240 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2241 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2242 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2243 06-12 02:15:56.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2244 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[2245 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2246 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2247 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2248 06-12 02:15:57.21 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2249 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[224a 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[224b 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[224c 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[224d 06-12 02:15:57.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[224e 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[224f 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[2250 06-12 02:15:57.25 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[2251 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[2252 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[2253 06-12 02:15:57.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2254 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2255 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2256 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2257 06-12 02:15:57.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2258 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2259 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[225a 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[225b 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[225c 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[225d 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[225e 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[225f 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2260 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2261 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2262 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2263 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2264 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[2265 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +[2266 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\207\001" signature:"0D\002 ~\207\222_\327\377\363\365N\005a:\177@\232\260u\215c\347\364\204}\356\232d\n+\r\217\373\207\002 \t\014\237X\304\377,#\230\215\031J8\361v`y\25124r\344\344\204)\322\020\225\266*\342\311" secret_envelope: > +[2267 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +[2268 06-12 02:15:57.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2269 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44280 +[226a 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429b77fb0 +[226b 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[226c 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[226d 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[226e 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[226f 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[2270 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429ba0af0, header 0xc429c00330 +[2271 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[2272 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][5cefd27d] processing txid: 5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f +[2273 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] +[2274 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +[2275 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2276 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] +[2277 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][5cefd27d] Entry chaincode: name:"exp02" +[2278 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f,syscc=true,proposal=0xc429ba0af0,canname=lscc:1.2.0) +[2279 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[227a 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +[227b 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cefd27d]Received message TRANSACTION from peer +[227c 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5cefd27d] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[227d 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5cefd27d] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[227e 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +[227f 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5cefd27d] Sending GET_STATE +[2280 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5cefd27d] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[2281 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5cefd27d] handling GET_STATE from chaincode +[2282 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [5cefd27d] getting state for chaincode lscc, key exp02, channel businesschannel +[2283 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[2284 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5cefd27d] Completed GET_STATE. Sending RESPONSE +[2285 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cefd27d]Received message RESPONSE from peer +[2286 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5cefd27d] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[2287 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [5cefd27d] before send +[2288 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [5cefd27d] after send +[2289 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5cefd27d] Received RESPONSE, communicated (state:ready) +[228a 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5cefd27d] GetState received payload RESPONSE +[228b 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5cefd27d] Transaction completed. Sending COMPLETED +[228c 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [5cefd27d] send state message COMPLETED +[228d 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5cefd27d] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[228e 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [5cefd27d] notifying Txid:5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f, channelID:businesschannel +[228f 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +[2290 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[2291 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] Entry chaincode: name:"exp02" version: 1.0 +[2292 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f,syscc=false,proposal=0xc429ba0af0,canname=exp02:1.0) +[2293 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +[2294 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[2295 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5cefd27d] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[2296 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5cefd27d] handling GET_STATE from chaincode +[2297 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [5cefd27d] getting state for chaincode exp02, key a, channel businesschannel +[2298 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +[2299 06-12 02:15:57.44 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5cefd27d] Completed GET_STATE. Sending RESPONSE +[229a 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5cefd27d] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[229b 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [5cefd27d] notifying Txid:5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f, channelID:businesschannel +[229c 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[229d 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] Exit +[229e 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[229f 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] +[22a0 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][5cefd27d] Exit +[22a1 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5cefd27d] Entry chaincode: name:"exp02" +[22a2 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5cefd27d] escc for chaincode name:"exp02" is escc +[22a3 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f, chaincode: exp02} +[22a4 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f, chaincode: exp02} +[22a5 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5cefd27d] Exit +[22a6 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5cefd27d5c430b4a677cd981873c1e9dfc99e3fbd58a0db2d1789fa840d0794f] +[22a7 06-12 02:15:57.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44280 +[22a8 06-12 02:15:57.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22a9 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22aa 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[22ab 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[22ac 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22ad 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22ae 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[22af 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[22b0 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[22b1 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[22b2 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[22b3 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[22b4 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[22b5 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[22b6 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22b7 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[22b8 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[22b9 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22ba 06-12 02:15:57.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[22bb 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[22bc 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[22bd 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22be 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[22bf 06-12 02:15:57.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22c0 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[22c1 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22c2 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22c3 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[22c4 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[22c5 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22c6 06-12 02:15:57.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[22c7 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22c8 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[22c9 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[22ca 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22cb 06-12 02:15:58.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22cc 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[22cd 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[22ce 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[22cf 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[22d0 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[22d1 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[22d2 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[22d3 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[22d4 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[22d5 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[22d6 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22d7 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[22d8 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22d9 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[22da 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22db 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22dc 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[22dd 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22de 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[22df 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22e0 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[22e1 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22e2 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[22e3 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[22e4 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[22e5 06-12 02:15:58.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[22e6 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [6], peers number [3] +[22e7 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [6], peers number [3] +[22e8 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[22e9 06-12 02:15:59.29 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[22ea 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc429cbf480 env 0xc429c84b40 txn 0 +[22eb 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc429c84b40 +[22ec 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +[22ed 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[22ee 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +[22ef 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{Org2MSP 59b7ba5ebc145f21ff3086ab93f8b8f37b431d6cacb5d7da9f74bc3881150626} +[22f0 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +[22f1 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +[22f2 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes to 1 peers +[22f4 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 4791 bytes, seq: 6}, Envelope: 4821 bytes, Signature: 0 bytes +[22f3 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction starts for data 0xc429c40800, header channel_header:"\010\003\032\013\010\335\331\374\330\005\020\374\326\244z\"\017businesschannel*@a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710:\t\022\007\022\005exp02" signature_header:"\n\242\006\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAcCgAwIBAgIRAKDI5SW/DKk8iud2Fn5Trm0wCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzIuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzIuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI3WhcNMjgwMTI4MDc0MDI3\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAwwWQWRtaW5Ab3JnMi5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABAQ9na8UsCr3p8AJwpWigvwdZrxI4jSq\nEh9vNmDBomlvp25Nf9R2PiKHJjmNlwou61bRNZureo1YgnjCVOAi9a2jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIK76CHEPKXwL\nnvW56xxAsxVxheiwdt21WkMCcNCjGzu8MAoGCCqGSM49BAMCA0cAMEQCIHgdnBLw\nj416BGm+jDedq8matVcyd3onEit77s6ugAmXAiAtrkM/Ket2tj3n62vE1Dm/mVMB\n5Y80QLeEvYkoMMMbcA==\n-----END CERTIFICATE-----\n\022\030u\210C\275\247\320B>2:\223P\027\324\333\025\375\261t\2554wx\231" +[22f6 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[22f5 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: there are 1 actions +[22f7 06-12 02:15:59.30 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateEndorserTransaction -> DEBU validateEndorserTransaction info: signature header is valid +[22f8 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope returns err %!s() +[22f9 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +[22fa 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] validateTx.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] +[22fb 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Validating transaction vscc tx validate +[22fc 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx starts for bytes 0xc4289a8400 +[22fd 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.NewQueryExecutor.NewQueryExecutor.NewQueryExecutor.newQueryExecutor -> DEBU constructing new query executor txid = [3e67bb5b-2e03-49f2-b1d9-0e7f15487110] +[22fe 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[22ff 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] validateTx.VSCCValidateTx.GetInfoForValidate.getCDataForCC.Done -> DEBU Done with transaction simulation / query execution [3e67bb5b-2e03-49f2-b1d9-0e7f15487110] +[2300 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC -> DEBU Validating Tx a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710, seq 0 out of 1 in block 6 for channel businesschannel with validation plugin vscc with plugin +[2301 06-12 02:15:59.31 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate.Validate.deduplicateIdentity -> DEBU Signature set is of size 1 out of 1 endorsement(s) +[2302 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/handlers/validation/builtin] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin.Validate -> DEBU block 6, namespace: exp02, tx 0 validation results is: +[2303 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx.VSCCValidateTxForCC.ValidateWithPlugin -> DEBU Transaction a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 appears to be valid +[2304 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx.VSCCValidateTx -> DEBU VSCCValidateTx completes env bytes 0xc4289a8400 +[2305 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc429cbf480 env 0xc429c84b40 txn 0 +[2306 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[2307 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[2308 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [6] +[2309 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[230a 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [6] +[230b 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[230c 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=ENDORSER_TRANSACTION +[230d 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=a +[230e 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [a]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +[230f 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=exp02, key=b +[2310 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [b]: committed version=&version.Height{BlockNum:0x5, TxNum:0x0} and read version=&version.Height{BlockNum:0x5, TxNum:0x0} +[2311 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead.GetVersion.GetVersion.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[2312 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch.validateEndorserTX.validateTx.validateReadSet.validateKVRead -> DEBU Comparing versions for key [exp02]: committed version=&version.Height{BlockNum:0x3, TxNum:0x0} and read version=&version.Height{BlockNum:0x3, TxNum:0x0} +[2313 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [6] Transaction index [0] TxId [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] marked as valid by state validator +[2314 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[2315 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[2316 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[2317 06-12 02:15:59.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] to storage +[2318 06-12 02:15:59.33 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [6] +[2319 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=6, blockHash=[]byte{0x12, 0x94, 0xe5, 0x39, 0xf6, 0xe8, 0xbe, 0xfb, 0xa0, 0xcc, 0x5d, 0x8, 0x16, 0x74, 0xa, 0xdc, 0xf, 0x11, 0x32, 0x37, 0x9b, 0x1e, 0x59, 0x66, 0x4, 0xb5, 0xd8, 0x4c, 0xce, 0xe8, 0xdd, 0x43} txOffsets= +txId=a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 locPointer=offset=70, bytesLength=2915 ] -[2261 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to index -[2262 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55600, bytesLength=2917] for tx number:[0] ID: [55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5] to blockNumTranNum index -[2263 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] -[2264 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] -[2265 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] -[2266 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) -[2267 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database -[2268 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[2269 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[226a 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] -[226b 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] -[226c 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[226d 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] -[226e 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database -[226f 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions -[2270 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] -[2271 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[2272 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: 55fed17c80128b473cb3254497e176a67628a9a0f79bf45f3646489524cd86a5 -[2273 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[2274 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[2275 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[2276 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[2277 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[2278 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[2279 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[227a 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[227b 05-31 05:23:21.64 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[227c 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[227d 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[227e 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[227f 05-31 05:23:21.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2280 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2281 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2282 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2283 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2284 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2285 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2286 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2287 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2288 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2289 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[228b 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[228c 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[228d 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[228e 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[228f 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[228a 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2290 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2291 05-31 05:23:21.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2292 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2294 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2293 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2295 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2296 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2297 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2298 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2299 05-31 05:23:21.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[229a 05-31 05:23:21.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[229b 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[229c 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[229d 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[229e 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[229f 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[22a0 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22a1 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[22a2 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22a3 05-31 05:23:21.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[22a4 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22a5 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[22a6 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[22a7 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22a8 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22a9 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[22aa 05-31 05:23:21.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[22ab 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[22ac 05-31 05:23:21.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[22ad 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[22ae 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[22af 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[22b0 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[22b1 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22b2 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22b3 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[22b4 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[22b5 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22b6 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[22b7 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[22b8 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[22b9 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22bb 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[22ba 05-31 05:23:21.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22bc 05-31 05:23:21.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[22bd 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22be 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[22bf 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[22c0 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[22c1 05-31 05:23:21.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[22c2 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55410 -[22c3 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429ad0b10 -[22c4 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[22c5 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[22c6 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[22c7 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[22c8 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[22c9 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429a258b0, header 0xc429ad0e70 -[22ca 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" -[22cb 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][c2348d62] processing txid: c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0 -[22cc 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] -[22cd 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose -[22ce 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[22cf 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] -[22d0 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][c2348d62] Entry chaincode: name:"exp02" -[22d1 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0,syscc=true,proposal=0xc429a258b0,canname=lscc:1.2.0) -[22d2 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[22d3 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry -[22d4 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2348d62]Received message TRANSACTION from peer -[22d5 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2348d62] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[22d6 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c2348d62] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[22d7 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -[22d8 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c2348d62] Sending GET_STATE -[22d9 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c2348d62] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[22da 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2348d62] handling GET_STATE from chaincode -[22db 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [c2348d62] getting state for chaincode lscc, key exp02, channel businesschannel -[22dc 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[22dd 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2348d62] Completed GET_STATE. Sending RESPONSE -[22de 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2348d62]Received message RESPONSE from peer -[22df 05-31 05:23:21.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [c2348d62] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[22e0 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [c2348d62] before send -[22e1 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [c2348d62] after send -[22e2 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [c2348d62] Received RESPONSE, communicated (state:ready) -[22e3 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [c2348d62] GetState received payload RESPONSE -[22e4 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [c2348d62] Transaction completed. Sending COMPLETED -[22e5 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [c2348d62] send state message COMPLETED -[22e6 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c2348d62] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[22e7 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c2348d62] notifying Txid:c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0, channelID:businesschannel -[22e8 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit -[22e9 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache -[22ea 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] Entry chaincode: name:"exp02" version: 1.0 -[22eb 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0,syscc=false,proposal=0xc429a258b0,canname=exp02:1.0) -[22ec 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 -[22ed 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[22ee 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c2348d62] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[22ef 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2348d62] handling GET_STATE from chaincode -[22f0 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [c2348d62] getting state for chaincode exp02, key a, channel businesschannel -[22f1 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a -[22f2 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [c2348d62] Completed GET_STATE. Sending RESPONSE -[22f3 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [c2348d62] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[22f4 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [c2348d62] notifying Txid:c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0, channelID:businesschannel -[22f5 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[22f6 05-31 05:23:22.00 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] Exit -[22f7 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[22f8 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] -[22f9 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][c2348d62] Exit -[22fa 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][c2348d62] Entry chaincode: name:"exp02" -[22fb 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][c2348d62] escc for chaincode name:"exp02" is escc -[22fc 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0, chaincode: exp02} -[22fd 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0, chaincode: exp02} -[22fe 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][c2348d62] Exit -[22ff 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [c2348d627831b324688784f7d4bf234e1ad5df1fba928cb252ba25058ebebbf0] -[2300 05-31 05:23:22.01 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55410 -[2301 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55414 -[2302 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429adf050 -[2303 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[2304 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[2305 05-31 05:23:22.55 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[2306 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[2307 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[2308 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429b6c2d0, header 0xc429adf3b0 -[2309 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[230a 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][a95d329e] processing txid: a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e -[230b 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] -[230c 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[230d 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] -[230e 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a95d329e] Entry chaincode: name:"lscc" -[230f 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] Entry chaincode: name:"lscc" version: 1.2.0 -[2310 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e,syscc=true,proposal=0xc429b6c2d0,canname=lscc:1.2.0) -[2311 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[2312 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[2313 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a95d329e]Received message TRANSACTION from peer -[2314 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a95d329e] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[2315 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a95d329e] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[2316 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/ChaincodeExists -[2317 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [a95d329e] Sending GET_STATE -[2318 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a95d329e] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[2319 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a95d329e] handling GET_STATE from chaincode -[231a 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [a95d329e] getting state for chaincode lscc, key exp02, channel businesschannel -[231b 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[231c 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a95d329e] Completed GET_STATE. Sending RESPONSE -[231d 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a95d329e]Received message RESPONSE from peer -[231e 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a95d329e] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[231f 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a95d329e] before send -[2320 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a95d329e] after send -[2321 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a95d329e] Received RESPONSE, communicated (state:ready) -[2322 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [a95d329e] GetState received payload RESPONSE -[2323 05-31 05:23:22.56 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a95d329e] Transaction completed. Sending COMPLETED -[2324 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a95d329e] send state message COMPLETED -[2325 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a95d329e] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[2326 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a95d329e] notifying Txid:a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e, channelID:businesschannel -[2327 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[2328 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] Exit -[2329 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[232a 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] -[232b 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a95d329e] Exit -[232c 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a95d329e] Entry chaincode: name:"lscc" -[232d 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a95d329e] escc for chaincode name:"lscc" is escc -[232e 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e, chaincode: lscc} -[232f 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e, chaincode: lscc} -[2330 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a95d329e] Exit -[2331 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a95d329e126a3926a8d4a6e433c79996733b92552f428287f6f7efc3b7e3973e] -[2332 05-31 05:23:22.57 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55414 -[2333 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55416 -[2334 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429b54cc0 -[2335 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[2336 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[2337 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[2338 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[2339 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[233a 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429bb8370, header 0xc429b55020 -[233b 05-31 05:23:22.72 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[233c 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][2658e5a7] processing txid: 2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c -[233d 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] -[233e 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[233f 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] -[2340 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2658e5a7] Entry chaincode: name:"lscc" -[2341 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] Entry chaincode: name:"lscc" version: 1.2.0 -[2342 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c,syscc=true,proposal=0xc429bb8370,canname=lscc:1.2.0) -[2343 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[2344 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[2345 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2658e5a7]Received message TRANSACTION from peer -[2346 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2658e5a7] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[2347 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2658e5a7] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[2348 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetDeploymentSpec -[2349 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2658e5a7] Sending GET_STATE -[234a 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2658e5a7] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[234b 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2658e5a7] handling GET_STATE from chaincode -[234c 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [2658e5a7] getting state for chaincode lscc, key exp02, channel businesschannel -[234d 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[234e 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2658e5a7] Completed GET_STATE. Sending RESPONSE -[234f 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2658e5a7]Received message RESPONSE from peer -[2350 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2658e5a7] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[2351 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2658e5a7] before send -[2352 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2658e5a7] after send -[2353 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2658e5a7] Received RESPONSE, communicated (state:ready) -[2354 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2658e5a7] GetState received payload RESPONSE -[2355 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2658e5a7] Transaction completed. Sending COMPLETED -[2356 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [2658e5a7] send state message COMPLETED -[2357 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2658e5a7] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[2358 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2658e5a7] notifying Txid:2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c, channelID:businesschannel -[2359 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[235a 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] Exit -[235b 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[235c 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] -[235d 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2658e5a7] Exit -[235e 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2658e5a7] Entry chaincode: name:"lscc" -[235f 05-31 05:23:22.73 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2658e5a7] escc for chaincode name:"lscc" is escc -[2360 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c, chaincode: lscc} -[2361 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c, chaincode: lscc} -[2362 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2658e5a7] Exit -[2363 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2658e5a7df5c244e99fbbca5be34ac95f0b2b9babed2f9795cc71a4d6a87760c] -[2364 05-31 05:23:22.74 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55416 -[2365 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2366 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2367 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2368 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[2369 05-31 05:23:22.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[236a 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[236b 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[236c 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[236d 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2370 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[236e 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2371 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 779 bytes, Signature: 0 bytes -[2373 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2372 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[236f 05-31 05:23:22.90 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55418 -[2374 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[2375 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -[2377 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[2378 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2376 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429ba0780 -[2379 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[237a 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[237b 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[237c 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[237d 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[237e 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429b6d9f0, header 0xc429c78600 -[237f 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[2380 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][7136f80e] processing txid: 7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b -[2381 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] -[2382 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2383 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] -[2384 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][7136f80e] Entry chaincode: name:"lscc" -[2385 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] Entry chaincode: name:"lscc" version: 1.2.0 -[2386 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b,syscc=true,proposal=0xc429b6d9f0,canname=lscc:1.2.0) -[2387 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[2388 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[2389 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7136f80e]Received message TRANSACTION from peer -[238a 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7136f80e] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[238b 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [7136f80e] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[238c 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[238d 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[238e 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[238f 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2390 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData -[2391 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7136f80e] Sending GET_STATE -[2392 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [7136f80e] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready -[2393 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7136f80e] handling GET_STATE from chaincode -[2394 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [7136f80e] getting state for chaincode lscc, key exp02, channel businesschannel -[2395 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 -[2396 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [7136f80e] Completed GET_STATE. Sending RESPONSE -[2397 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7136f80e]Received message RESPONSE from peer -[2398 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [7136f80e] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[2399 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [7136f80e] before send -[239a 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [7136f80e] after send -[239b 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [7136f80e] Received RESPONSE, communicated (state:ready) -[239c 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [7136f80e] GetState received payload RESPONSE -[239d 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [7136f80e] Transaction completed. Sending COMPLETED -[239e 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [7136f80e] send state message COMPLETED -[239f 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [7136f80e] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[23a0 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [7136f80e] notifying Txid:7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b, channelID:businesschannel -[23a1 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[23a2 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] Exit -[23a3 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[23a4 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] -[23a5 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][7136f80e] Exit -[23a6 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][7136f80e] Entry chaincode: name:"lscc" -[23a7 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][7136f80e] escc for chaincode name:"lscc" is escc -[23a8 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b, chaincode: lscc} -[23a9 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b, chaincode: lscc} -[23aa 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][7136f80e] Exit -[23ab 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [7136f80efab9326d5d55f840605614dd59a7c5aa9ae0ef0b503bf22688304d2b] -[23ac 05-31 05:23:22.91 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55418 -[23ad 05-31 05:23:22.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23ae 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[23af 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[23b0 05-31 05:23:22.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23b1 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[23b2 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[23b3 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23b4 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[23b5 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[23b6 05-31 05:23:22.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[23b7 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[23b8 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[23b9 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[23ba 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[23bb 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[23bc 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[23bd 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[23be 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[23bf 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -[23c0 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\310\316ZR\032@\253\031\217\213\020:\317\233\374R\317*\003\037\233\312\177\307\246\204" > alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\215\001" signature:"0D\002 s\266\353a -[23c1 05-31 05:23:22.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[23c2 05-31 05:23:22.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[23c3 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[23c4 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[23c5 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[23c6 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[23c7 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -[23c8 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -[23c9 05-31 05:23:22.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23ca 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[23cb 05-31 05:23:23.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23cc 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[23cd 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23ce 05-31 05:23:23.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[23cf 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23d0 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[23d1 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[23d2 05-31 05:23:23.12 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23d3 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55420 -[23d4 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429d07d10 -[23d5 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[23d6 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[23d7 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[23d8 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[23d9 05-31 05:23:23.13 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[23da 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429ced3b0, header 0xc429d94090 -[23db 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[23dc 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][cc2ce04f] processing txid: cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216 -[23dd 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] -[23de 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[23df 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] -[23e0 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][cc2ce04f] Entry chaincode: name:"lscc" -[23e1 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] Entry chaincode: name:"lscc" version: 1.2.0 -[23e2 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216,syscc=true,proposal=0xc429ced3b0,canname=lscc:1.2.0) -[23e3 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[23e4 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[23e5 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc2ce04f]Received message TRANSACTION from peer -[23e6 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [cc2ce04f] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[23e7 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [cc2ce04f] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[23e8 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [cc2ce04f] Transaction completed. Sending COMPLETED -[23e9 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [cc2ce04f] send state message COMPLETED -[23ea 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [cc2ce04f] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[23eb 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [cc2ce04f] notifying Txid:cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216, channelID:businesschannel -[23ec 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[23ed 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] Exit -[23ee 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[23ef 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] -[23f0 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][cc2ce04f] Exit -[23f1 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][cc2ce04f] Entry chaincode: name:"lscc" -[23f2 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][cc2ce04f] escc for chaincode name:"lscc" is escc -[23f3 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216, chaincode: lscc} -[23f4 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216, chaincode: lscc} -[23f5 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][cc2ce04f] Exit -[23f6 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [cc2ce04fcdde8ad88704c3d1e028245fb949923b45e8814abadf7c6a7be82216] -[23f7 05-31 05:23:23.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55420 -[23f8 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[23f9 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[23fa 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[23fb 05-31 05:23:23.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[23fc 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55422 -[23fd 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429cebd40 -[23fe 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[23ff 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[2400 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[2401 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[2402 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[2403 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429d74780, header 0xc429dea0c0 -[2404 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" -[2405 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][a45f011a] processing txid: a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b -[2406 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] -[2407 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[2408 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] -[2409 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a45f011a] Entry chaincode: name:"lscc" -[240a 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] Entry chaincode: name:"lscc" version: 1.2.0 -[240b 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b,syscc=true,proposal=0xc429d74780,canname=lscc:1.2.0) -[240c 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 -[240d 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[240e 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a45f011a]Received message TRANSACTION from peer -[240f 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a45f011a] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[2410 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a45f011a] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[2411 05-31 05:23:23.28 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetInstantiatedChaincodes -[2412 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [a45f011a] Sending GET_STATE_BY_RANGE -[2413 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a45f011a] Fabric side handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready -[2414 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a45f011a] handling GET_STATE_BY_RANGE from chaincode -[2415 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] HandleGetStateByRange-fm.HandleGetStateByRange.GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] -[2416 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] HandleGetStateByRange-fm.HandleGetStateByRange.BuildQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result -[2417 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetStateByRange-fm.HandleGetStateByRange -> DEBU Got keys and values. Sending RESPONSE -[2418 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a45f011a] Completed GET_STATE_BY_RANGE. Sending RESPONSE -[2419 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a45f011a]Received message RESPONSE from peer -[241a 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a45f011a] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[241b 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a45f011a] before send -[241c 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a45f011a] after send -[241d 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a45f011a] Received RESPONSE, communicated (state:ready) -[241e 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [a45f011a] Received RESPONSE. Successfully got range -[241f 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [a45f011a] Sending QUERY_STATE_CLOSE -[2420 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a45f011a] Fabric side handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready -[2421 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a45f011a] handling QUERY_STATE_CLOSE from chaincode -[2422 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [a45f011a] Completed QUERY_STATE_CLOSE. Sending RESPONSE -[2423 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a45f011a]Received message RESPONSE from peer -[2424 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [a45f011a] Handling ChaincodeMessage of type: RESPONSE(state:ready) -[2425 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a45f011a] before send -[2426 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [a45f011a] after send -[2427 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [a45f011a] Received RESPONSE, communicated (state:ready) -[2428 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [a45f011a] Received RESPONSE. Successfully got range -[2429 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [a45f011a] Transaction completed. Sending COMPLETED -[242a 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [a45f011a] send state message COMPLETED -[242b 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [a45f011a] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[242c 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [a45f011a] notifying Txid:a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b, channelID:businesschannel -[242d 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[242e 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] Exit -[242f 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[2430 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] -[2431 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][a45f011a] Exit -[2432 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a45f011a] Entry chaincode: name:"lscc" -[2433 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a45f011a] escc for chaincode name:"lscc" is escc -[2434 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b, chaincode: lscc} -[2435 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b, chaincode: lscc} -[2436 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][a45f011a] Exit -[2437 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [a45f011a45cfb35b8b8cd658e92558d1d0da842456385a135c8b8375339a2d2b] -[2438 05-31 05:23:23.29 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55422 -[2439 05-31 05:23:23.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[243a 05-31 05:23:23.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[243b 05-31 05:23:23.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[243c 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[243d 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[243e 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[243f 05-31 05:23:23.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2440 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2441 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2442 05-31 05:23:23.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[2443 05-31 05:23:23.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2444 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2445 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2446 05-31 05:23:23.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2447 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[2448 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[2449 05-31 05:23:23.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[244a 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -[244b 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[244c 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 272 bytes, Signature: 0 bytes -[244d 05-31 05:23:23.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[244e 05-31 05:23:23.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[244f 05-31 05:23:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[2450 05-31 05:23:23.69 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2451 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2452 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2453 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2454 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2455 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2456 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[2457 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -[2458 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\216\001" signature:"0D\002 R\317\234^=p\303\201\347v\214\315\335\025\246\3737]\022f\035\317\344~\225\254;U\360&^\373\002 u&g\246_d\301\226\325~\364e\351\274}\310\311\235\326\277\027P'\243\332\375\271~\251k\206\335" secret_envelope: > -[2459 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -[245a 05-31 05:23:23.70 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[245b 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[245c 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[245d 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[245e 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[245f 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[2460 05-31 05:23:23.72 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[2461 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2464 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2462 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2465 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2466 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2463 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2467 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[2469 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[246a 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[246b 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -[246c 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[246d 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[246e 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -[246f 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2470 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\217\001" signature:"0D\002 [\250\214>\320M\233\022\273\001`\017+\214\030\270\276C\375?\004c\216\021s\266\362}\035\025&\242\002 x\273\321:)\337#\326\\x9\3544\354\373a\211\357\216+\027\353\321(k1/\324\210\234\334\023" > > , Envelope: 166 bytes, Signature: 0 bytes -[2471 05-31 05:23:23.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2472 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[2468 05-31 05:23:23.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2473 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2474 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2475 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2476 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2477 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2478 05-31 05:23:23.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2479 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[247a 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[247b 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[247c 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[247d 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[247e 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[247f 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2480 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2481 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2482 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2483 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2484 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2485 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2486 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2487 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2488 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2489 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[248a 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[248b 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[248c 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[248d 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[248e 05-31 05:23:23.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[248f 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2490 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2491 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2492 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2493 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2494 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2495 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2496 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2498 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2499 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -[2497 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[249a 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[249b 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[249c 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 142 but got ts: inc_num:1527744090808810100 seq_num:140 -[249d 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[249e 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55424 -[249f 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429f224e0 -[24a0 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[24a1 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[24a2 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[24a3 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[24a4 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[24a5 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429d75860, header 0xc429f22840 -[24a6 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[24a7 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][f123ecb7] processing txid: f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32 -[24a8 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] -[24aa 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[24a9 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[24ac 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[24ab 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] -[24ad 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f123ecb7] Entry chaincode: name:"qscc" -[24af 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] Entry chaincode: name:"qscc" version: 1.2.0 -[24b0 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32,syscc=true,proposal=0xc429d75860,canname=qscc:1.2.0) -[24b1 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -[24ae 05-31 05:23:23.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[24b3 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[24b4 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[24b5 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[24b2 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[24b7 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f123ecb7]Received message TRANSACTION from peer -[24b6 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[24b8 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[24b9 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[24ba 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f123ecb7] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[24bc 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f123ecb7] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[24bb 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[24bd 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[24bf 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[24be 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel -[24c0 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[24c1 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo -[24c3 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f123ecb7] Transaction completed. Sending COMPLETED -[24c2 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[24c5 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[24c6 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[24c4 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [f123ecb7] send state message COMPLETED -[24c7 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f123ecb7] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[24c9 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f123ecb7] notifying Txid:f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32, channelID:businesschannel -[24ca 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[24cb 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] Exit -[24cc 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[24cd 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] -[24ce 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f123ecb7] Exit -[24cf 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f123ecb7] Entry chaincode: name:"qscc" -[24d0 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f123ecb7] escc for chaincode name:"qscc" is escc -[24d1 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32, chaincode: qscc} -[24d2 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32, chaincode: qscc} -[24d3 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f123ecb7] Exit -[24d4 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f123ecb767050370c010b53fa513b7d2cb5bc6c18f5db3c15d8afa5395166d32] -[24d5 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55424 -[24c8 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -[24d6 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[24d7 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[24d8 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[24d9 05-31 05:23:23.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[24da 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[24db 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[24dc 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[24dd 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[24de 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[24df 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[24e0 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[24e1 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[24e2 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[24e3 05-31 05:23:23.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[24e4 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:55426 -[24e5 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429f23d10 -[24e6 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 -[24e7 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin -[24e8 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} -[24e9 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid -[24ea 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully -[24eb 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429f9c370, header 0xc429fb2090 -[24ec 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" -[24ed 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][20c56ec5] processing txid: 20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959 -[24ee 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] -[24ef 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator -[24f0 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] -[24f1 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][20c56ec5] Entry chaincode: name:"qscc" -[24f2 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] Entry chaincode: name:"qscc" version: 1.2.0 -[24f3 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959,syscc=true,proposal=0xc429f9c370,canname=qscc:1.2.0) -[24f4 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 -[24f5 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry -[24f6 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [20c56ec5]Received message TRANSACTION from peer -[24f7 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [20c56ec5] Handling ChaincodeMessage of type: TRANSACTION(state:ready) -[24f8 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [20c56ec5] Received TRANSACTION, invoking transaction on chaincode(state:ready) -[24f9 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel -[24fa 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetBlockByNumber -[24fb 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] -[24fc 05-31 05:23:23.92 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=[26081] -[24fd 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34232], Going to peek [8] bytes -[24fe 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14014], placementInfo={fileNum=[0], startOffset=[26081], bytesOffset=[26083]} -[24ff 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [20c56ec5] Transaction completed. Sending COMPLETED -[2500 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [20c56ec5] send state message COMPLETED -[2501 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [20c56ec5] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready -[2502 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [20c56ec5] notifying Txid:20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959, channelID:businesschannel -[2503 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit -[2504 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] Exit -[2505 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[2506 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] -[2507 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][20c56ec5] Exit -[2508 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][20c56ec5] Entry chaincode: name:"qscc" -[2509 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][20c56ec5] escc for chaincode name:"qscc" is escc -[250a 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Entering endorsement for {plugin: escc, channel: businesschannel, tx: 20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959, chaincode: qscc} -[250b 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> INFO Exiting {plugin: escc, channel: businesschannel, tx: 20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959, chaincode: qscc} -[250c 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][20c56ec5] Exit -[250d 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [20c56ec5bbe4ce463234141d3986c92234244e2ec837e74914773f73ece37959] -[250e 05-31 05:23:23.92 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:55426 -[250f 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2510 05-31 05:23:23.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2511 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[2512 05-31 05:23:23.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2513 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[2514 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2515 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[2516 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2517 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2518 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2519 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[251a 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[251b 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[251c 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[251d 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[251e 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[251f 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[2520 05-31 05:23:23.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -[2521 05-31 05:23:23.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\220\001" signature:"0D\002 6;\\\273.\247\257\013\350\361Vs\215\350\304A#R\010:\341\252\n}\014O\246\272\236\203\325\273\002 \177\2557\271\237\324\371\335\372\266\266|\235)\371\002\323\177\331Y7\316\262\344\355D\017\230\025_J6" > -[2522 05-31 05:23:23.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[2523 05-31 05:23:23.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2524 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2525 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2526 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2527 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2528 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2529 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[252a 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[252b 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[252c 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[252d 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[252e 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[252f 05-31 05:23:25.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2530 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2531 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2532 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2533 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2534 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2535 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2537 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2536 05-31 05:23:25.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2538 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2539 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[253a 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[253b 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[253c 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[253d 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[253e 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[253f 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2540 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2541 05-31 05:23:25.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2542 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[2543 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[2544 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[2545 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[2546 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2547 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[2548 05-31 05:23:26.00 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[2549 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[254a 05-31 05:23:26.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[254b 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[254c 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[254d 05-31 05:23:26.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[254e 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[254f 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2550 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2551 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2552 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2553 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2554 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2555 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2556 05-31 05:23:26.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2557 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2558 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2559 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[255a 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[255b 05-31 05:23:26.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[255d 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[255e 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[255f 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2560 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2561 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[255c 05-31 05:23:26.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[2562 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[2563 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2564 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2565 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2566 05-31 05:23:26.63 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2567 05-31 05:23:26.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[2568 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[2569 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[256a 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[256b 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[256c 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[256d 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[256e 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[256f 05-31 05:23:26.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2570 05-31 05:23:26.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2571 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2572 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2573 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2574 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[2575 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2576 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[2577 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2578 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2579 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[257a 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[257b 05-31 05:23:26.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[257c 05-31 05:23:26.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[257d 05-31 05:23:26.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[257e 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[257f 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -[2580 05-31 05:23:26.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2581 05-31 05:23:26.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[2582 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2583 05-31 05:23:26.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -[2584 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2585 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\016\233\261\006IRJE_\022" > > , Envelope: 167 bytes, Signature: 0 bytes -[2586 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2587 05-31 05:23:26.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2588 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[2589 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers -[258a 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[258b 05-31 05:23:26.99 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[258c 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -[258d 05-31 05:23:27.00 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes -[258e 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[258f 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2590 05-31 05:23:27.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2591 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2592 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2593 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2594 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2595 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2596 05-31 05:23:27.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2597 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2598 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2599 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[259a 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[259b 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[259c 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[259d 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[259e 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[259f 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[25a0 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[25a1 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[25a2 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[25a3 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25a4 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[25a5 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[25a6 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25a7 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[25a8 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[25a9 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[25aa 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -[25ab 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\016\233\261\006IRJE_\022" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\222\001" signature:"0E\002!\000\277Pnk\331\037\351\276\363\247pQ'\357N2\260\377\305\355:\020H|\253\026uD\260[\255\220\002 m\"D\260]\032)\212\327\006t@\300\373\264\"\264v\264l\317WHHe\262M\275\031C\322\216" > -[25ac 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[25ad 05-31 05:23:27.03 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25ae 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[25af 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25b0 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[25b1 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[25b2 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25b3 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[25b4 05-31 05:23:27.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[25b5 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[25b6 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[25b7 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[25b8 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25b9 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[25ba 05-31 05:23:27.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25bb 05-31 05:23:27.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[25bc 05-31 05:23:27.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25bd 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[25be 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[25bf 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [5 6 1 2 3 4] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[25c0 05-31 05:23:27.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25c1 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[25c2 05-31 05:23:27.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25c3 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[25c4 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[25c5 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[25c6 05-31 05:23:27.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25c7 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[25c8 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[25c9 05-31 05:23:27.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25ca 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[25cb 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25cc 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[25cd 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[25ce 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[25cf 05-31 05:23:27.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[25d0 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[25d1 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[25d2 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[25d3 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[25d4 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[25d5 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[25d6 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[25d7 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes to 1 peers -[25d8 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\223\001" signature:"0D\002 CmJ\263\017}\320\003\202i\305\222\266\332\226\316i4_\352 5'\345\020\345\365\344\366\205\203\010\002 Z\\\t\362Z\336\317|\272\3413\242|\245\330\022E\342\206\023\355X?\373\224\000g\013\335\327\327\331" secret_envelope:\006z\272h{.0\276\033\304\257\030c\336ww\362\341\002 J*\334\030\3013\233\316\222qs\206MM^\345\324\245F\001_\366a6|\210=^\377\326\360\240" > > -[25d9 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 538 bytes, Signature: 0 bytes -[25da 05-31 05:23:27.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25db 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[25dc 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[25dd 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[25de 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[25df 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[25e1 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[25e0 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[25e2 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[25e3 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25e4 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25e5 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[25e6 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25e7 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[25e8 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[25e9 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25ea 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[25eb 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[25ec 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25ed 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[25ee 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[25ef 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[25f0 05-31 05:23:27.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25f1 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[25f2 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[25f4 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[25f3 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -[25f5 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -[25f6 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25f7 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25f8 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\224\001" signature:"0E\002!\000\342\254y*\037\263vD\210\025\225\345\026\342K\3121~l\013\364\220\224\212\313\352\034\232\023\265\232\267\002 u\234W\312\366\361\266\372\034\277\\i\306w\310\024q\316\r%\365\334_\306\214\215\025\317\337\373(\367" > > , Envelope: 167 bytes, Signature: 0 bytes -[25f9 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[25fa 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[25fb 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[25fc 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[25fd 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[25fe 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[25ff 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2600 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2601 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2602 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2603 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2604 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2605 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2606 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2607 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2608 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2609 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[260a 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[260b 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[260c 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[260d 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[260e 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[260f 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2610 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2611 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2612 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2613 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2614 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2615 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2616 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2617 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2618 05-31 05:23:27.74 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2619 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[261a 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[261b 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[261c 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[261d 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 149 but got ts: inc_num:1527744091840124700 seq_num:147 -[261e 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[261f 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2620 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2621 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2622 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2623 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2624 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2625 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2626 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2627 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2628 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -[2629 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[262a 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes -[262b 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[262c 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[262d 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[262e 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[262f 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[2630 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2631 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[2632 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2633 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2634 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[2635 05-31 05:23:27.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2636 05-31 05:23:27.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2637 05-31 05:23:27.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2638 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2639 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[263a 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[263b 05-31 05:23:27.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[263c 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -[263d 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[263e 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:+\246\255I\302\333" > > , Envelope: 166 bytes, Signature: 0 bytes -[263f 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2640 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2641 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2642 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2643 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2644 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2645 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2646 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2647 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2648 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[2649 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes to 1 peers -[264a 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:+\246\255I\302\333" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\225\001" signature:"0D\002 \n*4\341R\024\232\233|\230\213\353\253vK\334\337\350\332=\210\337N\363y\204\374\306e>\364\016\002 \027\312\242\032\177\"\246\317}QK:\324\273\314\363S\256\177\366\230\2155//\232\270\017d\236\361b" > -[264b 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 649 bytes, Signature: 0 bytes -[264c 05-31 05:23:27.98 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[264d 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[264e 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2651 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[264f 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2652 05-31 05:23:30.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[2653 05-31 05:23:30.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2654 05-31 05:23:30.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2650 05-31 05:23:30.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2655 05-31 05:23:30.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2656 05-31 05:23:30.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[2657 05-31 05:23:30.93 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2658 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2659 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[265a 05-31 05:23:30.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[265b 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[265c 05-31 05:23:30.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[265d 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[265e 05-31 05:23:30.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[265f 05-31 05:23:30.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2660 05-31 05:23:31.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes -[2661 05-31 05:23:31.02 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2662 05-31 05:23:31.03 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[2663 05-31 05:23:31.03 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[2665 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[2664 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2666 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2667 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[2668 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2669 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[266a 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[266b 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[266e 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[266d 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[266c 05-31 05:23:31.04 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[266f 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2670 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2671 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2672 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2673 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2674 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2675 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2676 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2677 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2678 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[2679 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[267a 05-31 05:23:31.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[267b 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[267c 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[267d 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[267e 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[267f 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2680 05-31 05:23:31.06 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2681 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2682 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -[2683 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes -[2684 05-31 05:23:31.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2685 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2686 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2687 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2688 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2689 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[268a 05-31 05:23:31.12 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[268b 05-31 05:23:31.13 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[268c 05-31 05:23:31.15 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[268d 05-31 05:23:31.16 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -[268f 05-31 05:23:31.16 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:+\246\255I\302\333" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\226\001" signature:"0D\002 *b\334.\302\335y\237\244%W\212\360o\032\231TgW\201@\027\227\017\234]\352\373P\303B'\002 vC\2045\035t\202\223g\017%L|QdD\250\373\016s\314\317\201@\247/\017#K\331\222~" > -[268e 05-31 05:23:31.16 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2690 05-31 05:23:31.16 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[2691 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2692 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2693 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2694 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2695 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2696 05-31 05:23:31.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2697 05-31 05:23:31.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2698 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[2699 05-31 05:23:31.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[269a 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[269b 05-31 05:23:31.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[269c 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[269d 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[269e 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[269f 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26a0 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26a1 05-31 05:23:31.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[26a2 05-31 05:23:31.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[26a3 05-31 05:23:31.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26a4 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26a5 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[26a6 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26a7 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26a8 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26a9 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[26aa 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[26ab 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[26ac 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[26ad 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[26ae 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[26af 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[26b0 05-31 05:23:31.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[26b1 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[26b2 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[26b3 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26b4 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26b5 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26b6 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26b7 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26b8 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26b9 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[26ba 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26bb 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26bc 05-31 05:23:31.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[26bd 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26be 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[26bf 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26c0 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26c1 05-31 05:23:31.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[26c2 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[26c3 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[26c4 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[26c5 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26c6 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[26c7 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[26c8 05-31 05:23:31.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26c9 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -[26ca 05-31 05:23:31.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26cb 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 273 bytes, Signature: 0 bytes -[26cc 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes -[26cd 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[26ce 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} -[26cf 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[26d0 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[26d1 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[26d2 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[26d3 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[26d4 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[26d5 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[26d6 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes to 1 peers -[26d7 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\227\001" signature:"0E\002!\000\200\324\210\010@\236\371!\253\026\372Q1y\214\240\017\230\034\3138\302\220\000|f\303\310W\023\0313\002 k4FqI\274X\246\340N\207\20128G\205\361\347\214\330\343w\270\372\207N\340\206Sj\\\013" secret_envelope:3\267\364-\353\302\014\023\263\226tt\370\351}L\233\233u\232\007\334\302" > > -[26d8 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 540 bytes, Signature: 0 bytes -[26d9 05-31 05:23:31.67 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26da 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[26db 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[26dc 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[26dd 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[26de 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[26df 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[26e0 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[26e1 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26e3 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[26e4 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26e2 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[26e5 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26e6 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[26e7 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[26e8 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[26e9 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26ea 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[26eb 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[26ec 05-31 05:23:31.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26ed 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[26ee 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[26ef 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[26f0 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -[26f1 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26f2 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -[26f3 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26f4 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\230\001" signature:"0D\002 \037\262\271\332\202\025\224\235\202\002\025\366\370\031)\364Qn\t\354\014\301\365AM\207\365C\206\321h\013\002 %\205B\001\324\227\213>P\302.e\006\207&]\030q\341\267Z\022'\024\262\036\212\204\365\260\227\323" > > , Envelope: 166 bytes, Signature: 0 bytes -[26f5 05-31 05:23:31.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[26f6 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[26f7 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[26f8 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[26f9 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[26fa 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[26fb 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[26fc 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[26fd 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[26fe 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[26ff 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2700 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2701 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2702 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2703 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2704 05-31 05:23:31.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2705 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2706 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2707 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2708 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2709 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[270a 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[270c 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[270b 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers -[270d 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -[270e 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes to 1 peers -[270f 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -[2710 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2711 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -[2712 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2713 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -[2714 05-31 05:23:31.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2715 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2716 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2717 05-31 05:23:31.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2718 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2719 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[271a 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[271b 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[271c 05-31 05:23:31.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[271e 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[271f 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2720 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2721 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[271d 05-31 05:23:31.79 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[2722 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2723 05-31 05:23:31.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2724 05-31 05:23:31.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[2725 05-31 05:23:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1527744090808810100, 152 but got ts: inc_num:1527744090808810100 seq_num:150 -[2726 05-31 05:23:31.84 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2727 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2728 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2729 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[272a 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[272b 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[272c 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[272d 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[272e 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[272f 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2730 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2731 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2732 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2733 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2734 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2735 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2736 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2737 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 431 bytes, Signature: 0 bytes -[2738 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -[2739 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[273b 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[273a 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 69 bytes -[273c 05-31 05:23:31.85 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[273d 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[273e 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[273f 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[2740 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2741 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2742 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes in aliveMembership -[2743 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2744 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2745 05-31 05:23:31.86 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2746 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2747 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2748 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2749 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[274a 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[274b 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[274c 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[274d 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[274e 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[274f 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2750 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2751 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2752 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2753 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[2754 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[2755 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2756 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2757 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2758 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2759 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[275a 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[275b 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[275c 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[275d 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[275e 05-31 05:23:31.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[275f 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2760 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2761 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2762 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2763 05-31 05:23:31.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2764 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2765 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2766 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[2767 05-31 05:23:31.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2768 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:36244 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[2769 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[276a 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[276b 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[276c 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[276d 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[276e 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[276f 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2770 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2771 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2772 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2773 05-31 05:23:31.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2774 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[2775 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers -[2777 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2778 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2776 05-31 05:23:32.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\2704\201S\343\350\007\271A*u\241\206\307?nl\006\021\333\000\230\002 ^\352?\275QJYFg]\3576A\242>\237\020\337\034\335\265)Nz(f&\202\227\223\202\020" > alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\232\001" signature:"0E\002!\000\333n*;\020\234 G\201\251\205\377\324\314W\336\3739\215cU\250\324\317\370\215\004@]\035\356\"\002 g\037\333=\241\211\027\230B\271\030\3337}\350[\222\333\372(5\212n*v:\251\205\254\323\236\023" > -[2779 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:33212 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes -[277a 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[277b 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation -[277c 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses -[277d 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc422f81240 env 0xc423371f20 txn 0 -[277e 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc423371f20 -[277f 05-31 05:23:32.64 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -[2780 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 -[2781 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin -[2782 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} -[2783 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid -[2784 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully -[2785 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc423884a80, header channel_header:"\010\001\032\006\010\324\215\276\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030q\223\276\\R\322\024%\330\210\376zM\356\263Q\023RQ\np\327\244U" -[2786 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel -[2787 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[2788 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[2789 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[278a 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[278b 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[278c 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[278d 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[278e 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[278f 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[2790 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[2791 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[2792 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[2793 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[2794 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[2795 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -[2796 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[2797 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[2798 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[2799 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[279a 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[279b 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[279c 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers -[279d 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers -[279e 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP -[279f 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins -[27a0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application -[27a1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins -[27a2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[27a3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set -[27a4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP -[27a5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[27a6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[27a7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[27a8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[27a9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[27aa 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[27ab 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[27ac 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[27ad 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[27ae 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to -[27af 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to -[27b0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to -[27b1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[27b2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[27b3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[27b4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" -[27b5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[27b6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[27b7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[27b8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" -[27b9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" -[27ba 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" -[27bb 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos -[27bc 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm -[27bd 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure -[27be 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses -[27bf 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium -[27c0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[27c1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos -[27c2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs -[27c3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[27c4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[27c5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[27c6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[27c7 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[27c8 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are -[27c9 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP -[27ca 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[27cb 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[27cc 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[27cd 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[27ce 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: -[27cf 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP -[27d0 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos -[27d1 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers -[27d2 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[27d3 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[27d4 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: -[27d5 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP -[27d6 05-31 05:23:32.65 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos -[27d7 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType -[27d8 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize -[27d9 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout -[27da 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers -[27db 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions -[27dc 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities -[27dd 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos -[27de 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP -[27df 05-31 05:23:32.66 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg -[27e0 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel -[27e1 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application -[27e2 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP -[27e3 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP -[27e4 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins -[27e5 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers -[27e6 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers -[27e7 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP -[27e8 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers -[27e9 05-31 05:23:32.67 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP -[27ea 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers -[27eb 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers -[27ec 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins -[27ed 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP -[27ee 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers -[27ef 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP -[27f0 05-31 05:23:32.68 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins -[27f1 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers -[27f2 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers -[27f3 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities -[27f4 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers -[27f5 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins -[27f6 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers -[27f7 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer -[27f8 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg -[27f9 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP -[27fa 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers -[27fb 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins -[27fc 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers -[27fd 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions -[27fe 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities -[27ff 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType -[2800 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize -[2801 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout -[2802 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers -[2803 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation -[2804 05-31 05:23:32.69 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins -[2805 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers -[2806 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities -[2807 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium -[2808 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm -[2809 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure -[280a 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses -[280b 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers -[280c 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins -[280d 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers -[280e 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' -[280f 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' -[2810 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' -[2811 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' -[2812 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' -[2813 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' -[2814 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled -[2815 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } -[2816 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting -[2817 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself -[2818 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/gossip/service] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateEndpoints -> WARN Failed to update ordering service endpoints, due to Channel with businesschannel id was not found -[2819 05-31 05:23:32.70 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel -[281a 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] -[281b 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] -[281c 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] -[281d 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] -[281e 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] -[281f 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel -[2820 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc422f81240 env 0xc423371f20 txn 0 -[2821 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 -[2822 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation -[2823 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate -[2824 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] -[2825 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] -[2826 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] -[2827 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... -[2828 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG -[2829 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] -[282a 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} -[282b 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator -[282c 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] -[282d 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG -[282e 05-31 05:23:32.72 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > -[282f 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results -[2830 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] -[2831 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator -[2832 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... -[2833 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... -[2834 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete -[2835 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage -[2836 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] -[2837 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0xc4, 0x16, 0x22, 0xe7, 0x46, 0x1a, 0xfc, 0xec, 0xc7, 0x69, 0xc, 0xf3, 0xe0, 0x1, 0x23, 0x22, 0x90, 0xfe, 0x17, 0x1c, 0xa7, 0xb2, 0xe9, 0x74, 0x12, 0x78, 0x2c, 0xe5, 0xd0, 0xba, 0x37, 0xee} txOffsets= +[231a 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to index +[231b 06-12 02:15:59.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=55603, bytesLength=2915] for tx number:[0] ID: [a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710] to blockNumTranNum index +[231c 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[60313], isChainEmpty=[false], lastBlockNumber=[6] +[231d 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [6] +[231e 06-12 02:15:59.35 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [6] +[231f 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [6] with 1 transaction(s) +[2320 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to state database +[2321 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[2322 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +[2323 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[2324 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02a] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x61}] +[2325 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[exp02b] key(bytes)=[[]byte{0x65, 0x78, 0x70, 0x30, 0x32, 0x0, 0x62}] +[2326 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[2327 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [7] +[2329 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [6] transactions to history database +[232a 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [6] with [1] transactions +[2328 06-12 02:15:59.36 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x7, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] +[232b 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [7] +[232c 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [6] +[232d 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[232e 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Channel [businesschannel]: Block event for block number [6] contains transaction id: a9d9ab737795561c07286d87a304555db31184233323e3654ad741bb99d5a710 +[232f 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[2330 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[2331 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[2332 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[2333 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[2334 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[2335 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[2336 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[2337 06-12 02:15:59.37 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[2338 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44282 +[2339 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429d26e40 +[233a 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[233b 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[233c 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[233d 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[233e 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[233f 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429ba1ea0, header 0xc429d271a0 +[2340 06-12 02:15:59.59 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"exp02" +[2341 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][2c7735e4] processing txid: 2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6 +[2342 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] +[2343 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/aclmgmt] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.CheckACL.CheckACL.CheckACL -> DEBU acl policy not found in config for resource peer/Propose +[2344 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2345 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] +[2346 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2c7735e4] Entry chaincode: name:"exp02" +[2347 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6,syscc=true,proposal=0xc429ba1ea0,canname=lscc:1.2.0) +[2348 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[2349 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Entry +[234a 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c7735e4]Received message TRANSACTION from peer +[234b 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c7735e4] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[234c 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2c7735e4] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[234d 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +[234e 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2c7735e4] Sending GET_STATE +[234f 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c7735e4] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[2350 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c7735e4] handling GET_STATE from chaincode +[2351 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [2c7735e4] getting state for chaincode lscc, key exp02, channel businesschannel +[2352 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[2353 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c7735e4] Completed GET_STATE. Sending RESPONSE +[2354 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c7735e4]Received message RESPONSE from peer +[2355 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [2c7735e4] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[2356 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2c7735e4] before send +[2357 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [2c7735e4] after send +[2359 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [2c7735e4] GetState received payload RESPONSE +[235a 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [2c7735e4] Transaction completed. Sending COMPLETED +[235b 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [2c7735e4] send state message COMPLETED +[235c 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c7735e4] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[235d 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2c7735e4] notifying Txid:2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6, channelID:businesschannel +[235e 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetChaincodeDefinition.GetChaincodeDefinition.Execute.Invoke.execute.Execute -> DEBU Exit +[235f 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.CheckInstantiationPolicy.CheckInstantiationPolicy.GetChaincodeData -> DEBU Getting chaincode data for from cache +[2360 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] Entry chaincode: name:"exp02" version: 1.0 +[2361 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=exp02,version=1.0,txid=2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6,syscc=false,proposal=0xc429ba1ea0,canname=exp02:1.0) +[2362 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: exp02:1.0 +[2363 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[2364 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c7735e4] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[2365 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c7735e4] handling GET_STATE from chaincode +[2366 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [2c7735e4] getting state for chaincode exp02, key a, channel businesschannel +[2367 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=exp02, key=a +[2368 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [2c7735e4] Completed GET_STATE. Sending RESPONSE +[2369 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [2c7735e4] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[236a 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processStreamingRPC._ChaincodeSupport_Register_Handler.Register.Register.HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [2c7735e4] notifying Txid:2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6, channelID:businesschannel +[236b 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[236c 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] Exit +[236d 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[236e 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] +[236f 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][2c7735e4] Exit +[2370 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c7735e4] Entry chaincode: name:"exp02" +[2371 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c7735e4] escc for chaincode name:"exp02" is escc +[2372 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6, chaincode: exp02} +[2373 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6, chaincode: exp02} +[2374 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][2c7735e4] Exit +[2375 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [2c7735e4b2f7cc8a8d2c9cb579a6d9b96a6e544e1e04f3486cf06f3abff2aab6] +[2376 06-12 02:15:59.61 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44282 +[2358 06-12 02:15:59.60 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [2c7735e4] Received RESPONSE, communicated (state:ready) +[2377 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44286 +[2378 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429d45920 +[2379 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[237a 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[237b 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[237c 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[237d 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[237e 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429da85a0, header 0xc429d45c80 +[237f 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[2380 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][5f769c6a] processing txid: 5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b +[2381 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] +[2382 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2383 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] +[2384 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][5f769c6a] Entry chaincode: name:"lscc" +[2385 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] Entry chaincode: name:"lscc" version: 1.2.0 +[2386 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b,syscc=true,proposal=0xc429da85a0,canname=lscc:1.2.0) +[2387 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[2388 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[2389 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f769c6a]Received message TRANSACTION from peer +[238a 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f769c6a] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[238b 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5f769c6a] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[238c 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/ChaincodeExists +[238d 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5f769c6a] Sending GET_STATE +[238e 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5f769c6a] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[238f 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5f769c6a] handling GET_STATE from chaincode +[2390 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [5f769c6a] getting state for chaincode lscc, key exp02, channel businesschannel +[2391 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[2392 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [5f769c6a] Completed GET_STATE. Sending RESPONSE +[2393 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f769c6a]Received message RESPONSE from peer +[2394 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [5f769c6a] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[2395 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [5f769c6a] before send +[2396 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [5f769c6a] after send +[2398 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [5f769c6a] GetState received payload RESPONSE +[2399 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [5f769c6a] Transaction completed. Sending COMPLETED +[239a 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [5f769c6a] send state message COMPLETED +[239b 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [5f769c6a] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[239c 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [5f769c6a] notifying Txid:5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b, channelID:businesschannel +[239d 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[239e 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] Exit +[239f 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[23a0 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] +[23a1 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][5f769c6a] Exit +[23a2 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5f769c6a] Entry chaincode: name:"lscc" +[23a3 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5f769c6a] escc for chaincode name:"lscc" is escc +[23a4 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b, chaincode: lscc} +[23a5 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b, chaincode: lscc} +[23a6 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][5f769c6a] Exit +[23a7 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [5f769c6aed41196eaf283614aa40e20c4c29d27f001be53655f0075e6e0ee00b] +[23a8 06-12 02:16:00.15 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44286 +[2397 06-12 02:16:00.14 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [5f769c6a] Received RESPONSE, communicated (state:ready) +[23a9 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[23aa 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[23ab 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23ac 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[23ad 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23ae 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[23af 06-12 02:16:00.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[23b0 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[23b1 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23b2 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[23b3 06-12 02:16:00.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers +[23b4 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[23b5 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23b6 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[23b7 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23b8 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[23b9 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23ba 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23bb 06-12 02:16:00.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[23bc 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23bd 06-12 02:16:00.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[23be 06-12 02:16:00.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23bf 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[23c0 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[23c1 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23c2 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[23c3 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[23c4 06-12 02:16:00.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[23c5 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[23c6 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[23c7 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[23c8 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[23c9 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[23ca 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[23cb 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[23cc 06-12 02:16:00.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[23cd 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +[23ce 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\276\275&\334\2638r,\023\355u\215\030K9\302\271+\255\035\212\351\001u\r\253\002 \032zK|\002\276\362\200o\014\031w\2725\315\337\217R\002cK\332\035\340V\031\274\330\210H\355\303" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\210\001" signature:"0D\002 \003@\200=\313\"i\025\3242\020\340\234\214\220h\021\332X\205[\240\346\016\266\216NW\272\266\034\260\002 Z\263enn4\270\332\267>v\210\\8\005\325s\2447\222=4\250\312\246\244\372\231\370Q\340\230" > +[23cf 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[23d0 06-12 02:16:00.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23d1 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[23d2 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[23d3 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[23d4 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[23d5 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[23d6 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[23d7 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[23d8 06-12 02:16:00.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23d9 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[23da 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23db 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[23dc 06-12 02:16:00.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23dd 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[23de 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[23df 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[23e0 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23e1 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[23e2 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[23e3 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[23e4 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[23e5 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23e6 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[23e7 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[23e8 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[23e9 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23ea 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[23eb 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[23ec 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[23ed 06-12 02:16:00.35 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23ee 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[23ef 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[23f0 06-12 02:16:00.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23f1 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +[23f2 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +[23f3 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23f4 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[23f5 06-12 02:16:00.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[23f6 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +[23f7 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +[23f8 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +[23f9 06-12 02:16:00.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +[23fa 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23fb 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +[23fc 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23fd 06-12 02:16:00.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\211\001" signature:"0E\002!\000\365\017U\321\353\356 r\372\265\326\264\343\334K\270VaF\027\352\205\233\347K\024\001\263\216\347\254\272\002 \016\010\341I\230V\241\207T\334\336\242\367\240.\337\202\355\033\2769F\277Cq\332\216\354\016A\261?" > > , Envelope: 167 bytes, Signature: 0 bytes +[23ff 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[23fe 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2400 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2401 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2402 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2403 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2404 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2407 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2405 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[2406 06-12 02:16:00.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[2408 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2409 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[240b 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[240c 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[240d 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[240e 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[240f 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2410 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2411 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2412 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2413 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2414 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2415 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2416 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2417 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2418 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2419 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[241a 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[241b 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[240a 06-12 02:16:00.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[241d 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[241c 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44288 +[241f 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc429fd0330 +[2420 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[2421 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[2422 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[2423 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[2424 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[2425 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc429fd2370, header 0xc429fd0690 +[2426 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[2427 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][4aad6c73] processing txid: 4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca +[2428 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] +[2429 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[242a 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] +[242b 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][4aad6c73] Entry chaincode: name:"lscc" +[242c 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] Entry chaincode: name:"lscc" version: 1.2.0 +[241e 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[242e 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +[242d 06-12 02:16:00.42 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca,syscc=true,proposal=0xc429fd2370,canname=lscc:1.2.0) +[2430 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[242f 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[2432 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2433 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2434 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 138 but got ts: inc_num:1528769652429776900 seq_num:137 +[2435 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2431 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[2436 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aad6c73]Received message TRANSACTION from peer +[2437 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aad6c73] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[2438 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [4aad6c73] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[2439 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetDeploymentSpec +[243a 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[243b 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[243d 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[243e 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[243f 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[243c 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4aad6c73] Sending GET_STATE +[2441 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [4aad6c73] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[2442 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4aad6c73] handling GET_STATE from chaincode +[2443 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [4aad6c73] getting state for chaincode lscc, key exp02, channel businesschannel +[2444 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[2445 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [4aad6c73] Completed GET_STATE. Sending RESPONSE +[2446 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aad6c73]Received message RESPONSE from peer +[2447 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [4aad6c73] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[2448 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [4aad6c73] before send +[2440 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[244a 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[244b 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[244c 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[244d 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[244e 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[244f 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2450 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2451 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2452 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2453 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2454 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2455 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2456 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2457 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2458 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2459 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +[245a 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[245b 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2449 06-12 02:16:00.43 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [4aad6c73] after send +[245c 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [4aad6c73] Received RESPONSE, communicated (state:ready) +[245d 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2460 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2461 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2462 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2463 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[245e 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[245f 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [4aad6c73] GetState received payload RESPONSE +[2464 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2467 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2468 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2465 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[2466 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [4aad6c73] Transaction completed. Sending COMPLETED +[2469 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[246c 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[246d 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[246a 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[246e 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [4 5 6 1 2 3] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[246b 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [4aad6c73] send state message COMPLETED +[246f 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [4aad6c73] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[2470 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [4aad6c73] notifying Txid:4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca, channelID:businesschannel +[2471 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[2472 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] Exit +[2473 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[2474 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] +[2475 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][4aad6c73] Exit +[2476 06-12 02:16:00.44 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][4aad6c73] Entry chaincode: name:"lscc" +[2477 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][4aad6c73] escc for chaincode name:"lscc" is escc +[2478 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca, chaincode: lscc} +[2479 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca, chaincode: lscc} +[247a 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][4aad6c73] Exit +[247b 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [4aad6c73ad593667d724360d7108f1d53f21f7ccf7e93dcee216677094263bca] +[247c 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44288 +[247d 06-12 02:16:00.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[247e 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[247f 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2480 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2481 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[2482 06-12 02:16:00.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2483 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2484 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2485 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2486 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2487 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2488 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2489 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[248a 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[248b 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[248c 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[248d 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[248e 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[248f 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2490 06-12 02:16:00.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[2491 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +[2492 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\212\001" signature:"0D\002 >h\014\002\253\324\t\236\300\343@\021@\305\214\347Gk/\2574>U\357\010\240\323\016\353\025\2579\002 \177'\000,\352[\315\n. \rU\375;q\243\232\302]:\375\205\226hu\371\230w\023CN\302" > +[2493 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[2494 06-12 02:16:00.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2495 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2496 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2497 06-12 02:16:00.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2498 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2499 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[249a 06-12 02:16:00.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[249b 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[249c 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[249d 06-12 02:16:00.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[249e 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44290 +[249f 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a03de00 +[24a0 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[24a1 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[24a2 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[24a3 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[24a4 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[24a5 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a042ff0, header 0xc42a0f8180 +[24a6 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[24a7 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][9de2250e] processing txid: 9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e +[24a8 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] +[24a9 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[24aa 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] +[24ab 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][9de2250e] Entry chaincode: name:"lscc" +[24ac 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] Entry chaincode: name:"lscc" version: 1.2.0 +[24ad 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e,syscc=true,proposal=0xc42a042ff0,canname=lscc:1.2.0) +[24ae 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[24af 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[24b0 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9de2250e]Received message TRANSACTION from peer +[24b1 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9de2250e] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[24b2 06-12 02:16:00.65 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [9de2250e] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[24b3 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetChaincodeData +[24b4 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9de2250e] Sending GET_STATE +[24b5 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [9de2250e] Fabric side handling ChaincodeMessage of type: GET_STATE in state ready +[24b6 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9de2250e] handling GET_STATE from chaincode +[24b7 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetState-fm.HandleGetState -> DEBU [9de2250e] getting state for chaincode lscc, key exp02, channel businesschannel +[24b8 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] HandleGetState-fm.HandleGetState.GetState.getState.GetState.GetState -> DEBU GetState(). ns=lscc, key=exp02 +[24b9 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [9de2250e] Completed GET_STATE. Sending RESPONSE +[24ba 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9de2250e]Received message RESPONSE from peer +[24bb 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [9de2250e] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[24bc 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [9de2250e] before send +[24bd 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [9de2250e] after send +[24be 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [9de2250e] Received RESPONSE, communicated (state:ready) +[24bf 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getCCInstance.GetState.handleGetState -> DEBU [9de2250e] GetState received payload RESPONSE +[24c0 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [9de2250e] Transaction completed. Sending COMPLETED +[24c1 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [9de2250e] send state message COMPLETED +[24c2 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [9de2250e] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[24c3 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [9de2250e] notifying Txid:9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e, channelID:businesschannel +[24c4 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[24c5 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] Exit +[24c6 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[24c7 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] +[24c8 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][9de2250e] Exit +[24c9 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][9de2250e] Entry chaincode: name:"lscc" +[24ca 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][9de2250e] escc for chaincode name:"lscc" is escc +[24cb 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e, chaincode: lscc} +[24cc 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e, chaincode: lscc} +[24cd 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][9de2250e] Exit +[24ce 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [9de2250ef38201491c4275a71d8187132d0db3c039cecd2faefb7e77d596490e] +[24cf 06-12 02:16:00.66 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44290 +[24d0 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[24d1 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[24d2 06-12 02:16:00.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[24d3 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[24d4 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[24d5 06-12 02:16:00.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[24d6 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44292 +[24d7 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a0f9980 +[24d8 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[24d9 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[24da 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[24db 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[24dc 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[24dd 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a0439f0, header 0xc42a0f9ce0 +[24de 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[24df 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][16c1c0ea] processing txid: 16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693 +[24e0 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] +[24e1 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[24e2 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] +[24e3 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][16c1c0ea] Entry chaincode: name:"lscc" +[24e4 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] Entry chaincode: name:"lscc" version: 1.2.0 +[24e5 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693,syscc=true,proposal=0xc42a0439f0,canname=lscc:1.2.0) +[24e6 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[24e7 06-12 02:16:00.81 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[24e8 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [16c1c0ea]Received message TRANSACTION from peer +[24e9 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [16c1c0ea] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[24ea 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [16c1c0ea] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[24eb 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [16c1c0ea] Transaction completed. Sending COMPLETED +[24ec 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [16c1c0ea] send state message COMPLETED +[24ed 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [16c1c0ea] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[24ee 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [16c1c0ea] notifying Txid:16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693, channelID:businesschannel +[24ef 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[24f0 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] Exit +[24f1 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[24f2 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] +[24f3 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][16c1c0ea] Exit +[24f4 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][16c1c0ea] Entry chaincode: name:"lscc" +[24f5 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][16c1c0ea] escc for chaincode name:"lscc" is escc +[24f6 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: 16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693, chaincode: lscc} +[24f7 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: 16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693, chaincode: lscc} +[24f8 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][16c1c0ea] Exit +[24f9 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [16c1c0eaa87881340027e8bd36dd3a13195aeaf680702fa21273c79fa88fc693] +[24fa 06-12 02:16:00.82 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44292 +[24fb 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44294 +[24fc 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a0f4d20 +[24fd 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[24fe 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[24ff 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[2500 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[2501 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[2502 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a1be320, header 0xc42a0f5080 +[2503 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"lscc" +[2504 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][dfae291c] processing txid: dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91 +[2505 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] +[2506 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2507 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] +[2508 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][dfae291c] Entry chaincode: name:"lscc" +[2509 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] Entry chaincode: name:"lscc" version: 1.2.0 +[250a 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=lscc,version=1.2.0,txid=dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91,syscc=true,proposal=0xc42a1be320,canname=lscc:1.2.0) +[250b 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: lscc:1.2.0 +[250c 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[250d 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfae291c]Received message TRANSACTION from peer +[250e 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfae291c] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[250f 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfae291c] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[2510 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource lscc/GetInstantiatedChaincodes +[2511 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [dfae291c] Sending GET_STATE_BY_RANGE +[2512 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfae291c] Fabric side handling ChaincodeMessage of type: GET_STATE_BY_RANGE in state ready +[2513 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfae291c] handling GET_STATE_BY_RANGE from chaincode +[2514 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] HandleGetStateByRange-fm.HandleGetStateByRange.GetStateRangeScanIterator.getStateRangeScanIterator.newResultsItr.GetStateRangeScanIterator.GetStateRangeScanIterator.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x0, 0x1}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x0, 0x6c, 0x73, 0x63, 0x63, 0x1}] +[2515 06-12 02:16:00.98 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/rwsetutil] HandleGetStateByRange-fm.HandleGetStateByRange.BuildQueryResponse.Next.updateRangeQueryInfo.AddResult -> DEBU Adding a result +[2516 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleGetStateByRange-fm.HandleGetStateByRange -> DEBU Got keys and values. Sending RESPONSE +[2517 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfae291c] Completed GET_STATE_BY_RANGE. Sending RESPONSE +[2518 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfae291c]Received message RESPONSE from peer +[2519 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfae291c] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[251a 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfae291c] before send +[251b 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfae291c] after send +[251c 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.GetStateByRange.handleGetStateByRange.handleGetStateByRange -> DEBU [dfae291c] Received RESPONSE. Successfully got range +[251d 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [dfae291c] Sending QUERY_STATE_CLOSE +[251e 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfae291c] Fabric side handling ChaincodeMessage of type: QUERY_STATE_CLOSE in state ready +[251f 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfae291c] handling QUERY_STATE_CLOSE from chaincode +[2520 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] -> DEBU [dfae291c] Completed QUERY_STATE_CLOSE. Sending RESPONSE +[2521 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfae291c] Received RESPONSE, communicated (state:ready) +[2522 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfae291c]Received message RESPONSE from peer +[2523 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [dfae291c] Handling ChaincodeMessage of type: RESPONSE(state:ready) +[2524 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfae291c] before send +[2525 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] Invoke.getChaincodes.Close.handleQueryStateClose -> DEBU [dfae291c] Received RESPONSE. Successfully got range +[2526 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady.sendChannel -> DEBU [dfae291c] after send +[2527 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [dfae291c] Transaction completed. Sending COMPLETED +[2528 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [dfae291c] send state message COMPLETED +[2529 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [dfae291c] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[252a 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [dfae291c] notifying Txid:dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91, channelID:businesschannel +[252b 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[252c 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] Exit +[252d 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[252e 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] +[252f 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][dfae291c] Exit +[2530 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfae291c] Entry chaincode: name:"lscc" +[2531 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfae291c] escc for chaincode name:"lscc" is escc +[2532 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91, chaincode: lscc} +[2533 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91, chaincode: lscc} +[2534 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][dfae291c] Exit +[2535 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [dfae291cd4c14a156fa49fd201894f02f1ff9087f0378909af66e618a4d62b91] +[2536 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44294 +[2537 06-12 02:16:00.99 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [dfae291c] Received RESPONSE, communicated (state:ready) +[2538 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2539 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[253a 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[253b 06-12 02:16:01.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[253c 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44296 +[253d 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a17bad0 +[253e 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[253f 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[2540 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[2541 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[2542 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[2543 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a1ec780, header 0xc42a17be30 +[2544 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[2545 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][f5b0a7be] processing txid: f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719 +[2546 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] +[2547 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2548 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] +[2549 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f5b0a7be] Entry chaincode: name:"qscc" +[254a 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] Entry chaincode: name:"qscc" version: 1.2.0 +[254b 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719,syscc=true,proposal=0xc42a1ec780,canname=qscc:1.2.0) +[254c 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +[254d 06-12 02:16:01.34 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[254e 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5b0a7be]Received message TRANSACTION from peer +[254f 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [f5b0a7be] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[2550 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [f5b0a7be] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[2551 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetChainInfo on chain: businesschannel +[2552 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetChainInfo +[2553 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [f5b0a7be] Transaction completed. Sending COMPLETED +[2554 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [f5b0a7be] send state message COMPLETED +[2555 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [f5b0a7be] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[2556 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [f5b0a7be] notifying Txid:f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719, channelID:businesschannel +[2557 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[2558 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] Exit +[2559 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[255a 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] +[255b 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][f5b0a7be] Exit +[255c 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f5b0a7be] Entry chaincode: name:"qscc" +[255d 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f5b0a7be] escc for chaincode name:"qscc" is escc +[255e 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719, chaincode: qscc} +[255f 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719, chaincode: qscc} +[2560 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][f5b0a7be] Exit +[2561 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [f5b0a7be36fe9f9c7fd6c0e7313a3367f181a9a9ee1600852e709fcf83ddd719] +[2562 06-12 02:16:01.35 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44296 +[2563 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2564 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2565 06-12 02:16:01.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2566 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2567 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2568 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2569 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[256a 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[256b 06-12 02:16:01.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[256c 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[256d 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[256f 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[2570 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +[2571 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\213\001" signature:"0D\002 /o\265\n\353\226\006\251q80\\9}\313>\240\346\313\3764A\0023\344\213p\226k\371\255\264\002 o>.`Y\367\255w\222\036\256\267\237\254\037\tD\3009o\250?6\025\333\263[4\tLJ\233" secret_envelope:W\002 #\217j\231\330\305\017\311q$\3512 \346\342\274\316\361\350\233\306\343P\023\274\373\274\225\274a#\327" > > +[2572 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +[2573 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[256e 06-12 02:16:01.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2574 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Entering: request from 172.18.0.7:44298 +[2575 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage -> DEBU ValidateProposalMessage starts for signed proposal 0xc42a266870 +[2576 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 3 +[2577 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU begin +[2578 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is &{Org1MSP 36a391f2731f9e65d719414cad186c9550a6146eb3b03f6bb3a83ebe3663e5e8} +[2579 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU creator is valid +[257a 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.checkSignatureFromCreator -> DEBU exits successfully +[257b 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage starts for proposal 0xc42a1beff0, header 0xc42a266bd0 +[257c 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/validation] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.ValidateProposalMessage.validateChaincodeProposalMessage -> DEBU validateChaincodeProposalMessage info: header extension references chaincode name:"qscc" +[257d 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess -> DEBU [businesschannel][b4265927] processing txid: b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4 +[257e 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.preProcess.GetTransactionByID.GetTransactionByID.GetTransactionByID.RetrieveTxByID.retrieveTransactionByID -> DEBU retrieveTransactionByID() - txId = [b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] +[257f 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator -> DEBU constructing new tx simulator +[2580 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.GetTxSimulator.NewTxSimulator.NewTxSimulator.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] +[2581 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][b4265927] Entry chaincode: name:"qscc" +[2582 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] Entry chaincode: name:"qscc" version: 1.2.0 +[2583 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/common/ccprovider] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.NewCCContext -> DEBU NewCCCC(chain=businesschannel,chaincode=qscc,version=1.2.0,txid=b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4,syscc=true,proposal=0xc42a1beff0,canname=qscc:1.2.0) +[2584 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute -> DEBU canonical name: qscc:1.2.0 +[2585 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Entry +[2586 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4265927]Received message TRANSACTION from peer +[2587 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage -> DEBU [b4265927] Handling ChaincodeMessage of type: TRANSACTION(state:ready) +[2588 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] handleMessage.handleReady -> DEBU [b4265927] Received TRANSACTION, invoking transaction on chaincode(state:ready) +[2589 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/scc/qscc] Invoke -> DEBU Invoke function: GetBlockByNumber on chain: businesschannel +[258a 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/core/aclmgmt] Invoke.CheckACL.CheckACL -> DEBU acl policy not found in config for resource qscc/GetBlockByNumber +[258b 06-12 02:16:01.51 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber -> DEBU retrieveBlockByNumber() - blockNum = [2] +[258c 06-12 02:16:01.51 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=[26081] +[258d 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Remaining bytes=[34232], Going to peek [8] bytes +[258e 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] Invoke.getBlockByNumber.GetBlockByNumber.GetBlockByNumber.RetrieveBlockByNumber.retrieveBlockByNumber.fetchBlock.fetchBlockBytes.nextBlockBytes.nextBlockBytesAndPlacementInfo -> DEBU Returning blockbytes - length=[14015], placementInfo={fileNum=[0], startOffset=[26081], bytesOffset=[26083]} +[258f 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] -> DEBU [b4265927] Transaction completed. Sending COMPLETED +[2590 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode/shim] 1.triggerNextState -> DEBU [b4265927] send state message COMPLETED +[2591 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage -> DEBU [b4265927] Fabric side handling ChaincodeMessage of type: COMPLETED in state ready +[2592 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] HandleChaincodeStream.ProcessStream.handleMessage.handleMessageReadyState.Notify -> DEBU [b4265927] notifying Txid:b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4, channelID:businesschannel +[2593 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/chaincode] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode.Execute.Execute.Invoke.execute.Execute -> DEBU Exit +[2594 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.callChaincode -> DEBU [businesschannel][b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] Exit +[2595 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[2596 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal.Done -> DEBU Done with transaction simulation / query execution [b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] +[2597 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.SimulateProposal -> DEBU [businesschannel][b4265927] Exit +[2598 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b4265927] Entry chaincode: name:"qscc" +[2599 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b4265927] escc for chaincode name:"qscc" is escc +[259a 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Entering endorsement for {plugin: escc, channel: businesschannel, tx: b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4, chaincode: qscc} +[259b 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal.EndorseWithPlugin -> DEBU Exiting {plugin: escc, channel: businesschannel, tx: b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4, chaincode: qscc} +[259c 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.endorseProposal -> DEBU [businesschannel][b4265927] Exit +[259d 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal.Done -> DEBU Done with transaction simulation / query execution [b4265927b8736671a363ed6150949ce0c8a25ddb28ac24e7bf8f34d490aeb7c4] +[259e 06-12 02:16:01.52 UTC] [github.com/hyperledger/fabric/core/endorser] handleStream.processUnaryRPC._Endorser_ProcessProposal_Handler.ProcessProposal.ProcessProposal.ProcessProposal -> DEBU Exit: request from 172.18.0.7:44298 +[259f 06-12 02:16:01.86 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25a0 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25a1 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[25a2 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[25a3 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25a4 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25a5 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[25a6 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[25a7 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[25a8 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[25a9 06-12 02:16:01.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[25aa 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[25ab 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[25ac 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[25ad 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25ae 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25af 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[25b0 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[25b1 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25b2 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[25b3 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25b4 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[25b5 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25b7 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[25b6 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25b8 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25ba 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25bb 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[25b9 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25bc 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25bd 06-12 02:16:01.88 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25be 06-12 02:16:02.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[25bf 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25c0 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25c1 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25c2 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25c4 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25c5 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25c6 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25c3 06-12 02:16:02.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25c7 06-12 02:16:02.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25c8 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[25c9 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[25ca 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[25cb 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[25cc 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[25cd 06-12 02:16:02.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25ce 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25cf 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25d0 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[25d1 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[25d2 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25d3 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25d4 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[25d5 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[25d6 06-12 02:16:02.48 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[25d7 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[25d8 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[25d9 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[25da 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[25db 06-12 02:16:02.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[25dc 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25dd 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25de 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[25df 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[25e0 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25e1 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[25e2 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25e3 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25e4 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25e5 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25e6 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25e7 06-12 02:16:02.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25e8 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25e9 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[25eb 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25ec 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[25ea 06-12 02:16:02.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[25ed 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25ee 06-12 02:16:03.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[25ef 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[25f0 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25f1 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25f2 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[25f3 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[25f4 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[25f5 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[25f6 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[25f7 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[25f8 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[25f9 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[25fa 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25fb 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[25fc 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25fd 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[25fe 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[25ff 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2600 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2601 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2602 06-12 02:16:03.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2603 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2604 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2605 06-12 02:16:03.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2606 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2607 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2608 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2609 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[260a 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[260b 06-12 02:16:03.36 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[260c 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[260d 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[260e 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[260f 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2610 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2611 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2612 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2613 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[2614 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2615 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[2616 06-12 02:16:04.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[2617 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2618 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[2619 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[261a 06-12 02:16:04.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[261b 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[261c 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[261d 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[261e 06-12 02:16:04.29 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[261f 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2620 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2621 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2622 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2623 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2624 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2625 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2626 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2627 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2628 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[2629 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +[262a 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\310\1774-\370\303\303\030\300u&\033|\332?\272#\361\257\311'\311{\021\253\003'4" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\215\001" signature:"0E\002!\000\327\303s\367\n\017%^Q\310\213\"\251\247y4\277\257s\026\254\2629\014!\335(\t\021h3\326\002 ;J\36414\224DI\315\306\0279t\347D\347\214q\313\206=\366\232\224\003\"Z\247q\224s\211" > +[262b 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[262c 06-12 02:16:04.30 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[262d 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[262e 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[262f 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[2631 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[2630 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2632 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[2633 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[2634 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2635 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2636 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2637 06-12 02:16:04.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2638 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2639 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[263a 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[263b 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[263c 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[263d 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[263e 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[263f 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2640 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2641 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2642 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2643 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2644 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2645 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2646 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2647 06-12 02:16:04.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[2648 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2649 06-12 02:16:04.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[264a 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[264b 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[264c 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[264d 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +[264e 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 51 bytes, Signature: 0 bytes +[264f 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2650 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2651 06-12 02:16:04.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2652 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" secret_envelope:\374\020.\257xBsC\001\"\273\002\002 \016ku\230\204\343m\301\255q\252\356\355;dU\315\276\333\245\014\341\316{X\375p\024\214\023+\010" > > > , Envelope: 271 bytes, Signature: 0 bytes to 1 peers +[2653 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[2654 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[2655 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes +[2656 06-12 02:16:04.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2657 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 271 bytes, Signature: 0 bytes +[2658 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2659 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\216\001" signature:"0D\002 V\346\247\231g\002LW\203\276\337\010\250\267\201\355t\340\201\326\343\370\277S\001+64F\207\321\253\002 `\021!EC\311W\353\361`\340\222\275\357\205\221\203\202\302j\230\254xD\257\300\225_\336\332\001L" > > , Envelope: 166 bytes, Signature: 0 bytes +[265a 06-12 02:16:04.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[265b 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[265c 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[265d 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[265e 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[265f 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2660 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[2661 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2662 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2663 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2664 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[2665 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2666 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2667 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2668 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2669 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[266a 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[266b 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[266c 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[266d 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[266e 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 648 bytes, Signature: 0 bytes +[266f 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes +[2670 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2671 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes]} +[2672 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2673 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2674 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[2675 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2677 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2678 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2679 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[267a 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[267b 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 141 but got ts: inc_num:1528769653227426900 seq_num:140 +[267c 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[267d 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[267e 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[267f 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2680 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2681 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2682 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2676 06-12 02:16:04.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[2683 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2684 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2685 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2686 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2687 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2688 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2689 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[268a 06-12 02:16:04.41 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[268b 06-12 02:16:04.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[268c 06-12 02:16:04.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[268e 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 142 but got ts: inc_num:1528769651824440500 seq_num:141 +[268f 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2690 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2691 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[268d 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2692 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2693 06-12 02:16:04.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2694 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2695 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2696 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2697 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2698 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2699 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[269a 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[269b 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[269c 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[269d 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 69 bytes in aliveMembership +[269e 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[269f 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[26a0 06-12 02:16:04.46 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[26a1 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[26a2 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[26a3 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[26a4 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[26a5 06-12 02:16:04.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26a6 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[26a7 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[26a8 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26a9 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[26aa 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[26ab 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[26ac 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[26ad 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[26ae 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[26af 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[26b0 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[26b1 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[26b2 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[26b3 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[26b4 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +[26b5 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:m_\367^\03547\005\251\275lWq\247\211Vw\014\310\333=\244" > alive: alive:\370\275" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\217\001" signature:"0E\002!\000\251\212\035,M\366S\300N\235\215\212\340\200\025\247\356\231\237\3324\035l=\240B\225\021\021\203\364\224\002 b<0\223R\211)\211\255\373\374\377\n\233G\267w\3201\306:l\313dQ\030\301\332\267\343{3" > +[26b6 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[26b7 06-12 02:16:04.55 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[26b8 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[26b9 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[26ba 06-12 02:16:04.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26bb 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[26bc 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[26bd 06-12 02:16:04.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26be 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes +[26bf 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 15 bytes, Signature: 0 bytes +[26c0 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[26c1 06-12 02:16:05.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26c2 06-12 02:16:05.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[26c3 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26c4 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[26c5 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[26c6 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[26c7 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[26c8 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[26c9 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[26ca 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[26cb 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[26cc 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[26cd 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[26ce 06-12 02:16:05.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[26cf 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +[26d1 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +[26d2 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[26d0 06-12 02:16:05.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\220\001" signature:"0E\002!\000\207t\257\240\355D\346e\274mgb\252\275 l\231\234\216)\023M\322.\305;\032&|3\245\355\002 T\n\027N:\262\247\240\243\341g\276|\207\370\017\205A1\363g+\256\320\r\036]\227\2057\326\022" secret_envelope: > +[26d3 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26d4 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26d5 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[26d6 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26d7 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26d8 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26d9 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[26da 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[26db 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[26dc 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[26dd 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[26de 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[26df 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[26e0 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[26e1 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[26e2 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[26e3 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26e4 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26e5 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[26e6 06-12 02:16:06.87 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[26e7 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26e8 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[26e9 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26ea 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26eb 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[26ec 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26ed 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26ee 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[26ef 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[26f0 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26f1 06-12 02:16:06.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[26f2 06-12 02:16:07.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[26f3 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[26f4 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[26f6 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[26f7 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26f8 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26f9 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[26fa 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[26f5 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[26fb 06-12 02:16:07.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[26fc 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[26fd 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[26fe 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[26ff 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[2700 06-12 02:16:07.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[2701 06-12 02:16:07.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2702 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2703 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2704 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2705 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2706 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2707 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2708 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2709 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[270a 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[270b 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[270c 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[270d 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[270e 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[270f 06-12 02:16:07.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2710 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2711 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2712 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2713 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2714 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2715 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2716 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2717 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2718 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2719 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[271a 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[271b 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[271c 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[271d 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[271e 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[271f 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2720 06-12 02:16:07.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2721 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[2722 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2723 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2724 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2725 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2726 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2727 06-12 02:16:08.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2728 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[2729 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[272a 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[272b 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[272c 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[272d 06-12 02:16:08.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[272e 06-12 02:16:08.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[272f 06-12 02:16:08.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2730 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2731 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2732 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2733 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2734 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2735 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2736 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2737 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2738 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2739 06-12 02:16:08.31 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[273a 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[273b 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[273c 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[273d 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[273e 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers +[273f 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\222\001" signature:"0D\002 \035\215\373\250\372\270\t\301\240BO\253/\247-'a~\010\300\302i\256Mrvy\377s+\330\312\002 H\302\250\344W0\037\364Tv,\237\003F\010\221R@\027.\375\356\347\263\347\233,x=\204\"\246" > +[2740 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[2741 06-12 02:16:08.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2742 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[2743 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[2744 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[2745 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[2746 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[2747 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[2748 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[2749 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[274a 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers +[274b 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[274c 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[274d 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[274e 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[274f 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2750 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2751 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2752 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2753 06-12 02:16:08.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2755 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2756 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2757 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2758 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2759 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[275a 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[275b 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[275c 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2754 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[275d 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[275e 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[275f 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2760 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2761 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2762 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2763 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2764 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2765 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2766 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2767 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2768 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2769 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[276a 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +[276b 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 52 bytes, Signature: 0 bytes +[276c 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[276d 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[276e 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[276f 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2770 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[2771 06-12 02:16:08.39 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[2772 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers +[2773 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +[2774 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2776 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[2777 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[2778 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2779 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[277a 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[277b 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[277c 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[277d 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[277e 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[277f 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2780 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2781 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2782 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +[2783 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2784 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2785 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2786 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2787 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2788 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +[2789 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[278a 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +[278b 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[278c 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[278d 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[278e 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[278f 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2790 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2791 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[2792 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2793 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2794 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2795 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2796 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2797 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2775 06-12 02:16:08.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\223\001" signature:"0D\002 1e\225i\277\307\231\037\352\254L\326QI\235\273\320\030W\r\027\257" > > , Envelope: 166 bytes, Signature: 0 bytes +[2798 06-12 02:16:08.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2799 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[279a 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[279b 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[279c 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[279d 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[279e 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[279f 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[27a0 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[27a1 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[27a2 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[27a3 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[27a4 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[27a5 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[27a6 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[27a7 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[27a8 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[27a9 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[27aa 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[27ab 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[27ac 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[27ad 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[27ae 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes +[27af 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[27b0 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[27b1 06-12 02:16:08.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27b2 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[27b3 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27b4 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[27b5 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[27b6 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[27b7 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[27b8 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[27b9 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[27ba 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[27bb 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1528769652429776900, 148 but got ts: inc_num:1528769652429776900 seq_num:147 +[27bc 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[27bd 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[27be 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[27bf 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[27c0 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[27c1 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[27c2 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[27c3 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[27c4 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[27c5 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[27c6 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[27c7 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[27c8 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[27ca 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[27cb 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[27c9 06-12 02:16:08.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27cc 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[27cd 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[27ce 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[27cf 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[27d0 06-12 02:16:08.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27d1 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[27d2 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[27d4 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[27d5 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[27d6 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[27d7 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[27d8 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[27d9 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[27da 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[27db 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[27dc 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[27dd 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[27de 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[27df 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +[27e0 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\224\001" signature:"0E\002!\000\234\203\300\333\321?=\356\352\25238\342\333F\211\353\306\227\230A\273\025\271\003\346_\"\210\367\311\344\002 %\306\241}\322+\227\333\343\243\023 h\016Q8\323\252\332\373O{\321\222\272\355\241\264I\240+\017" > +[27e1 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[27e2 06-12 02:16:08.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[27d3 06-12 02:16:08.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27e3 06-12 02:16:08.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[27e4 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[27e5 06-12 02:16:08.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27e6 06-12 02:16:08.80 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[27e7 06-12 02:16:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[27e8 06-12 02:16:08.80 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27e9 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[27ea 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[27eb 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[27ec 06-12 02:16:09.33 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27ed 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:35394 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +[27ee 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[27ef 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > > , Envelope: 167 bytes, Signature: 0 bytes +[27f0 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[27f1 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[27f2 06-12 02:16:09.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[27f3 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[27f4 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[27f5 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[27f6 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[27f7 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[27f8 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[27f9 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes to 1 peers +[27fa 06-12 02:16:09.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\225\001" signature:"0D\002 h4E\213\224\215\345\342*L\351\305\361Q\261:h\253rBN\177\203\377\3466\266*\323\266-\315\002 }[\360\305\232\236u[\311\353\324N<\264\311L\357+\244ob0\223\231\260\212\217\255\335i61" secret_envelope: > +[27fb 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes +[27fc 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[27fd 06-12 02:16:09.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[27fe 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Adding payload locally, buffer seqNum = [7], peers number [3] +[27ff 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/deliverservice/blocksprovider] DeliverBlocks -> DEBU [businesschannel] Gossiping block [7], peers number [3] +[2800 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU START Block Validation +[2801 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU expecting 1 block validation responses +[2802 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx starts for block 0xc4233d0b20 env 0xc42350b320 txn 0 +[2803 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU ValidateTransactionEnvelope starts for envelope 0xc42350b320 +[2804 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction -> DEBU Header is channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +[2805 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateCommonHeader.validateChannelHeader -> DEBU validateChannelHeader info: header type 1 +[2806 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU begin +[2807 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is &{OrdererMSP f2084f6dc4b492b8802d87b71388512a5df22ffce766ed41a08204d2fb11b095} +[2808 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU creator is valid +[2809 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.checkSignatureFromCreator -> DEBU exits successfully +[280a 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/common/validation] validateTx.ValidateTransaction.validateConfigTransaction -> DEBU validateConfigTransaction starts for data 0xc42385aa80, header channel_header:"\010\001\032\006\010\351\331\374\330\005\"\017businesschannel" signature_header:"\n\220\006\n\nOrdererMSP\022\201\006-----BEGIN CERTIFICATE-----\nMIICCzCCAbKgAwIBAgIQWeApCcN1J36MCcn1+BoPWDAKBggqhkjOPQQDAjBpMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEUMBIGA1UEChMLZXhhbXBsZS5jb20xFzAVBgNVBAMTDmNhLmV4YW1w\nbGUuY29tMB4XDTE4MDEzMDA3NDAyN1oXDTI4MDEyODA3NDAyN1owWDELMAkGA1UE\nBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBGcmFuY2lz\nY28xHDAaBgNVBAMTE29yZGVyZXIuZXhhbXBsZS5jb20wWTATBgcqhkjOPQIBBggq\nhkjOPQMBBwNCAAQiniZ3Fd0dcR0ShZoq6MS8gyLrZnXEkkxPDV3ikKGp67dSP0QO\nFk6gCU1oJskjlZxwZkY625AzCP04F3Dp97Wlo00wSzAOBgNVHQ8BAf8EBAMCB4Aw\nDAYDVR0TAQH/BAIwADArBgNVHSMEJDAigCD2MrogbL+HOGTRVLX6CwnhdrdELt4o\nzP9Ae03vuGO4DTAKBggqhkjOPQQDAgNHADBEAiAErNRRWGY5CLYnF5XGice7iKOR\nqtZbASnwtxfxJ1alfgIgKUh4zzK3ECe66GhrVVPLfpDQz+YK6Fw5Da0Gyv+t2JI=\n-----END CERTIFICATE-----\n\022\030\375`\277P\340\202^\300\331?\370\265\320\0064Gi\025\264\355,g\211\361" +[280b 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU Transaction is for channel businesschannel +[280c 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[280d 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[280e 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[280f 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[2810 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[2811 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[2812 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[2813 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[2814 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[2815 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[2816 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[2817 06-12 02:16:09.96 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[2818 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[281a 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +[281b 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +[281c 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +[2819 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes to 1 peers +[281e 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_AND_ORG Block message: {Data: 21270 bytes, seq: 7}, Envelope: 21303 bytes, Signature: 0 bytes +[281d 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +[281f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[2820 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[2821 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[2822 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[2823 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application/Org3MSP +[2824 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Writers +[2825 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Readers +[2826 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Value] /Channel/Application/Org3MSP/MSP +[2827 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Policy] /Channel/Application/Org3MSP/Admins +[2828 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet -> DEBU Processing change to key: [Group] /Channel/Application +[2829 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.policyForItem -> DEBU Getting policy for item Application with mod_policy Admins +[282a 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[282b 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/cauthdsl] validateTx.Apply.Validate.authorizeUpdate.verifyDeltaSet.Evaluate.Evaluate.Evaluate.Evaluate.deduplicate -> WARN De-duplicating identity 0a074f7267314d53501296062d2d2d2d2d424547494e2043455254494649434154452d2d2d2d2d0a4d4949434754434341622b6741774942416749515238794a6758734145444a4c666f6776367669766844414b42676771686b6a4f50515144416a427a4d5173770a435159445651514745774a56557a45544d4245474131554543424d4b5132467361575a76636d3570595445574d4251474131554542784d4e5532467549455a790a5957356a61584e6a627a455a4d4263474131554543684d5162334a6e4d53356c654746746347786c4c6d4e76625445634d426f474131554541784d54593245750a62334a6e4d53356c654746746347786c4c6d4e7662544165467730784f4441784d7a41774e7a51774d6a5a61467730794f4441784d6a67774e7a51774d6a5a610a4d467378437a414a42674e5642415954416c56544d524d77455159445651514945777044595778705a6d3979626d6c684d5259774641594456515148457731540a59573467526e4a68626d4e7063324e764d523877485159445651514444425a425a473170626b4276636d63784c6d56345957317762475575593239744d466b770a457759484b6f5a497a6a3043415159494b6f5a497a6a3044415163445167414566783039386f4a6e586c766f373433713173356e2f417a5a32714458617278490a7230696479684d746c6a7057396859744d5350656a65355a64464e564a5a5938427a6f363650764d6f645838763247346756636f70714e4e4d457377446759440a565230504151482f42415144416765414d41774741315564457745422f7751434d4141774b7759445652306a42435177496f41676543627a44306351662b76330a69723055353534616772744b5836326b54784f4d345344626b3745434d306377436759494b6f5a497a6a3045417749445341417752514968414a58326f704e300a324e7978546867414e67535774785870486a592b33707773472f54662f6c666d62654c52416942367735784733542f7753622b4b6f32317157416c73743170480a334244466e5975534659684f436578566b413d3d0a2d2d2d2d2d454e442043455254494649434154452d2d2d2d2d0a at index 2 in signature set +[282c 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[282d 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[282e 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[282f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2830 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2831 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key BlockValidation to policy: mod_policy:"Admins" +[2832 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2833 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2834 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2835 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2836 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2837 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2838 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2839 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[283a 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[283b 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap...recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[283c 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Admins to +[283d 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Readers to +[283e 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap.recurseConfigMap -> DEBU Setting policy for key Writers to +[283f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Readers to policy: mod_policy:"Admins" +[2840 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Writers to policy: mod_policy:"Admins" +[2841 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.Validate.configMapToConfig.recurseConfigMap -> DEBU Setting policy for key Admins to policy: mod_policy:"Admins" +[2842 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ChannelProtos +[2843 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: HashingAlgorithm +[2844 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BlockDataHashingStructure +[2845 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: OrdererAddresses +[2846 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Consortium +[2847 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2848 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationProtos +[2849 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ACLs +[284a 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[284b 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[284c 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[284d 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[284e 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[284f 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org2MSP are anchor_peers: +[2850 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org2MSP +[2851 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2852 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[2853 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[2854 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2855 06-12 02:16:09.97 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2856 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org3MSP are +[2857 06-12 02:16:09.98 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org3MSP +[2858 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.ApplicationOrgProtos +[2859 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: AnchorPeers +[285a 06-12 02:16:10.00 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[285b 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[285c 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate -> DEBU Anchor peers for org Org1MSP are anchor_peers: +[285d 06-12 02:16:10.01 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewApplicationConfig.NewApplicationOrgConfig.Validate.Validate.validateMSP -> DEBU Setting up MSP for org Org1MSP +[285e 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrdererProtos +[285f 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ConsensusType +[2860 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchSize +[2861 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: BatchTimeout +[2862 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: KafkaBrokers +[2863 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: ChannelRestrictions +[2864 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: Capabilities +[2865 06-12 02:16:10.02 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues -> DEBU Initializing protos for *channelconfig.OrganizationProtos +[2866 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.DeserializeProtoValuesFromGroup.NewStandardValues.initializeProtosStruct -> DEBU Processing field: MSP +[2867 06-12 02:16:10.03 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.NewBundle.NewChannelConfig.NewOrdererConfig.NewOrganizationConfig.Validate.validateMSP -> DEBU Setting up MSP for org OrdererOrg +[2869 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:58698 +[286a 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58698 +[2868 06-12 02:16:10.05 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel +[286b 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer +[286c 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Orderer/OrdererOrg +[286d 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/OrdererOrg/MSP +[286e 06-12 02:16:10.06 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Writers +[286f 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Admins +[2870 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/OrdererOrg/Readers +[2871 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchTimeout +[2872 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ChannelRestrictions +[2873 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/Capabilities +[2874 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/ConsensusType +[2875 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Orderer/BatchSize +[2876 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Readers +[2877 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58698 +[2879 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58698 +[2878 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Writers +[287a 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/BlockValidation +[287b 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Orderer/Admins +[287c 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application +[287d 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org2MSP +[287e 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/MSP +[287f 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org2MSP/AnchorPeers +[2880 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Readers +[2881 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Writers +[2882 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org2MSP/Admins +[2883 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org3MSP +[2885 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +[2886 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[2884 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org3MSP/MSP +[2887 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Readers +[2888 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Writers +[2889 06-12 02:16:10.07 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org3MSP/Admins +[288a 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Group] /Channel/Application/Org1MSP +[288b 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/AnchorPeers +[288c 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Org1MSP/MSP +[288d 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Readers +[288e 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Writers +[288f 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing +[2890 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig...recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Org1MSP/Admins +[2891 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Application/Capabilities +[2892 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Writers +[2893 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Admins +[2894 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Application/Readers +[2895 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/HashingAlgorithm +[2896 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/BlockDataHashingStructure +[2897 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/OrdererAddresses +[2898 06-12 02:16:10.08 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Capabilities +[2899 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Value] /Channel/Consortium +[289a 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Admins +[289b 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Readers +[289c 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/configtx] validateTx.Apply.NewBundle.NewValidatorImpl.mapConfig.recurseConfig.addToMap -> DEBU Adding to config map: [Policy] /Channel/Writers +[289d 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Readers' +[289e 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Writers' +[289f 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Readers' +[28a0 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Writers' +[28a1 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Application/Admins' +[28a2 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/channelconfig] validateTx.Apply.LogSanityChecks -> DEBU As expected, current configuration has policy '/Channel/Orderer/BlockValidation' +[28a3 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/common/capabilities] validateTx.Apply.capabilitiesSupportedOrPanic.Supported -> DEBU Channel capability V1_1 is supported and is enabled +[28a4 06-12 02:16:10.09 UTC] [github.com/hyperledger/fabric/gossip/gossip] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers -> INFO Anchor peer with same endpoint, skipping connecting to myself +[28a5 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Entering {peer0.org2.example.com:7051 [] [] peer0.org2.example.com:7051 } +[28a7 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +[28a8 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:58698 disconnected +[28a9 06-12 02:16:10.11 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[28a6 06-12 02:16:10.10 UTC] [github.com/hyperledger/fabric/gossip/discovery] validateTx.Apply.Update.func1.ProcessConfigUpdate.updateAnchors.JoinChan.learnAnchorPeers.Connect -> DEBU Exiting +[28aa 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots -> DEBU Updating trusted root authorities for channel businesschannel +[28ad 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:59848 +[28ae 06-12 02:16:10.15 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59848 +[28ab 06-12 02:16:10.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 +[28ac 06-12 02:16:10.14 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:58700 +[28af 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:58700 +[28b0 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 +[28b1 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 +[28b2 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:58700 +[28b3 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:58700 +[28b4 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:2439552935110934065 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > > , Envelope: 176 bytes, Signature: 0 bytes to 1 peers +[28b5 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:2439552935110934065 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\232\001" signature:"0D\002 \014\342\202S\275}4\321\310b`\000\331\212\371\255\307\224\377:\031\025\026 u?\352\243\023\226}\214\002 -\0173\314~\310~\r\220\247\365\373N\201!\332#V\354T\352\242\266i\004\027\346w\3105uh" > > , Envelope: 176 bytes, Signature: 0 bytes +[28b6 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[28b7 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU updating root CAs for channel [businesschannel] +[28b8 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: nonce:2872289812012144563 tag:EMPTY mem_req: > , Envelope: 177 bytes, Signature: 0 bytes +[28ba 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org2MSP] +[28bc 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org3MSP] +[28bd 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding app root CAs for MSP [Org1MSP] +[28be 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/peer] validateTx.Apply.Update.func2.updateTrustedRoots.buildTrustedRootsForChain -> DEBU adding orderer root CAs for MSP [OrdererMSP] +[28bf 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:2872289812012144563 tag:EMPTY mem_req: > , Envelope: 177 bytes, Signature: 0 bytes +[28c0 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[28c1 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[28c2 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU config transaction received for chain businesschannel +[28c3 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] validateTx -> DEBU validateTx completes for block 0xc4233d0b20 env 0xc42350b320 txn 0 +[28c4 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU got result for idx 0, code 0 +[28c6 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer/txvalidator] commitBlock.StoreBlock.Validate -> DEBU END Block Validation +[28c5 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[28c7 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[28c8 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/core/committer] commitBlock.StoreBlock.CommitWithPvtData.preCommit -> DEBU Received configuration update, calling CSCC ConfigUpdate +[28ca 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Validating state for block [7] +[28cb 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare -> DEBU Validating new block with num trans = [1] +[28cc 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() for block number = [7] +[28cd 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU preprocessing ProtoBlock... +[28ce 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock -> DEBU txType=CONFIG +[28cf 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Performing custom processing for transaction [txid=], [txType=CONFIG] +[28d0 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx -> DEBU Processor for custom tx processing:&peer.configtxProcessor{} +[28d1 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator -> DEBU constructing new tx simulator +[28d2 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.NewTxSimulator.newLockBasedTxSimulator -> DEBU constructing new tx simulator txid = [] +[28d3 06-12 02:16:10.19 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults -> DEBU Processing CONFIG +[28c9 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[28d5 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[28d7 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[28d8 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[28d9 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[28da 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[28d6 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/core/peer] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GenerateSimulationResults.processChannelConfigTx -> DEBU channelConfig=sequence:4 channel_group: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > groups: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > > values: > values: > values: > values: > values: > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > policies: mod_policy:"Admins" > > mod_policy:"Admins" > +[28db 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.GetTxSimulationResults -> DEBU Simulation completed, getting simulation results +[28dc 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.preprocessProtoBlock.processNonEndorserTx.Done -> DEBU Done with transaction simulation / query execution [] +[28dd 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/statebasedval] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch.ValidateAndPrepareBatch -> DEBU Block [7] Transaction index [0] TxId [] marked as valid by state validator +[28de 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU validating rwset... +[28df 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU postprocessing ProtoBlock... +[28e0 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/validator/valimpl] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.ValidateAndPrepare.ValidateAndPrepareBatch -> DEBU ValidateAndPrepareBatch() complete +[28e1 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] to storage +[28bb 06-12 02:16:10.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[28e2 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 2439552935110934065, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes +[28e3 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[28e4 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 2439552935110934065, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 660 bytes, Signature: 0 bytes +[28e5 06-12 02:16:10.21 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Prepare -> DEBU Saved 0 private data write sets for block [7] +[28e6 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[28e7 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[28e8 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Indexing block [blockNum=7, blockHash=[]byte{0x4d, 0xcf, 0x4e, 0x7c, 0xc2, 0x5f, 0x80, 0xf, 0x3f, 0x60, 0x2d, 0x1b, 0xe9, 0x83, 0x9f, 0x18, 0x1d, 0x9a, 0x52, 0xc8, 0x19, 0x75, 0x20, 0xdf, 0xd0, 0xfb, 0xd, 0xd6, 0xf3, 0x8d, 0xc6, 0x3b} txOffsets= txId= locPointer=offset=71, bytesLength=19393 ] -[2838 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index -[2839 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index -[283a 05-31 05:23:32.73 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] -[283b 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] -[283c 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] -[283d 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) -[283e 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database -[283f 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database -[2840 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database -[2841 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] -[2842 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database -[2843 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] -[2844 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database -[2845 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions -[2846 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction -[2847 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] -[2848 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry -[2849 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit -[284a 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[284b 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[284c 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[284d 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[284e 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry -[284f 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 -[2850 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully -[2851 05-31 05:23:32.74 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit -[2852 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:36348 -[2853 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:36348 -[2854 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:36348 -[2855 05-31 05:23:32.75 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.5:36348 -[2856 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -[2857 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36244 disconnected -[2858 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] canceling read because closing -[2859 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[285a 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -[285b 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.5:36348 disconnected -[285c 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[285d 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.5:7051 -[285e 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -[285f 05-31 05:23:32.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.Handshake.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -[2860 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: nonce:14972931874340803463 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\237\001" signature:"0E\002!\000\2337\367\017\023 \357\267:\233\253gV\310\366\315v\260\3519\323\362\222\021\237q\374\220Yi|\362\002 XG\276)\375\033my\021\241\236+\340G]TD5\360EI<[z\007\337s\\U\373P=" > > , Envelope: 178 bytes, Signature: 0 bytes to 1 peers -[2861 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: nonce:14972931874340803463 tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\237\001" signature:"0E\002!\000\2337\367\017\023 \357\267:\233\253gV\310\366\315v\260\3519\323\362\222\021\237q\374\220Yi|\362\002 XG\276)\375\033my\021\241\236+\340G]TD5\360EI<[z\007\337s\\U\373P=" > > , Envelope: 178 bytes, Signature: 0 bytes -[2862 05-31 05:23:32.77 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer0.org2.example.com:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[2863 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:52998 -[2864 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:52998 -[2865 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:52998 -[2866 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.2:52998 -[2867 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[2868 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream -[2869 05-31 05:23:32.78 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing -[286a 05-31 05:23:32.79 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.5:7051 -[286b 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) -[286c 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.2:52998 disconnected -[286d 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[286e 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" identity:"\n\007Org2MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQXpuc1XDes3qNgvb7siI/IDAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE53l8Sgq8vn0pHzlgg/UpmUJb0kj8WGDj\nSPVr9mcQuEmec9A5o7Zmq5y/pbU4d3T0P4oEPN4Ahk6zdP/Klw+wP6NNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDSAAwRQIhAK2HaK4l\nXQiu1XxgIjT58ctoZoTCt5ohJcyqS7NsGrSuAiA5Vw/TyKnkPLVs2B1o1JfFiG+S\nQh80aTnAegSTSqmA1w==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\261\242u\352|\0138H,\307\372\203e\335\206\372\221\371\010X\330\324B\205\363\005\276\305Z\342H\255" from 172.18.0.5:7051 -[286f 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.5:7051 -[2870 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -[2871 05-31 05:23:32.80 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2872 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 14972931874340803463, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 664 bytes, Signature: 0 bytes -[2873 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 14972931874340803463, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 664 bytes, Signature: 0 bytes -[2874 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2875 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 14972931874340803463, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 664 bytes, Signature: 0 bytes -[2876 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2877 05-31 05:23:32.81 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2878 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2879 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[287a 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[287b 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[287c 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[287d 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[287e 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[287f 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2880 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2881 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2882 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2883 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2884 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2885 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2886 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2887 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2888 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2889 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[288a 05-31 05:23:32.82 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[288b 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[288c 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[288d 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[288e 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[288f 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2890 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2891 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2892 05-31 05:23:32.83 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2893 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.4:33360 -[2894 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:33360 -[2895 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:33360 -[2896 05-31 05:23:32.84 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.4:33360 -[2897 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream -[2898 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream -[2899 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33212 disconnected -[289a 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing -[289b 05-31 05:23:32.85 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.4:33360 disconnected -[289c 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[289d 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28a0 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[289e 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28a1 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[289f 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28a2 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org1.example.com:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[28a3 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[28a4 05-31 05:23:34.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[28a5 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28a6 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.2:7051 -[28a7 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.4:7051 -[28a8 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.4:7051 -[28a9 05-31 05:23:34.91 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.4:7051 -[28aa 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -[28ac 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[28ad 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[28ae 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[28ab 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.2:7051 -[28af 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.2:7051 -[28b0 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28b1 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting -[28b2 05-31 05:23:34.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[28b3 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers -[28b4 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[28b5 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[28b6 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[28b8 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[28b7 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes -[28b9 05-31 05:23:34.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[28ba 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[28bb 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[28bc 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[28bd 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[28be 05-31 05:23:34.95 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[28bf 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28c0 05-31 05:23:34.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes -[28c1 05-31 05:23:34.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28c2 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[28c3 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[28c4 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28c5 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[28c6 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[28c7 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[28c8 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[28c9 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[28ca 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[28cb 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[28cc 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[28cd 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[28ce 05-31 05:23:35.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[28cf 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[28d0 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers -[28d1 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes -[28d2 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[28d3 05-31 05:23:35.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\240\001" signature:"0E\002!\000\303M\017\014C\305\321\210\263\305\003\034v2iN\261\225\264.DU\356\023`\335\330@\275\371\260\244\002 F\350]\022\221\232\355\204\304\027aH\347S{\005\324s\021\242r\273\330\242Ib~>\333QNn" > -[28d4 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[28d5 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[28d6 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[28d7 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[28d8 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -[28d9 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -[28da 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -[28db 05-31 05:23:35.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28dc 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28dd 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28de 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28df 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28e0 05-31 05:23:35.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28e1 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28e2 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28e3 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28e4 05-31 05:23:35.11 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28e5 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28e6 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28e7 05-31 05:23:35.13 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28e8 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[28e9 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[28ea 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[28eb 05-31 05:23:35.18 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [1 2 3 4 5 6 7] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[28ec 05-31 05:23:35.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28ed 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28ee 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28ef 05-31 05:23:35.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28f0 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28f1 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28f2 05-31 05:23:35.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28f3 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28f4 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[28f5 05-31 05:23:35.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28f6 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[28f7 05-31 05:23:35.62 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[28f8 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[28f9 05-31 05:23:35.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[28fa 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28fb 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28fc 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[28fd 05-31 05:23:35.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[28fe 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > > , Envelope: 272 bytes, Signature: 0 bytes -[28ff 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > > , Envelope: 272 bytes, Signature: 0 bytes -[2900 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2901 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > > , Envelope: 272 bytes, Signature: 0 bytes -[2902 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[2903 05-31 05:23:35.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2904 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[2905 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2906 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2907 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2908 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2909 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[290a 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[290b 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[290c 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -[290d 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\371\n\363r\010b\310\327\200-;=\002 b\211E\"\310aO\371\352\006\341\365\0044\261\264\013\005*\275\273\334\303\351\336\350\245\014\252\331\204W" > > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\241\001" signature:"0E\002!\000\342B\320\322\321\335j\254\021@e\317.\"\226x\004y\n\322\222H\177% \214\013o\277*P\207\002 @jX\260\ttB&\334ij\302\316\236\275\025y\254\252\261\254\322I\341\255\266\003C8OZN" secret_envelope: > -[290e 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -[290f 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2910 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[2911 05-31 05:23:35.66 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes -[2912 05-31 05:23:35.67 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2913 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[2914 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[2916 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2915 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[2918 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[2919 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[2917 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[291a 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[291b 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[291c 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[291d 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[291e 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2920 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[291f 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2921 05-31 05:23:35.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2922 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2923 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[2924 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[2926 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes to 1 peers -[2927 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -[2928 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -[2929 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2925 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\242\001" signature:"0D\002 I\262\313\327QK!\347@l\370\367\313/\236\216\364i*\234\\ho\205\332\243.\200\r\374\266\\\002 s\005\0341~\345\020I\203Ny\364*\344\364]\2518}%h\276\354CG\000\240\303\3336f\300" > > , Envelope: 166 bytes, Signature: 0 bytes -[292a 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[292b 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[292c 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[292d 05-31 05:23:35.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[292e 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[292f 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2930 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2931 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2932 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2933 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2934 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2935 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2936 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2937 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2938 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[293a 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2939 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[293b 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[293c 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[293d 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[293e 05-31 05:23:35.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[293f 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2941 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2942 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2940 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[2943 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2945 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2944 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[2946 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2947 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2948 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2949 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[294a 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[294b 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[294c 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[294d 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 432 bytes, Signature: 0 bytes -[294f 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[294e 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2950 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2951 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2952 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2953 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2954 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2955 05-31 05:23:35.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[2956 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2957 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[2958 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2959 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[295a 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[295b 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[295c 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[295d 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[295f 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[295e 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2960 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2961 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2962 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 165 but got ts: inc_num:1527744091840124700 seq_num:163 -[2963 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2964 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2965 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2966 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2967 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2968 05-31 05:23:35.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2969 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[296a 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1527744091508552400, 160 but got ts: inc_num:1527744091508552400 seq_num:159 -[296b 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[296c 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[296d 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[296e 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[296f 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2970 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2971 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2972 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2973 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2974 05-31 05:23:35.78 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2975 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2976 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2977 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2978 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2979 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[297a 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[297b 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[297c 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[297d 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[297e 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[297f 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2980 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2981 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2982 05-31 05:23:35.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2983 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[2984 05-31 05:23:35.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[2986 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2987 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2985 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2988 05-31 05:23:35.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2989 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[298a 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[298b 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[298c 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[298d 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[298f 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2990 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[298e 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2991 05-31 05:23:35.98 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2992 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[2993 05-31 05:23:35.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2994 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2995 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2996 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2997 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting -[2998 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[2999 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/election] follower -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering -[299a 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[299b 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[299c 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[299d 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[299e 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[299f 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[29a0 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes -[29a1 05-31 05:23:36.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29a2 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[29a3 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[29a4 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[29a5 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[29a6 05-31 05:23:36.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[29a7 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[29a8 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[29a9 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[29aa 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[29ab 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -[29ac 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\243\001" signature:"0E\002!\000\362\373\302\002\225+\r\342T\344\356\027\214N|\272 \270\207:\350\007\224\301H\276\332\325r8\361\325\002 Z\364|\311&\232u\n\217\230\211\364\345zq\221\210K\201\034\206\230\0069ur\204\"\2615\351}" > -[29ad 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[29ae 05-31 05:23:36.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[29af 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[29b0 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[29b1 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[29b2 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[29b3 05-31 05:23:36.05 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[29b4 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29b5 05-31 05:23:36.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29b6 05-31 05:23:36.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[29b7 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29b8 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29b9 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[29ba 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[29bb 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[29bc 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[29bd 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[29be 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[29bf 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[29c0 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[29c1 05-31 05:23:36.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[29c2 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[29c3 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[29c4 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29c5 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29c6 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[29c7 05-31 05:23:36.62 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[29c8 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s -[29c9 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29ca 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29cb 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[29cc 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[29cd 05-31 05:23:36.63 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29ce 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[29cf 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29d0 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29d1 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[29d2 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[29d3 05-31 05:23:36.64 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29d4 05-31 05:23:36.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[29d5 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[29d6 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[29d7 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[29d8 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[29d9 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29da 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[29db 05-31 05:23:36.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29dc 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[29dd 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29de 05-31 05:23:36.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[29df 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29e0 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29e1 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[29e2 05-31 05:23:36.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[29e3 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29e4 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29e5 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[29e6 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[29e7 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[29e8 05-31 05:23:36.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[29e9 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29ea 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29eb 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[29ec 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[29ed 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[29ee 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[29ef 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[29f1 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[29f0 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29f2 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[29f3 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[29f4 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[29f5 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29f6 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29f7 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[29f8 05-31 05:23:36.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[29f9 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29fa 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29fb 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[29fc 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[29fd 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[29fe 05-31 05:23:36.91 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[29ff 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers -[2a00 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a01 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a02 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a03 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a04 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[2a05 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[2a06 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a08 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[2a09 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[2a0a 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a07 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a0b 05-31 05:23:38.90 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a0c 05-31 05:23:38.91 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[2a0d 05-31 05:23:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes -[2a0e 05-31 05:23:38.91 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a0f 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2a10 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2a11 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2a12 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5] to 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] -[2a13 05-31 05:23:38.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a14 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -[2a15 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -[2a16 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a17 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > > , Envelope: 167 bytes, Signature: 0 bytes -[2a18 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2a19 05-31 05:23:39.01 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2a1a 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2a1b 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2a1c 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2a1d 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2a1e 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2a1f 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a20 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2a21 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" -[2a22 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -[2a23 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive:\343\331V\341m\255\245\217\346BH7\350\030\235\361\270#\232\2133\037}\300\256\000R\302\221\"" > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\245\001" signature:"0D\002 k\311\250Tc<\346\004\377V\360\335\364{c\177\021\214\027H\321\200\337~\203\256\0063\257j0=\002 \004\324\213[\277\027M\326$\363^)\255\210\213W\027\314\234\024\241\221\230\342L\212d\353w\013\214\347" > -[2a24 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[2a25 05-31 05:23:39.02 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a26 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 -[2a27 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes to 1 peers -[2a28 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 34 bytes, Signature: 0 bytes -[2a29 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a2a 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -[2a2b 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -[2a2c 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 55 bytes, Signature: 0 bytes -[2a2d 05-31 05:23:39.05 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a2e 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a2f 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a30 05-31 05:23:39.10 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a31 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[2a32 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[2a33 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes -[2a34 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [5 6 7 1 2 3 4] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[2a35 05-31 05:23:39.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a36 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a37 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a38 05-31 05:23:39.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a39 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a3a 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes -[2a3b 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a3c 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2a3d 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2a3e 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2a3f 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] -[2a40 05-31 05:23:39.63 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a41 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[2a42 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[2a43 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a44 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > > , Envelope: 271 bytes, Signature: 0 bytes -[2a45 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[2a46 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2a47 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[2a48 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2a49 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2a4a 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2a4b 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2a4c 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a4d 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2a4e 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" -[2a4f 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes to 1 peers -[2a50 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: > alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\246\001" signature:"0E\002!\000\333\023E:Af\233\340\032\372;\261\223\310~\0248\207\335\206\313\336\263x\265\302\232\247\230?\310\r\002 \036\255tK\203\204\030\017\351$\330\3750\332\266\224\321\204\357\330\031y\2571\221m\343\252\362R\354V" secret_envelope: > -[2a51 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes -[2a52 05-31 05:23:39.65 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a53 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 -[2a54 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[2a55 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 -[2a56 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers -[2a57 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 -[2a58 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers -[2a59 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2a5a 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2a5b 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a5c 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a5d 05-31 05:23:39.73 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes -[2a5e 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a5f 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2a60 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2a61 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2a62 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a63 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[2a64 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[2a65 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers -[2a67 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -[2a66 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2a68 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2a69 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes -[2a6a 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a6b 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a6c 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -[2a6d 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a6e 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\247\001" signature:"0E\002!\000\212Y\357xV\200l\344\270\366\232\024MsO\253\320\0350\3150]-\033!o\273K9\367a\326\002 T\214q\231\204l\244j\357\356i\005\226X\205\353\005u\245\016t\220\233\371\225\357;\334I2b\025" > > , Envelope: 167 bytes, Signature: 0 bytes -[2a6f 05-31 05:23:39.74 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2a70 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2a71 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2a72 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a73 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2a74 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2a75 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2a76 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a77 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2a78 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2a79 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2a7a 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a7b 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2a7c 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2a7d 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a7e 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2a7f 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2a80 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2a81 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2a82 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2a83 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2a84 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2a85 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a86 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2a87 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2a88 05-31 05:23:39.75 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2a89 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2a8a 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes -[2a8b 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2a8c 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2a8d 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2a8e 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a8f 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2a90 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2a91 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a92 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2a93 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2a94 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" lastAliveTS: 1527744091840124700, 170 but got ts: inc_num:1527744091840124700 seq_num:168 -[2a95 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a96 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2a97 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2a98 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2a99 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2a9a 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2a9b 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership -[2a9c 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2a9d 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2a9e 05-31 05:23:39.76 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2a9f 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2aa0 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -[2aa1 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2aa2 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes -[2aa3 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2aa4 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -[2aa5 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2aa6 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 433 bytes, Signature: 0 bytes -[2aa7 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2aa8 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store -[2aa9 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2aaa 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2aab 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes -[2aac 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2aad 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} -[2aae 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2aaf 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2ab0 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes in aliveMembership -[2ab1 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2ab2 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2ab3 05-31 05:23:39.77 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2ab4 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2ab5 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2ab6 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes -[2ab7 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] -[2ab8 05-31 05:23:39.97 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2ab9 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[2aba 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[2abb 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2abc 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes -[2abd 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2abe 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store -[2abf 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2ac0 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2ac1 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2ac2 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2ac3 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2ac4 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2ac5 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2ac6 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" -[2ac7 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes to 1 peers -[2ac8 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:r\006t\271w\327\002 \013\204\014\265\365~ alive: alive:\331\377\265#f\203s\266\022\r\010\230\310\215\205\203\345\350\231\025\020\250\001" signature:"0D\002 \177\247\225\347\251Y\354\352\257\026#c`\375\272\371\306\240\216\2273\013\317\005\007\264%|$\2072\214\002 \"/\035ys\231\314n2\203P\266)e\2730\2619\226q\016t(\312`\312\2605y-\266Q" > -[2ac9 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes -[2aca 05-31 05:23:40.00 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2acb 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2acc 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2acd 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2ace 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2acf 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2ad0 05-31 05:23:40.94 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2ad1 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2ad2 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} -[2ad3 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2ad4 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2ad5 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2ad6 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2ad7 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2ad8 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2ad9 05-31 05:23:40.95 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2ada 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2adb 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2adc 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2add 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2ade 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2adf 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2ae0 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2ae1 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store -[2ae2 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2ae3 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2ae4 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2ae5 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[2ae6 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers -[2ae7 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2ae8 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2ae9 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes -[2aea 05-31 05:23:40.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2aeb 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[2aec 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes -[2aed 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2aee 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us declaration -[2aef 05-31 05:23:41.06 UTC] [github.com/hyperledger/fabric/gossip/election] handleMessage.IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning false -[2af0 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2af1 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.4:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2af2 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2af3 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2af4 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2af5 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2af6 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2af7 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} -[2af8 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: -[2af9 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: -[2afa 05-31 05:23:41.59 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership -[2afb 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting -[2afc 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting -[2afd 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2afe 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[2aff 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[2b01 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b00 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b02 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2b03 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2b04 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b05 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:7051 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b06 05-31 05:23:41.60 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2b07 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2b08 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b09 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2b0a 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b0b 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.2:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b0c 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store -[2b0d 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting -[2b0e 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b0f 05-31 05:23:41.61 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting -[2b10 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s -[2b11 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[2b12 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[2b13 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b14 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers -[2b15 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b17 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2b16 05-31 05:23:41.75 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting -[2b18 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes -[2b19 05-31 05:23:41.76 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[28e9 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx ID: [] to index +[28ea 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.indexBlock -> DEBU Adding txLoc [fileSuffixNum=0, offset=60384, bytesLength=19393] for tx number:[0] ID: [] to blockNumTranNum index +[28eb 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[28ec 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[28ed 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[28ee 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[28ef 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[28f0 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[28f2 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[28f3 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[28f4 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[28f5 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[28f6 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[28f7 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[28f8 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 2872289812012144563, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 661 bytes, Signature: 0 bytes to 1 peers +[28f9 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\233\001" signature:"0D\002 w\337\350Vp\004\377Ow\377\226\343\313\214\325G?\210\311\272\244\272\354\251\335\256.\226+\272f\353\002 \014T\0337*/$\022\031\327B@\2266~\214q\277\237\006\261\n\317\226P\177\266\377r)]=" > +[28fa 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 2872289812012144563, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 661 bytes, Signature: 0 bytes +[28fb 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[28fc 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:35532 +[28fd 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[28fe 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[28ff 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:35532 +[2900 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[28f1 06-12 02:16:10.22 UTC] [github.com/hyperledger/fabric/common/ledger/blkstorage/fsblkstorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.AddBlock.addBlock.updateCheckpoint -> DEBU Broadcasting about update checkpointInfo: latestFileChunkSuffixNum=[0], latestFileChunksize=[81572], isChainEmpty=[false], lastBlockNumber=[7] +[2901 06-12 02:16:10.23 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing private data for block [7] +[2902 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/pvtdatastorage] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committed private data for block [7] +[2903 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> INFO Channel [businesschannel]: Committed block [7] with 1 transaction(s) +[2904 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to state database +[2905 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Committing updates to state database +[2906 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.DeleteExpiredAndUpdateBookkeeping.buildExpirySchedule -> DEBU Building the expiry schedules based on the update batch +[2907 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Write lock acquired for committing updates to state database +[2909 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/statedb/stateleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit.ApplyPrivacyAwareUpdates.ApplyUpdates -> DEBU Channel [businesschannel]: Applying key(string)=[resourcesconfigtx.CHANNEL_CONFIG_KEY] key(bytes)=[[]byte{0x0, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x74, 0x78, 0x2e, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x5f, 0x4b, 0x45, 0x59}] +[290a 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[290b 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[290c 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[290d 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[290e 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[290f 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2910 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[28d4 06-12 02:16:10.20 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: nonce:12091290199625780626 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes +[2911 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: nonce:12091290199625780626 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes +[2912 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2913 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: nonce:12091290199625780626 tag:EMPTY mem_req: > , Envelope: 178 bytes, Signature: 0 bytes +[2914 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2915 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2916 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2917 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2918 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2919 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[291a 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[291b 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[291c 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[291d 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[291e 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 12091290199625780626, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 662 bytes, Signature: 0 bytes to 1 peers +[291f 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\234\001" signature:"0D\002 \016\334v\346\274@\201Ck\321\033\250,\200\322W\225u\270-\240g\032\320;p\374\266\223\350\332\242\002 \026H\037\364\220n\344\230\r*\352\355\343>w/\210/7[\234O\360\362\221`\305l\245:\205P" > +[2920 06-12 02:16:10.25 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 12091290199625780626, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 662 bytes, Signature: 0 bytes +[2921 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[28b9 06-12 02:16:10.17 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59848 +[2922 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59848 +[2923 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing reading from stream +[2924 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[2925 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] canceling read because closing +[2926 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +[2927 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59848 disconnected +[2928 06-12 02:16:10.26 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[2908 06-12 02:16:10.24 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:35532 +[2929 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.6:35532 +[292a 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.serviceConnection -> DEBU Closing reading from stream +[292b 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] canceling read because closing +[292c 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +[292d 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35532 disconnected +[292e 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.6:35394 disconnected +[2930 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[292f 06-12 02:16:10.27 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[2931 06-12 02:16:10.28 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/txmgr/lockbasedtxmgr] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Updates committed to state database +[2932 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU Preparing potential purge list working-set for expiringAtBlk [8] +[2933 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/common/ledger/util/leveldbhelper] prepareWorkingsetFor.retrieve.GetIterator -> DEBU Getting iterator for range [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x8, 0x0}] - [[]byte{0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x30, 0x0, 0x31, 0x1, 0x9, 0x0}] +[2934 06-12 02:16:10.30 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/txmgmt/pvtstatepurgemgmt] prepareWorkingsetFor -> DEBU No expiry entry found for expiringAtBlk [8] +[2935 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData -> DEBU Channel [businesschannel]: Committing block [7] transactions to history database +[2936 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updating history database for blockNo [7] with [1] transactions +[2937 06-12 02:16:10.31 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Skipping transaction [0] since it is not an endorsement transaction +[2938 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/core/ledger/kvledger/history/historydb/historyleveldb] commitBlock.StoreBlock.CommitWithPvtData.CommitWithPvtData.CommitWithPvtData.Commit -> DEBU Channel [businesschannel]: Updates committed to history database for blockNo [7] +[2939 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Entry +[293a 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.CreateBlockEvents -> DEBU Exit +[293b 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[293c 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[293d 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[293e 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[293f 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Entry +[2940 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event processor timeout > 0 +[2941 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Event sent successfully +[2942 06-12 02:16:10.32 UTC] [github.com/hyperledger/fabric/events/producer] commitBlock.StoreBlock.CommitWithPvtData.postCommit.Send -> DEBU Exit +[2943 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2944 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2945 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2946 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2947 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2948 06-12 02:16:11.89 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2949 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[294a 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[294b 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[294c 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[294d 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[294e 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[294f 06-12 02:16:11.90 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2950 06-12 02:16:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[2951 06-12 02:16:11.91 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[2952 06-12 02:16:11.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2953 06-12 02:16:11.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org1.example.com:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2954 06-12 02:16:11.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2955 06-12 02:16:11.92 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Entering peer1.org2.example.com:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[2956 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.6:7051 +[2957 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGjCCAcCgAwIBAgIRAO3UrNRsP5jKMK/xTJ+6jlcwCgYIKoZIzj0EAwIwczEL\nMAkGA1UEBhMCVVMxEzARBgNVBAgTCkNhbGlmb3JuaWExFjAUBgNVBAcTDVNhbiBG\ncmFuY2lzY28xGTAXBgNVBAoTEG9yZzEuZXhhbXBsZS5jb20xHDAaBgNVBAMTE2Nh\nLm9yZzEuZXhhbXBsZS5jb20wHhcNMTgwMTMwMDc0MDI2WhcNMjgwMTI4MDc0MDI2\nWjBbMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMN\nU2FuIEZyYW5jaXNjbzEfMB0GA1UEAxMWcGVlcjEub3JnMS5leGFtcGxlLmNvbTBZ\nMBMGByqGSM49AgEGCCqGSM49AwEHA0IABNItgjUtik7Xcr/Ts8vrlFURUCNoS7rc\n2HvkjC5dH8E7FXauFwLeQjARApP8UF4OptFRWxxFh0BGmLHeV+q9ox6jTTBLMA4G\nA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMCsGA1UdIwQkMCKAIHgm8w9HEH/r\n94q9FOeeGoK7Sl+tpE8TjOEg25OxAjNHMAoGCCqGSM49BAMCA0gAMEUCIQCd2QHL\npKPOvtWjXEBo7hH3lBu3xaLNBkKp4BsH8asV9wIgUnRY+/5FrB14TS1+C8O7sq1x\nFi/K4VUkcrt2/JHLe2M=\n-----END CERTIFICATE-----\n" tls_cert_hash:"\237\337o\305\225*\n\312\263\310@mx\341$\273\017\321^\035O\354l}\000\242A\315\201/\006\001" from 172.18.0.6:7051 +[2958 06-12 02:16:11.93 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.6:7051 +[2959 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 71 bytes to 172.18.0.3:59860 +[295a 06-12 02:16:11.94 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +[295b 06-12 02:16:11.95 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[295c 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:59860 +[295d 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:59860 +[295f 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Sending GossipMessage: tag:EMPTY conn:\331\377\265#f\203s\266" identity:"\n\007Org1MSP\022\226\006-----BEGIN CERTIFICATE-----\nMIICGTCCAb+gAwIBAgIQTDNYwm/tQI5fRDOmos0gRzAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMS5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMS5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjZaFw0yODAxMjgwNzQwMjZa\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMC5vcmcxLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEZITVW6c0sx/syfepjKH8nGhrDx78UKeJ\nJ62gFlky0AK75EJJn/QeDGcRGvxlJ/oi/X7CF5mqJAelXtHw6mu3mqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgeCbzD0cQf+v3\nir0U554agrtKX62kTxOM4SDbk7ECM0cwCgYIKoZIzj0EAwIDSAAwRQIhANjwqnhy\nza8upXtno4W/tovPKzq/ShDRDre8AC4WSMm0AiBmpCWsQZjNjdL/KNr0mqmjdxbX\nfv5YS9/ysd8jy4a+pg==\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343\312\362\341\256#-\322\034\372\356\344K\216\034\021\214\277\210k7\224\336\364\"I\337\251\3452\205\243" > , Envelope: 878 bytes, Signature: 70 bytes to 172.18.0.3:7051 +[295e 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream -> DEBU Servicing 172.18.0.3:59860 +[2960 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:59860 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2961 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2963 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2964 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2965 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU rpc error: code = Canceled desc = context canceled Got error, aborting: %!v(MISSING) +[2966 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] handleStream.processStreamingRPC._Gossip_GossipStream_Handler.GossipStream.func2 -> DEBU Client 172.18.0.3:59860 disconnected +[2967 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] -> DEBU Closing writing to stream +[2968 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Received pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" identity:"\n\007Org2MSP\022\222\006-----BEGIN CERTIFICATE-----\nMIICGDCCAb+gAwIBAgIQD7NTWDn3v8u3bSru3AkA9zAKBggqhkjOPQQDAjBzMQsw\nCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZy\nYW5jaXNjbzEZMBcGA1UEChMQb3JnMi5leGFtcGxlLmNvbTEcMBoGA1UEAxMTY2Eu\nb3JnMi5leGFtcGxlLmNvbTAeFw0xODAxMzAwNzQwMjdaFw0yODAxMjgwNzQwMjda\nMFsxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1T\nYW4gRnJhbmNpc2NvMR8wHQYDVQQDExZwZWVyMS5vcmcyLmV4YW1wbGUuY29tMFkw\nEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAExVh7MAuAjVybnrXdaJKQK8KQl16lq8kF\n4CYCS55hrrMjzyxculb4TXvM7KjNQGpaxs2NWUnZroQNx/k9NOcNvqNNMEswDgYD\nVR0PAQH/BAQDAgeAMAwGA1UdEwEB/wQCMAAwKwYDVR0jBCQwIoAgrvoIcQ8pfAue\n9bnrHECzFXGF6LB23bVaQwJw0KMbO7wwCgYIKoZIzj0EAwIDRwAwRAIgR1yDDxMs\nSg01DIKalrEfbLpCFcHBSyFqXV19TnZmGSoCIGSxAKCbjl5rHejsVS1eu7h552bY\n2EdFEzWgoRUHqwi9\n-----END CERTIFICATE-----\n" tls_cert_hash:"\343]\237\313\202\223\317s\236\001\355\014\032\203w\343\035\273\351H`V\351S\250\234\354\"\340\233^\307" from 172.18.0.3:7051 +[2969 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection.authenticateRemotePeer -> DEBU Authenticated 172.18.0.3:7051 +[296a 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint.getConnection.createConnection -> DEBU Exiting +[296b 06-12 02:16:11.97 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2962 06-12 02:16:11.96 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[296c 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[296d 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[296e 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[296f 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2970 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2971 06-12 02:16:11.99 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2972 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[2973 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2974 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2975 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2976 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2977 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2978 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2979 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[297a 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[297b 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[297c 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[297d 06-12 02:16:12.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[297e 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[297f 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes to 3 peers +[2980 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[2981 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2982 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[2983 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2984 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"3\322\237 \276\370\207Y\244\222\336\264\005\230\336\203CW\215;\356\027\325>\331\377\265#f\203s\266" channel_MAC:"\203U\276WXu\014Z\322T9C\225QP\022\230\236I5\355\3638\307mh\222\316\251\374\244\231" properties: > > , Envelope: 112 bytes, Signature: 70 bytes +[2985 06-12 02:16:12.18 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2986 06-12 02:16:12.19 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 781 bytes, Signature: 0 bytes +[2987 06-12 02:16:12.20 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2988 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[2989 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[298a 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[298b 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[298c 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[298d 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[298e 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[298f 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2990 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2991 06-12 02:16:12.22 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2992 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[2993 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[2994 06-12 02:16:12.26 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[2995 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes to 1 peers +[2996 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 71 bytes +[2997 06-12 02:16:12.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2998 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +[2999 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +[299a 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[299b 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > > , Envelope: 166 bytes, Signature: 0 bytes +[299c 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[299d 06-12 02:16:12.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[299e 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[299f 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[29a0 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[29a1 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[29a2 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[29a3 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[29a4 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[29a5 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[29a6 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +[29a7 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\2117\340\017\024\207\257\035\303\300?<\030\257\204\002 g\240!\014\201\377J1\267^\334\216\353\017\261\333\264\331\265\270\030\263\3651\312\256\002\202\266\344\354\213" > alive: alive:\352F\036_\231X\022D\223=6\006\013b<\024y\262\031\247\343\216\270\267-\225\245\000\017G\331" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\236\001" signature:"0E\002!\000\363\213Q7\0078\326\343\032\360\234\203\361\312\240\326#{\336\302\355\230\232\2361\022\232u\2575\n=\002 %\344\2741W\033\307\341\030b\242\003\225L:9\037XqJ\301\032\337\312\366^\334\250\360\001n\253" > +[29a8 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[29a9 06-12 02:16:12.33 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[29aa 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[29ab 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[29ac 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29ad 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[29ae 06-12 02:16:12.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[29af 06-12 02:16:12.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29b0 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[29b1 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[29b2 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[29b3 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[29b4 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[29b5 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[29b6 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[29b7 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[29b8 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[29b9 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[29ba 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[29bb 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[29bc 06-12 02:16:12.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[29bd 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[29be 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[29bf 06-12 02:16:12.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[29c0 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[29c1 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" secret_envelope: > > , Envelope: 273 bytes, Signature: 0 bytes to 1 peers +[29c2 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +[29c3 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 273 bytes, Signature: 0 bytes +[29c4 06-12 02:16:12.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[29c5 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[29c7 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +[29c8 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +[29c9 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[29ca 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29cb 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[29cc 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[29cd 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29ce 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[29cf 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[29d0 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29c6 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\237\001" signature:"0E\002!\000\263\261\361t\035._\324\270\333\220\231\274\322Sh\314\020\232k\344Y\030^j4W\030\244ux\273\002 =\264\177\007Z\276\361\370M\026:\347I\221\221]\020Bk\311\311\032O0\035\357\303T\230V\317*" > > , Envelope: 167 bytes, Signature: 0 bytes +[29d1 06-12 02:16:12.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[29d2 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[29d3 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" channel_MAC:"Z\363\266'\3066\2710xE!\034\212=\3273hFW\301\362\271a.\260\303\316\237\331\211\3718" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[29d4 06-12 02:16:12.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29d5 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[29d6 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29d7 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 650 bytes, Signature: 0 bytes +[29d8 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[29d9 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[29da 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[29db 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[29dc 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[29dd 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[29de 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[29df 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[29e0 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[29e1 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[29e2 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[29e3 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[29e4 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[29e5 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[29e6 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[29e7 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[29e8 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[29ea 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[29eb 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[29ec 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[29ed 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[29ee 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[29ef 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[29f0 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[29e9 06-12 02:16:12.43 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[29f2 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[29f3 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[29f4 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29f1 06-12 02:16:12.44 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +[29f5 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +[29f6 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +[29f7 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29f9 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[29fa 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[29fb 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[29fc 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[29fd 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[29fe 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[29ff 06-12 02:16:12.48 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2a00 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a01 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a02 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a03 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2a04 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2a05 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2a06 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2a07 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2a08 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2a09 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a0a 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[29f8 06-12 02:16:12.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[2a0b 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[2a0c 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a0d 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[2a0e 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2a0f 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2a10 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2a11 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2a12 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2a13 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [6 7 1 2 3 4 5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2a14 06-12 02:16:12.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a15 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[2a16 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[2a17 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a18 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2a19 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a1a 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[2a1b 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2a1c 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes]} +[2a1d 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2a1e 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2a1f 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2a20 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2a21 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a22 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a24 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a25 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a26 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2a27 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[2a28 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes to 1 peers +[2a29 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a2a 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2a2b 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a2c 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2a2d 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a23 06-12 02:16:12.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[2a2e 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a2f 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2a30 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 157 but got ts: inc_num:1528769653227426900 seq_num:156 +[2a31 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a32 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a33 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2a34 06-12 02:16:12.51 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a35 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a36 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a37 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2a38 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2a39 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2a3a 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2a3b 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2a3c 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2a3d 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a3e 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a40 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a41 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a42 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2a3f 06-12 02:16:12.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a43 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a45 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a46 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2a47 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2a48 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[2a49 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a44 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a4a 06-12 02:16:12.53 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a4b 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2a4c 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a4d 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2a4e 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a4f 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2a50 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2a51 06-12 02:16:12.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2a52 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2a53 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2a54 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2a55 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a56 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a57 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[2a58 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +[2a59 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\362c+\211\265\320T8(\002 \002\226\242\326\023\377ll\304\007\374.%n\315\214\362\226O\223>\211\226\035|\202^+A\3442\344" > alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\240\001" signature:"0D\002 \027Dj\214\2275\220\036\225Z\031\347Cz;}\272^\315\366\026;jS\274\306T\360BF\320w\002 :\233l\305\227\030\340{\253\220s\331u\000n\270M\340p9\313\0212\212\255\376\323;\301\233\rM" > +[2a5a 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[2a5b 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2a5c 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2a5d 06-12 02:16:12.56 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a5e 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2a5f 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a60 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2a61 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" channel_MAC:"\027\260UG\004\313\031r\016.\254\3466\324\233\362\332\266\002M,\353sZc\037\327x\207&\203G" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2a62 06-12 02:16:12.58 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a63 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2a64 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2a65 06-12 02:16:12.77 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a66 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2a67 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info: pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" channel_MAC:"\2071E\0070\245\213\314\363\033\243\357\2708O\315]f\241=\004\003\274\3468\263\021\203\223\236\265\031" properties: > > , Envelope: 112 bytes, Signature: 71 bytes +[2a68 06-12 02:16:12.78 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a69 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2a6a 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2a6b 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2a6c 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2a6d 06-12 02:16:13.34 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a6e 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a6f 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a70 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2a71 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a72 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a73 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a74 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2a75 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2a76 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2a77 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2a78 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2a79 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2a7a 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a7b 06-12 02:16:13.35 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a7c 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2a7d 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2a7e 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a7f 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2a80 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a81 06-12 02:16:13.36 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2a82 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a83 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2a84 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a85 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a86 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a87 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +[2a88 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +[2a89 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a8a 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > > , Envelope: 167 bytes, Signature: 0 bytes +[2a8b 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2a8c 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2a8d 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2a8e 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2a8f 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2a90 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2a91 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2a92 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2a93 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a94 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[2a95 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +[2a96 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\241\001" signature:"0E\002!\000\311\336e\3714b\020\242c\244\275\260+5\265:\347\361\221\330\315\267\004\014T\214\036\223&wg\203\002 \n\027\022\362G\004[\036d\210\321\274f\004\t\211\200\005g\2678$\002a\3200sT\345\315\027\017" secret_envelope: > +[2a97 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +[2a98 06-12 02:16:13.37 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2a99 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a9a 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a9b 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2a9c 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2a9d 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2a9e 06-12 02:16:13.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2a9f 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] requestStateInfo)-fm.requestStateInfo.Send.Send -> DEBU Entering, sending GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes to 3 peers +[2aa0 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2aa1 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2aa2 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2aa3 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2aa4 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2aa5 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2aa6 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2aa7 06-12 02:16:16.17 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2aa8 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2aa9 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2aaa 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2aab 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2aac 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: businesschannel, nonce: 0, tag: CHAN_OR_ORG StateInfoSnapshot with 4 items, Envelope: 782 bytes, Signature: 0 bytes +[2aad 06-12 02:16:16.18 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2aae 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2aaf 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2ab0 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2ab1 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2ab2 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2ab3 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2ab4 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2ab5 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2ab6 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2ab7 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2ab8 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2ab9 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2aba 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2abb 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" +[2abc 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes to 1 peers +[2abd 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive:\266B&\030\307\002 m\372)\256\200\0008\344Q\021\234\276\240\302W0\266?8<\331\346\337\2464\360P\321\275\347\027\330" > alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\242\001" signature:"0D\002 K\353\036\342\026\353\250\213\256\353\340L\032\215M8\242\277\013|\351\363\361\270\026|\300S~\217\034\024\002 (\353-\252z\024o\271.(I\260J\206\217\316\233\225U$\365\336\036C\2424\342\222%>2\207" > +[2abe 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[2abf 06-12 02:16:16.32 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2ac0 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2ac1 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2ac2 06-12 02:16:16.36 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2ac3 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org1.example.com:7051 +[2ac4 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes to 1 peers +[2ac5 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer0.org2.example.com:7051 +[2ac6 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[2ac7 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending IDENTITY_MSG hello to peer1.org2.example.com:7051 +[2ac8 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes to 1 peers +[2ac9 06-12 02:16:16.38 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2aca 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2acb 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2acc 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2acd 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2ace 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2acf 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2ad0 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2ad1 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2ad2 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] initiatePull.Hello -> DEBU Sending BLOCK_MSG hello to peer1.org1.example.com:7051 +[2ad3 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] initiatePull.Hello.Send.Send.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes to 1 peers +[2ad4 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2ad5 06-12 02:16:16.39 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2ad6 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2ad7 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +[2ad8 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2ad9 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" digests:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" digests:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" msg_type:IDENTITY_MSG > , Envelope: 154 bytes, Signature: 0 bytes +[2ada 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2adb 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +[2adc 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG data_dig: , Envelope: 54 bytes, Signature: 0 bytes +[2add 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2ade 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2adf 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2ae0 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY data_dig:\331\377\265#f\203s\266" msg_type:IDENTITY_MSG > , Envelope: 153 bytes, Signature: 0 bytes +[2ae1 06-12 02:16:16.40 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2ae2 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" secret_envelope:\004\212\215\242F1@\276k\304!C\360>\252\334\334\340\211\243\347\267D\306" > > > , Envelope: 272 bytes, Signature: 0 bytes to 1 peers +[2ae3 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +[2ae4 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] InitiateSync.SendToPeer.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes to 1 peers +[2ae5 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +[2ae7 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2ae6 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 272 bytes, Signature: 0 bytes +[2ae8 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2ae9 06-12 02:16:16.41 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY mem_req:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\243\001" signature:"0E\002!\000\363o&S\2040s\377\231\327<%q\302\245\2724`t2\241\2547{\243\317\3354\331\374!\364\002 y\\\t%w\324\2040l\223\222\256\211\030/Z\\y\353\231\211\032\227\343);\352\016\277\021\276\356" > > , Envelope: 167 bytes, Signature: 0 bytes +[2aea 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[2aed 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[2aee 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2aef 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 652 bytes, Signature: 0 bytes +[2af0 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2af1 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2aec 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2af2 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes +[2aeb 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[2af3 06-12 02:16:16.42 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2af4 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2af5 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2af6 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2af7 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2af8 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2af9 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2afa 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2afb 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2afc 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2afd 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2afe 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2aff 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2b00 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b01 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2b02 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2b03 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2b04 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b05 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2b06 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2b07 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2b08 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2b09 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2b0a 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2b0b 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2b0c 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b0d 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2b0e 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 653 bytes, Signature: 0 bytes +[2b0f 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b11 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[2b10 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2b12 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2b13 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org2.example.com:7051" pki_id:"6G\233\222\227\001\207wl\232\347\273\363s\316\350m\3276\035\354\3364:\274\325\310\362\256u\260\325" lastAliveTS: 1528769651824440500, 163 but got ts: inc_num:1528769651824440500 seq_num:162 +[2b14 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b15 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2b16 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2b17 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2b18 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b19 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2b1a 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2b1b 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" lastAliveTS: 1528769653227426900, 161 but got ts: inc_num:1528769653227426900 seq_num:160 +[2b1c 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b1d 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2b1e 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2b1f 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2b20 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2b21 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2b22 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2b23 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2b24 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b25 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2b26 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 539 bytes, Signature: 0 bytes +[2b27 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b28 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[2b29 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2b2a 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 71 bytes Secret payload: 29 bytes, Secret Signature: 70 bytes +[2b2b 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b2c 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes +[2b2d 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2b2e 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes]} +[2b2f 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2b30 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2b31 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2b32 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2b33 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b34 06-12 02:16:16.43 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2b35 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2b36 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2b37 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2b38 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] +[2b39 06-12 02:16:16.45 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b3a 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2b3b 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2b3c 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage -> DEBU GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG hello: , Envelope: 33 bytes, Signature: 0 bytes +[2b3d 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.HandleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending BLOCK_MSG digest: [3 4 5 6 7 1 2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2b3e 06-12 02:16:16.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b3f 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2b40 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 16 bytes, Signature: 0 bytes +[2b41 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2 36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5] to 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] +[2b42 06-12 02:16:16.53 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b43 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2b44 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b45 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 166 bytes, Signature: 0 bytes +[2b46 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b47 06-12 02:16:16.55 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2b48 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2b49 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2b4a 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2b4b 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2b4c 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2b4d 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b4f 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer0.org2.example.com:7051" pki_id:"\321\206\274\327\345\037\231\236hIF\251zJ\177l`qB\236\230\303.\277\375\266\250\312\344\220+\245" +[2b50 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes to 1 peers +[2b51 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive: alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\244\001" signature:"0E\002!\000\323\264\325;\207t\203\312Q\210d\362\305w\344p\r\367\210\304\250\022j\217\263\036o\331\233\2232@\002 g\307|8\246\203\315\266VNS/\205A\270\326c\367\353\326\254\3040\034^\204\023\003\344\254\256\356" > +[2b52 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 4, Dead: 0, Envelope: 651 bytes, Signature: 0 bytes +[2b53 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b4e 06-12 02:16:16.56 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2b54 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2b55 06-12 02:16:16.57 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b56 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2b57 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:CHAN_OR_ORG state_info_pull_req: , Envelope: 39 bytes, Signature: 0 bytes +[2b58 06-12 02:16:16.76 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b59 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b5a 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b5b 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2b5c 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b5d 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b5e 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b5f 06-12 02:16:16.87 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2b60 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2b61 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2b62 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2b63 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes in aliveMembership +[2b64 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2b65 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b66 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2b67 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b68 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2b69 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b6a 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b6b 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2b6c 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b6d 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b6e 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] from identity store +[2b6f 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b70 06-12 02:16:16.88 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b71 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2b72 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2b73 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2b74 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b75 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b76 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b77 06-12 02:16:16.89 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b78 06-12 02:16:17.09 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 25s +[2b79 06-12 02:16:17.22 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Sleeping 5s +[2b7a 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes Secret payload: 29 bytes, Secret Signature: 71 bytes to 1 peers +[2b7b 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2b7d 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b7e 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b7f 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b80 06-12 02:16:17.24 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b7c 06-12 02:16:17.23 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2b81 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer0.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b82 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b83 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2b84 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b85 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b86 06-12 02:16:17.26 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b87 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] from identity store +[2b88 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Got alive message about ourselves, GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b89 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2b8a 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Exiting +[2b8b 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/election] IsLeader -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Returning true +[2b8c 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/election] leader.waitForInterrupt -> DEBU [51 210 159 32 190 248 135 89 164 146 222 180 5 152 222 131 67 87 141 59 238 23 213 62 217 255 181 35 102 131 115 182] : Entering +[2b8d 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.gossipInChan.Send -> DEBU Entering, sending GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes to 1 peers +[2b8e 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: channel:"businesschannel" tag:CHAN_AND_ORG leadership_msg:\331\377\265#f\203s\266" timestamp: is_declaration:true > , Envelope: 72 bytes, Signature: 70 bytes +[2b8f 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b90 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b91 06-12 02:16:17.27 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2b92 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2b93 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2b94 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b95 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b96 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg:\331\377\265#f\203s\266" > timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2b97 06-12 02:16:17.28 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2b98 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2b99 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2b9a 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage -> DEBU GossipMessage: tag:EMPTY hello: , Envelope: 17 bytes, Signature: 0 bytes +[2b9b 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip/pull] handleMessage.handleMessage.HandleMessage.OnHello.SendDigest -> DEBU Sending IDENTITY_MSG digest: [36479b92970187776c9ae7bbf373cee86dd7361decde343abcd5c8f2ae75b0d5 d186bcd7e51f999e684946a97a4a7f6c6071429e98c32ebffdb6a8cae4902ba5 33d29f20bef88759a492deb40598de8343578d3bee17d53ed9ffb523668373b6 29ef3426aa9669d7899bd7c29f2600119546881f50aa299082d0e68b2eacf3a2] to 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] +[2b9c 06-12 02:16:17.35 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2b9d 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2b9e 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.6:7051 [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] sent us GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2b9f 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2ba0 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY mem_req: > , Envelope: 167 bytes, Signature: 0 bytes +[2ba1 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes +[2ba2 06-12 02:16:17.38 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [41 239 52 38 170 150 105 215 137 155 215 194 159 38 0 17 149 70 136 31 80 170 41 144 130 208 230 139 46 172 243 162] from identity store +[2ba3 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 71 bytes]} +[2ba4 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2ba5 06-12 02:16:17.39 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2ba6 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2ba7 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2ba8 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2baa 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Entering endpoint:"peer1.org1.example.com:7051" pki_id:")\3574&\252\226i\327\211\233\327\302\237&\000\021\225F\210\037P\252)\220\202\320\346\213.\254\363\242" +[2bab 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/comm] SendToPeer.Send -> DEBU Entering, sending GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes to 1 peers +[2bac 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] -> DEBU Exiting, replying with alive: alive:\331\377\265#f\203s\266\022\r\010\234\310\363\300\341\374\321\233\025\020\246\001" signature:"0E\002!\000\226\014\306\330\177\237I'\367\334#'\236\275P\317e\323f!^\360-M\0032\343\022\254s\365\265\002 \024n\236cWG\003\367D(i\232\276R%\213D^\325\215\200\360MQ\274\201\371\000\334C\002\210" secret_envelope:t\032\032\312\026\007z\017\266\343\177\002 C\365a\013;A,jekW\252\202!U[&\272~\022\001|\251\r\365\277\330\2710\333\271\235" > > +[2bad 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: Channel: , nonce: 0, tag: EMPTY MembershipResponse with Alive: 2, Dead: 0, Envelope: 434 bytes, Signature: 0 bytes +[2bae 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2ba9 06-12 02:16:17.40 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2baf 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bb0 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2bb1 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2bb2 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bb3 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Entering GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bb4 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMsgFromComm.handleAliveMessage.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2bb5 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Entering: learnedMembers={[GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes]} +[2bb6 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU updating membership: timestamp: +[2bb7 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Updating aliveness data: membership: timestamp: +[2bb8 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Replacing GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes in aliveMembership +[2bb9 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage.learnExistingMembers -> DEBU Exiting +[2bba 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm.handleAliveMessage -> DEBU Exiting +[2bbb 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2bbc 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2bbe 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org2.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bbf 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2bbd 06-12 02:16:17.49 UTC] [github.com/hyperledger/fabric/gossip/comm] emit.sendGossipBatch)-fm.sendGossipBatch.gossipBatch.sendAndFilterSecrets.Send -> DEBU Entering, sending GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes to 1 peers +[2bc0 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Entering, Sending to peer1.org1.example.com:7051 , msg: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bc1 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] sendToEndpoint -> DEBU Exiting +[2bc2 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/comm] func1.func1 -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bc3 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.3:7051 [54 71 155 146 151 1 135 119 108 154 231 187 243 115 206 232 109 215 54 29 236 222 52 58 188 213 200 242 174 117 176 213] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bc4 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2bc5 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2bc6 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bc7 06-12 02:16:17.50 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting +[2bc8 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Entering, 172.18.0.5:58700 [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] sent us GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bc9 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage.validateMsg.ValidateAliveMsg -> DEBU Fetched identity of [209 134 188 215 229 31 153 158 104 73 70 169 122 74 127 108 96 113 66 158 152 195 46 191 253 182 168 202 228 144 43 165] from identity store +[2bca 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/gossip] handleMessage -> DEBU Exiting +[2bcb 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Got message: GossipMessage: tag:EMPTY alive_msg: timestamp: > , Envelope: 84 bytes, Signature: 70 bytes +[2bcc 06-12 02:16:17.52 UTC] [github.com/hyperledger/fabric/gossip/discovery] handleMsgFromComm -> DEBU Exiting